Home
last modified time | relevance | path

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

/external/antlr/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.cs155 catch (MismatchedRangeException mre) in NextToken()
311 MismatchedRangeException mre = new MismatchedRangeException(a, b, input); in MatchRange()
376 else if ( e is MismatchedRangeException ) in GetErrorMessage()
378 MismatchedRangeException mre = (MismatchedRangeException)e; in GetErrorMessage()
/external/antlr/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/runtime/Java/src/main/java/org/antlr/runtime/
DLexer.java94 catch (MismatchedRangeException re) { in nextToken()
216 throws MismatchedRangeException in matchRange()
223 MismatchedRangeException mre = in matchRange()
224 new MismatchedRangeException(a,b,input); in matchRange()
305 else if ( e instanceof MismatchedRangeException ) { in getErrorMessage()
306 MismatchedRangeException mre = (MismatchedRangeException)e; in getErrorMessage()
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
/external/antlr/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/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/runtime/ObjC/Framework/
DMismatchedRangeException.m28 #import "MismatchedRangeException.h"
31 @implementation MismatchedRangeException implementation
37 return [[MismatchedRangeException alloc] initWithRange:aRange stream:theInput];
DLexer.m147 @catch (MismatchedRangeException *re) {
280 MismatchedRangeException *mre = [MismatchedRangeException
374 else if ( [e isKindOfClass:[MismatchedRangeException class]] ) {
375 MismatchedRangeException *mre = (MismatchedRangeException *)e;
DMismatchedRangeException.h33 @interface MismatchedRangeException : RecognitionException {
DANTLR.h80 #import <ANTLR/MismatchedRangeException.h>
Dantlr3.h80 #import <ANTLR/MismatchedRangeException.h>
DRecognizerSharedState.m31 #import "MismatchedRangeException.h"
/external/antlr/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/runtime/Python/unittests/
Dtestexceptions.py52 exc = antlr3.MismatchedRangeException()
/external/antlr/runtime/Python3/unittests/
Dtestexceptions.py52 exc = antlr3.MismatchedRangeException()
/external/antlr/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/runtime/Python3/antlr3/
Drecognizers.py39 MismatchedRangeException, MismatchedTreeNodeException, \
1198 mre = MismatchedRangeException(chr(a), chr(b), self.input)
1283 elif isinstance(e, MismatchedRangeException):
Dexceptions.py258 class MismatchedRangeException(RecognitionException): class
/external/antlr/runtime/Perl5/lib/ANTLR/Runtime/
DLexer.pm195 my $mre = ANTLR::Runtime::MismatchedRangeException($a, $b, $self->input);
/external/antlr/runtime/ObjC/Framework/ANTLR.xcodeproj/
Dproject.pbxproj81 …6008C9BED /* MismatchedRangeException.m in Sources */ = {isa = PBXBuildFile; fileRef = F7037CEF0A0…
233 …C0070435D /* MismatchedRangeException.h in Headers */ = {isa = PBXBuildFile; fileRef = F7037CEE0A0…
762 …D /* MismatchedRangeException.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType …
763 … /* MismatchedRangeException.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =…
1564 F7037CEE0A0582FC0070435D /* MismatchedRangeException.h */,
1565 F7037CEF0A0582FC0070435D /* MismatchedRangeException.m */,
1781 F7037CF00A0582FC0070435D /* MismatchedRangeException.h in Headers */,
2673 1A12C96411B89F76008C9BED /* MismatchedRangeException.m in Sources */,