/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | MismatchedSetException.cs | 40 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
|
D | Lexer.cs | 298 } else if (e is MismatchedSetException) { in GetErrorMessage() 299 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | MismatchedSetException.cs | 41 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
|
D | Lexer.cs | 371 else if ( e is MismatchedSetException ) in GetErrorMessage() 373 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage()
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/ |
D | MismatchedSetException.java | 30 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
|
D | Lexer.java | 301 else if ( e instanceof MismatchedSetException ) { in getErrorMessage() 302 MismatchedSetException mse = (MismatchedSetException)e; in getErrorMessage()
|
D | MismatchedNotSetException.java | 30 public class MismatchedNotSetException extends MismatchedSetException {
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/ |
D | MismatchedSetException.js | 1 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,
|
D | MismatchedNotSetException.js | 7 org.antlr.runtime.MismatchedSetException, {
|
/external/antlr/runtime/ObjC/Framework/examples/simplecTreeParser/ |
D | SimpleCLexer.java | 264 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()
|
D | SimpleCTP.java | 379 MismatchedSetException mse = new MismatchedSetException(null,input); in type() 784 MismatchedSetException mse = new MismatchedSetException(null,input); in atom()
|
D | SimpleCLexer.m | 224 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 247 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 316 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 732 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
|
/external/antlr/runtime/ObjC/Framework/examples/lexertest-simple/ |
D | TestLexer.m | 103 … MismatchedSetException *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/ |
D | CombinedLexer.m | 84 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 107 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 171 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 240 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
|
/external/antlr/runtime/ObjC/Framework/examples/hoistedPredicates/ |
D | TLexer.m | 119 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 142 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 206 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 275 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | MismatchedSetException.as | 30 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/ |
D | MismatchedSetException.m | 27 #import "MismatchedSetException.h" 30 @implementation MismatchedSetException implementation 36 return [[MismatchedSetException alloc] initWithSet:theExpectedSet stream:theStream];
|
D | MismatchedSetException.h | 31 @interface MismatchedSetException : RecognitionException {
|
/external/antlr/runtime/ObjC/Framework/examples/polydiff/ |
D | PolyLexer.m | 169 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 240 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 309 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
|
/external/doclava/src/com/google/doclava/parser/ |
D | JavaLexer.java | 25 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/ |
D | SlimLexer.cs | 380 else if ( e is MismatchedSetException ) in GetErrorMessage() 382 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage()
|
/external/antlr/runtime/ObjC/Framework/examples/treeparser/ |
D | LangLexer.m | 203 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 272 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 326 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
|
/external/antlr/runtime/ObjC/Framework/examples/scopes/ |
D | SymbolTableLexer.m | 373 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 442 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 511 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
|
/external/antlr/runtime/Perl5/lib/ANTLR/Runtime/ |
D | MismatchedSetException.pm | 1 package ANTLR::Runtime::MismatchedSetException;
|
/external/antlr/runtime/ObjC/Framework/examples/LL-star/ |
D | SimpleCLexer.m | 565 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 588 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 652 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 721 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
|