Home
last modified time | relevance | path

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

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DMismatchedRangeException.cs40 public class MismatchedRangeException : RecognitionException { class
44 public MismatchedRangeException() { in MismatchedRangeException() method in Antlr.Runtime.MismatchedRangeException
47 public MismatchedRangeException(string message) in MismatchedRangeException() method in Antlr.Runtime.MismatchedRangeException
51 public MismatchedRangeException(string message, Exception innerException) in MismatchedRangeException() method in Antlr.Runtime.MismatchedRangeException
55 public MismatchedRangeException(int a, int b, IIntStream input) in MismatchedRangeException() method in Antlr.Runtime.MismatchedRangeException
61 public MismatchedRangeException(string message, int a, int b, IIntStream input) in MismatchedRangeException() method in Antlr.Runtime.MismatchedRangeException
67 …public MismatchedRangeException(string message, int a, int b, IIntStream input, Exception innerExc… in MismatchedRangeException() method in Antlr.Runtime.MismatchedRangeException
73 protected MismatchedRangeException(SerializationInfo info, StreamingContext context) in MismatchedRangeException() method in Antlr.Runtime.MismatchedRangeException
DLexer.cs250 MismatchedRangeException mre = new MismatchedRangeException(a, b, input); in MatchRange()
301 } else if (e is MismatchedRangeException) { in GetErrorMessage()
302 MismatchedRangeException mre = (MismatchedRangeException)e; in GetErrorMessage()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DMismatchedRangeException.cs41 public class MismatchedRangeException : RecognitionException class
46 public MismatchedRangeException() in MismatchedRangeException() method in Antlr.Runtime.MismatchedRangeException
50 public MismatchedRangeException(string message) in MismatchedRangeException() method in Antlr.Runtime.MismatchedRangeException
55 public MismatchedRangeException(string message, Exception innerException) in MismatchedRangeException() method in Antlr.Runtime.MismatchedRangeException
60 public MismatchedRangeException(int a, int b, IIntStream input) in MismatchedRangeException() method in Antlr.Runtime.MismatchedRangeException
67 public MismatchedRangeException(string message, int a, int b, IIntStream input) in MismatchedRangeException() method in Antlr.Runtime.MismatchedRangeException
74 …public MismatchedRangeException(string message, int a, int b, IIntStream input, Exception innerExc… in MismatchedRangeException() method in Antlr.Runtime.MismatchedRangeException
81 protected MismatchedRangeException(SerializationInfo info, StreamingContext context) in MismatchedRangeException() method in Antlr.Runtime.MismatchedRangeException
DLexer.cs158 catch (MismatchedRangeException mre) in NextToken()
303 MismatchedRangeException mre = new MismatchedRangeException(a, b, input); in MatchRange()
368 else if ( e is MismatchedRangeException ) in GetErrorMessage()
370 MismatchedRangeException mre = (MismatchedRangeException)e; in GetErrorMessage()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DMismatchedRangeException.java30 public class MismatchedRangeException extends RecognitionException { class
34 public MismatchedRangeException() {;} in MismatchedRangeException() method in MismatchedRangeException
36 public MismatchedRangeException(int a, int b, IntStream input) { in MismatchedRangeException() method in MismatchedRangeException
DLexer.java98 catch (MismatchedRangeException re) { in nextToken()
207 throws MismatchedRangeException in matchRange()
214 MismatchedRangeException mre = in matchRange()
215 new MismatchedRangeException(a,b,input); in matchRange()
294 else if ( e instanceof MismatchedRangeException ) { in getErrorMessage()
295 MismatchedRangeException mre = (MismatchedRangeException)e; in getErrorMessage()
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DMismatchedRangeExceptions.js1 org.antlr.runtime.MismatchedRangeException = function(a, b, input) { class in org.antlr.runtime
6 org.antlr.runtime.MismatchedRangeException.superclass.constructor.call(
13 org.antlr.runtime.MismatchedRangeException,
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/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
DSlimLexer.cs319 MismatchedRangeException mre = in MatchRange()
320 new MismatchedRangeException( a, b, input ); in MatchRange()
385 else if ( e is MismatchedRangeException ) in GetErrorMessage()
387 MismatchedRangeException mre = (MismatchedRangeException)e; in GetErrorMessage()
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DMismatchedRangeException.as30 public class MismatchedRangeException extends RecognitionException { class in org.antlr.runtime
33 public function MismatchedRangeException(a:int, b:int, input:IntStream) { method in org.antlr.runtime.MismatchedRangeException
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/Python/unittests/
Dtestexceptions.py52 exc = antlr3.MismatchedRangeException()
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Drecognizers.py40 MismatchedRangeException, MismatchedTreeNodeException, \
1223 mre = MismatchedRangeException(unichr(a), unichr(b), self.input)
1312 elif isinstance(e, MismatchedRangeException):
Dexceptions.py259 class MismatchedRangeException(RecognitionException): class
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
DLexer.pm195 my $mre = ANTLR::Runtime::MismatchedRangeException($a, $b, $self->input);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
DCPP.stg125 typedef antlr3::MismatchedRangeException\<position_type,char_type> MismatchedRangeException;
/external/antlr/antlr-3.4/lib/
Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/ ...