Home
last modified time | relevance | path

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

123

/external/antlr/antlr-3.4/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()
DMismatchedNotSetException.cs39 public class MismatchedNotSetException : MismatchedSetException {
DBaseRecognizer.cs303 } else if (e is MismatchedSetException) { in GetErrorMessage()
304 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage()
/external/antlr/antlr-3.4/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.cs363 else if ( e is MismatchedSetException ) in GetErrorMessage()
365 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage()
DMismatchedNotSetException.cs40 public class MismatchedNotSetException : MismatchedSetException
DBaseRecognizer.cs351 else if ( e is MismatchedSetException ) in GetErrorMessage()
353 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage()
/external/antlr/antlr-3.4/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.java290 else if ( e instanceof MismatchedSetException ) { in getErrorMessage()
291 MismatchedSetException mse = (MismatchedSetException)e; in getErrorMessage()
DMismatchedNotSetException.java30 public class MismatchedNotSetException extends MismatchedSetException {
DBaseRecognizer.java281 else if ( e instanceof MismatchedSetException ) { in getErrorMessage()
282 MismatchedSetException mse = (MismatchedSetException)e; in getErrorMessage()
/external/antlr/antlr-3.4/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/antlr-3.4/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()
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
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()
/external/antlr/antlr-3.4/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/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
DSlimLexer.cs380 else if ( e is MismatchedSetException ) in GetErrorMessage()
382 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage()
/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/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
DMismatchedSetException.pm1 package ANTLR::Runtime::MismatchedSetException;
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Dexceptions.py276 class MismatchedSetException(RecognitionException): class
292 class MismatchedNotSetException(MismatchedSetException):
/external/antlr/antlr-3.4/runtime/Python/unittests/
Dtestexceptions.py62 exc = antlr3.MismatchedSetException()
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt009lexer.py58 except antlr3.MismatchedSetException, exc:

123