Home
last modified time | relevance | path

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

1234

/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DMismatchedSetException.cs40 public class MismatchedSetException : RecognitionException { class
43 public MismatchedSetException() { in MismatchedSetException() method in Antlr.Runtime.MismatchedSetException
46 public MismatchedSetException(string message) in MismatchedSetException() method in Antlr.Runtime.MismatchedSetException
50 public MismatchedSetException(string message, Exception innerException) in MismatchedSetException() method in Antlr.Runtime.MismatchedSetException
54 public MismatchedSetException(BitSet expecting, IIntStream input) in MismatchedSetException() method in Antlr.Runtime.MismatchedSetException
59 public MismatchedSetException(string message, BitSet expecting, IIntStream input) in MismatchedSetException() method in Antlr.Runtime.MismatchedSetException
64 …public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerE… in MismatchedSetException() method in Antlr.Runtime.MismatchedSetException
69 protected MismatchedSetException(SerializationInfo info, StreamingContext context) in MismatchedSetException() method in Antlr.Runtime.MismatchedSetException
DLexer.cs298 } else if (e is MismatchedSetException) { in GetErrorMessage()
299 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DMismatchedSetException.cs41 public class MismatchedSetException : RecognitionException class
45 public MismatchedSetException() in MismatchedSetException() method in Antlr.Runtime.MismatchedSetException
49 public MismatchedSetException(string message) in MismatchedSetException() method in Antlr.Runtime.MismatchedSetException
54 public MismatchedSetException(string message, Exception innerException) in MismatchedSetException() method in Antlr.Runtime.MismatchedSetException
59 public MismatchedSetException( BitSet expecting, IIntStream input ) in MismatchedSetException() method in Antlr.Runtime.MismatchedSetException
65 public MismatchedSetException(string message, BitSet expecting, IIntStream input) in MismatchedSetException() method in Antlr.Runtime.MismatchedSetException
71 …public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerE… in MismatchedSetException() method in Antlr.Runtime.MismatchedSetException
77 protected MismatchedSetException(SerializationInfo info, StreamingContext context) in MismatchedSetException() method in Antlr.Runtime.MismatchedSetException
DLexer.cs371 else if ( e is MismatchedSetException ) in GetErrorMessage()
373 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage()
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DMismatchedSetException.java30 public class MismatchedSetException extends RecognitionException { class
34 public MismatchedSetException() {;} in MismatchedSetException() method in MismatchedSetException
36 public MismatchedSetException(BitSet expecting, IntStream input) { in MismatchedSetException() method in MismatchedSetException
DLexer.java301 else if ( e instanceof MismatchedSetException ) { in getErrorMessage()
302 MismatchedSetException mse = (MismatchedSetException)e; in getErrorMessage()
DMismatchedNotSetException.java30 public class MismatchedNotSetException extends MismatchedSetException {
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/
DMismatchedSetException.js1 org.antlr.runtime.MismatchedSetException = function(expecting, input) { class in org.antlr.runtime
2 org.antlr.runtime.MismatchedSetException.superclass.constructor.call(
8 org.antlr.runtime.MismatchedSetException,
DMismatchedNotSetException.js7 org.antlr.runtime.MismatchedSetException, {
/external/antlr/runtime/ObjC/Framework/examples/simplecTreeParser/
DSimpleCLexer.java264 MismatchedSetException mse = new MismatchedSetException(null,input); in mID()
288 MismatchedSetException mse = new MismatchedSetException(null,input); in mID()
480 MismatchedSetException mse = new MismatchedSetException(null,input); in mWS()
DSimpleCTP.java379 MismatchedSetException mse = new MismatchedSetException(null,input); in type()
784 MismatchedSetException mse = new MismatchedSetException(null,input); in atom()
DSimpleCLexer.m224 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
247MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
316MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
732MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
/external/antlr/runtime/ObjC/Framework/examples/lexertest-simple/
DTestLexer.m103MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
150 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
184 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
/external/antlr/runtime/ObjC/Framework/examples/combined/
DCombinedLexer.m84 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
107MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
171MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
240MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
/external/antlr/runtime/ObjC/Framework/examples/hoistedPredicates/
DTLexer.m119 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
142MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
206MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
275MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DMismatchedSetException.as30 public class MismatchedSetException extends RecognitionException { class in org.antlr.runtime
33 public function MismatchedSetException(expecting:BitSet, input:IntStream) { method in org.antlr.runtime.MismatchedSetException
39 return "MismatchedSetException("+unexpectedType+"!="+expecting+")";
/external/antlr/runtime/ObjC/Framework/
DMismatchedSetException.m27 #import "MismatchedSetException.h"
30 @implementation MismatchedSetException implementation
36 return [[MismatchedSetException alloc] initWithSet:theExpectedSet stream:theStream];
DMismatchedSetException.h31 @interface MismatchedSetException : RecognitionException {
/external/antlr/runtime/ObjC/Framework/examples/polydiff/
DPolyLexer.m169MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
240MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
309MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
/external/doclava/src/com/google/doclava/parser/
DJavaLexer.java25 import org.antlr.runtime.MismatchedSetException;
431 MismatchedSetException mse = new MismatchedSetException(null,input); in mHexDigit()
455 MismatchedSetException mse = new MismatchedSetException(null,input); in mLongSuffix()
786 MismatchedSetException mse = new MismatchedSetException(null,input); in mNonIntegerNumber()
806 MismatchedSetException mse = new MismatchedSetException(null,input); in mNonIntegerNumber()
868 MismatchedSetException mse = new MismatchedSetException(null,input); in mExponent()
888 MismatchedSetException mse = new MismatchedSetException(null,input); in mExponent()
948 MismatchedSetException mse = new MismatchedSetException(null,input); in mFloatSuffix()
972 MismatchedSetException mse = new MismatchedSetException(null,input); in mDoubleSuffix()
1101 MismatchedSetException mse = new MismatchedSetException(null,input); in mCHARLITERAL()
[all …]
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
DSlimLexer.cs380 else if ( e is MismatchedSetException ) in GetErrorMessage()
382 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage()
/external/antlr/runtime/ObjC/Framework/examples/treeparser/
DLangLexer.m203MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
272MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
326 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
/external/antlr/runtime/ObjC/Framework/examples/scopes/
DSymbolTableLexer.m373MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
442MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
511MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
/external/antlr/runtime/Perl5/lib/ANTLR/Runtime/
DMismatchedSetException.pm1 package ANTLR::Runtime::MismatchedSetException;
/external/antlr/runtime/ObjC/Framework/examples/LL-star/
DSimpleCLexer.m565 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
588MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
652MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
721MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];

1234