Home
last modified time | relevance | path

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

12

/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DMismatchedTreeNodeException.cs41 public class MismatchedTreeNodeException : RecognitionException { class
44 public MismatchedTreeNodeException() { in MismatchedTreeNodeException() method in Antlr.Runtime.MismatchedTreeNodeException
47 public MismatchedTreeNodeException(string message) in MismatchedTreeNodeException() method in Antlr.Runtime.MismatchedTreeNodeException
51 public MismatchedTreeNodeException(string message, Exception innerException) in MismatchedTreeNodeException() method in Antlr.Runtime.MismatchedTreeNodeException
55 public MismatchedTreeNodeException(int expecting, ITreeNodeStream input) in MismatchedTreeNodeException() method in Antlr.Runtime.MismatchedTreeNodeException
60 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input) in MismatchedTreeNodeException() method in Antlr.Runtime.MismatchedTreeNodeException
65 …public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input, Exception… in MismatchedTreeNodeException() method in Antlr.Runtime.MismatchedTreeNodeException
70 protected MismatchedTreeNodeException(SerializationInfo info, StreamingContext context) in MismatchedTreeNodeException() method in Antlr.Runtime.MismatchedTreeNodeException
DBaseRecognizer.cs281 } else if (e is MismatchedTreeNodeException) { in GetErrorMessage()
282 MismatchedTreeNodeException mtne = (MismatchedTreeNodeException)e; in GetErrorMessage()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DMismatchedTreeNodeException.cs42 public class MismatchedTreeNodeException : RecognitionException class
46 public MismatchedTreeNodeException() in MismatchedTreeNodeException() method in Antlr.Runtime.MismatchedTreeNodeException
50 public MismatchedTreeNodeException(string message) in MismatchedTreeNodeException() method in Antlr.Runtime.MismatchedTreeNodeException
55 public MismatchedTreeNodeException(string message, Exception innerException) in MismatchedTreeNodeException() method in Antlr.Runtime.MismatchedTreeNodeException
60 public MismatchedTreeNodeException( int expecting, ITreeNodeStream input ) in MismatchedTreeNodeException() method in Antlr.Runtime.MismatchedTreeNodeException
66 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input) in MismatchedTreeNodeException() method in Antlr.Runtime.MismatchedTreeNodeException
72 …public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input, Exception… in MismatchedTreeNodeException() method in Antlr.Runtime.MismatchedTreeNodeException
78 protected MismatchedTreeNodeException(SerializationInfo info, StreamingContext context) in MismatchedTreeNodeException() method in Antlr.Runtime.MismatchedTreeNodeException
DBaseRecognizer.cs322 else if ( e is MismatchedTreeNodeException ) in GetErrorMessage()
324 MismatchedTreeNodeException mtne = (MismatchedTreeNodeException)e; in GetErrorMessage()
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DMismatchedTreeNodeException.java34 public class MismatchedTreeNodeException extends RecognitionException { class
37 public MismatchedTreeNodeException() { in MismatchedTreeNodeException() method in MismatchedTreeNodeException
40 public MismatchedTreeNodeException(int expecting, TreeNodeStream input) { in MismatchedTreeNodeException() method in MismatchedTreeNodeException
DBaseRecognizer.java256 else if ( e instanceof MismatchedTreeNodeException ) { in getErrorMessage()
257 MismatchedTreeNodeException mtne = (MismatchedTreeNodeException)e; in getErrorMessage()
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/
DMismatchedTreeNodeException.js1 org.antlr.runtime.MismatchedTreeNodeException = function(expecting, input) { class in org.antlr.runtime
3 org.antlr.runtime.MismatchedTreeNodeException.superclass.constructor.call(
10 org.antlr.runtime.MismatchedTreeNodeException,
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DMismatchedTreeNodeException.as4 public class MismatchedTreeNodeException extends RecognitionException { class in org.antlr.runtime
7 public function MismatchedTreeNodeException(expecting:int, input:TreeNodeStream) { method in org.antlr.runtime.MismatchedTreeNodeException
13 return "MismatchedTreeNodeException("+unexpectedType+"!="+expecting+")";
/external/antlr/runtime/ObjC/Framework/
DMismatchedTreeNodeException.m27 #import "MismatchedTreeNodeException.h"
30 @implementation MismatchedTreeNodeException implementation
36 return [[MismatchedTreeNodeException alloc] initWithTokenType:expectedTokenType Stream:anInput];
DMismatchedTreeNodeException.h32 @interface MismatchedTreeNodeException : RecognitionException {
DTreeParser.m79MismatchedTreeNodeException *mte = [MismatchedTreeNodeException newException:aTType Stream:aStream…
152 @throw [MismatchedTreeNodeException newException:ttype Stream:anInput];
DANTLR.h83 #import <ANTLR/MismatchedTreeNodeException.h>
Dantlr3.h83 #import <ANTLR/MismatchedTreeNodeException.h>
/external/antlr/runtime/Python3/unittests/
Dtestexceptions.py82 exc = antlr3.MismatchedTreeNodeException()
/external/antlr/runtime/Python/unittests/
Dtestexceptions.py82 exc = antlr3.MismatchedTreeNodeException()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DTreeParser.cs161 throw new MismatchedTreeNodeException( ttype, (ITreeNodeStream)input ); in RecoverFromMismatchedToken()
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DTreeParser.cs146 throw new MismatchedTreeNodeException(ttype, (ITreeNodeStream)input); in RecoverFromMismatchedToken()
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/
DTreeParser.js86 throw new org.antlr.runtime.MismatchedTreeNodeException(ttype, input);
/external/antlr/runtime/JavaScript/build/
Dantlr3.properties29 org/antlr/runtime/MismatchedTreeNodeException.js,\
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
DTreeParser.java141 throw new MismatchedTreeNodeException(ttype, (TreeNodeStream)input); in recoverFromMismatchedToken()
/external/antlr/runtime/Python3/antlr3/
Dexceptions.py352 class MismatchedTreeNodeException(RecognitionException): class
Drecognizers.py39 MismatchedRangeException, MismatchedTreeNodeException, \
352 elif isinstance(e, MismatchedTreeNodeException):
/external/antlr/runtime/Python/antlr3/
Dexceptions.py352 class MismatchedTreeNodeException(RecognitionException): class
Drecognizers.py40 MismatchedRangeException, MismatchedTreeNodeException, \
358 elif isinstance(e, MismatchedTreeNodeException):
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DTreeParser.as114 throw new MismatchedTreeNodeException(ttype, TreeNodeStream(input));

12