Searched refs:MismatchedRangeException (Results 1 - 17 of 17) sorted by relevance

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DMismatchedRangeException.java30 public class MismatchedRangeException extends RecognitionException { class in inherits:RecognitionException
34 public MismatchedRangeException() {;} method in class:MismatchedRangeException
36 public MismatchedRangeException(int a, int b, IntStream input) { method in class:MismatchedRangeException
H A DLexer.java98 catch (MismatchedRangeException re) {
207 throws MismatchedRangeException
214 MismatchedRangeException mre =
215 new MismatchedRangeException(a,b,input);
294 else if ( e instanceof MismatchedRangeException ) {
295 MismatchedRangeException mre = (MismatchedRangeException)e;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DMismatchedRangeExceptions.js1 org.antlr.runtime.MismatchedRangeException = function(a, b, input) {
6 org.antlr.runtime.MismatchedRangeException.superclass.constructor.call(
13 org.antlr.runtime.MismatchedRangeException,
16 return "MismatchedRangeException(" +
19 name: "org.antlr.runtime.MismatchedRangeException"
H A DLexer.js167 var mre = new org.antlr.runtime.MismatchedRangeException(a,b,this.input);
237 else if ( e instanceof org.antlr.runtime.MismatchedRangeException ) {
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DMismatchedRangeException.as30 public class MismatchedRangeException extends RecognitionException {
33 public function MismatchedRangeException(a:int, b:int, input:IntStream) { function
H A DLexer.as199 var mre:MismatchedRangeException =
200 new MismatchedRangeException(a,b,input);
268 else if ( e is MismatchedRangeException ) {
269 var mre:MismatchedRangeException = MismatchedRangeException(e);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DMismatchedRangeException.cs40 public class MismatchedRangeException : RecognitionException { class in namespace:Antlr.Runtime
44 public MismatchedRangeException() { method in class:Antlr.Runtime.MismatchedRangeException
47 public MismatchedRangeException(string message) method in class:Antlr.Runtime.MismatchedRangeException
51 public MismatchedRangeException(string message, Exception innerException) method in class:Antlr.Runtime.MismatchedRangeException
55 public MismatchedRangeException(int a, int b, IIntStream input) method in class:Antlr.Runtime.MismatchedRangeException
61 public MismatchedRangeException(string message, int a, int b, IIntStream input) method in class:Antlr.Runtime.MismatchedRangeException
67 public MismatchedRangeException(string message, int a, int b, IIntStream input, Exception innerException) method in class:Antlr.Runtime.MismatchedRangeException
73 protected MismatchedRangeException(SerializationInfo info, StreamingContext context) method in class:Antlr.Runtime.MismatchedRangeException
104 return "MismatchedRangeException(" + UnexpectedType + " not in [" + A + "," + B + "])";
H A DLexer.cs250 MismatchedRangeException mre = new MismatchedRangeException(a, b, input);
301 } else if (e is MismatchedRangeException) {
302 MismatchedRangeException mre = (MismatchedRangeException)e;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DMismatchedRangeException.cs41 public class MismatchedRangeException : RecognitionException class in namespace:Antlr.Runtime
46 public MismatchedRangeException() method in class:Antlr.Runtime.MismatchedRangeException
50 public MismatchedRangeException(string message) method in class:Antlr.Runtime.MismatchedRangeException
55 public MismatchedRangeException(string message, Exception innerException) method in class:Antlr.Runtime.MismatchedRangeException
60 public MismatchedRangeException(int a, int b, IIntStream input) method in class:Antlr.Runtime.MismatchedRangeException
67 public MismatchedRangeException(string message, int a, int b, IIntStream input) method in class:Antlr.Runtime.MismatchedRangeException
74 public MismatchedRangeException(string message, int a, int b, IIntStream input, Exception innerException) method in class:Antlr.Runtime.MismatchedRangeException
81 protected MismatchedRangeException(SerializationInfo info, StreamingContext context) method in class:Antlr.Runtime.MismatchedRangeException
119 return "MismatchedRangeException(" + UnexpectedType + " not in [" + A + "," + B + "])";
H A DLexer.cs158 catch (MismatchedRangeException mre)
303 MismatchedRangeException mre = new MismatchedRangeException(a, b, input);
368 else if ( e is MismatchedRangeException )
370 MismatchedRangeException mre = (MismatchedRangeException)e;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimLexer.cs319 MismatchedRangeException mre =
320 new MismatchedRangeException( a, b, input );
385 else if ( e is MismatchedRangeException )
387 MismatchedRangeException mre = (MismatchedRangeException)e;
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtestexceptions.py46 """Tests for the antlr3.MismatchedRangeException class"""
50 """MismatchedRangeException.__init__()"""
52 exc = antlr3.MismatchedRangeException()
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DLexer.pm195 my $mre = ANTLR::Runtime::MismatchedRangeException($a, $b, $self->input);
270 } elsif ($e->isa('ANTLR::Runtime::MismatchedRangeException')) {
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dexceptions.py259 class MismatchedRangeException(RecognitionException): class in inherits:RecognitionException
270 return "MismatchedRangeException(%r not in [%r..%r])" % (
H A Drecognizers.py40 MismatchedRangeException, MismatchedTreeNodeException, \
1223 mre = MismatchedRangeException(unichr(a), unichr(b), self.input)
1312 elif isinstance(e, MismatchedRangeException):
43 BacktrackingFailed, UnwantedTokenException, MissingTokenException namespace
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
H A DCPP.stg125 typedef antlr3::MismatchedRangeException\<position_type,char_type> MismatchedRangeException;
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 568 milliseconds