HomeSort by relevance Sort by last modified time
    Searched refs:MismatchedTreeNodeException (Results 1 - 21 of 21) sorted by null

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
MismatchedTreeNodeException.java 35 public class MismatchedTreeNodeException extends RecognitionException {
38 public MismatchedTreeNodeException() {
41 public MismatchedTreeNodeException(int expecting, TreeNodeStream input) {
47 return "MismatchedTreeNodeException("+getUnexpectedType()+"!="+expecting+")";
BaseRecognizer.java 256 else if ( e instanceof MismatchedTreeNodeException ) {
257 MismatchedTreeNodeException mtne = (MismatchedTreeNodeException)e;
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
MismatchedTreeNodeException.js 1 org.antlr.runtime.MismatchedTreeNodeException = function(expecting, input) {
3 org.antlr.runtime.MismatchedTreeNodeException.superclass.constructor.call(
10 org.antlr.runtime.MismatchedTreeNodeException,
13 return "MismatchedTreeNodeException(" +
16 name: "org.antlr.runtime.MismatchedTreeNodeException"
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
MismatchedTreeNodeException.as 4 public class MismatchedTreeNodeException extends RecognitionException {
7 public function MismatchedTreeNodeException(expecting:int, input:TreeNodeStream) {
13 return "MismatchedTreeNodeException("+unexpectedType+"!="+expecting+")";
BaseRecognizer.as 235 else if ( e is MismatchedTreeNodeException ) {
236 var mtne:MismatchedTreeNodeException = MismatchedTreeNodeException(e);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
MismatchedTreeNodeException.cs 41 public class MismatchedTreeNodeException : RecognitionException {
44 public MismatchedTreeNodeException() {
47 public MismatchedTreeNodeException(string message)
51 public MismatchedTreeNodeException(string message, Exception innerException)
55 public MismatchedTreeNodeException(int expecting, ITreeNodeStream input)
60 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input)
65 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input, Exception innerException)
70 protected MismatchedTreeNodeException(SerializationInfo info, StreamingContext context)
93 return "MismatchedTreeNodeException(" + UnexpectedType + "!=" + Expecting + ")";
BaseRecognizer.cs 281 } else if (e is MismatchedTreeNodeException) {
282 MismatchedTreeNodeException mtne = (MismatchedTreeNodeException)e;
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
MismatchedTreeNodeException.cs 42 public class MismatchedTreeNodeException : RecognitionException
46 public MismatchedTreeNodeException()
50 public MismatchedTreeNodeException(string message)
55 public MismatchedTreeNodeException(string message, Exception innerException)
60 public MismatchedTreeNodeException( int expecting, ITreeNodeStream input )
66 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input)
72 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input, Exception innerException)
78 protected MismatchedTreeNodeException(SerializationInfo info, StreamingContext context)
106 return "MismatchedTreeNodeException(" + UnexpectedType + "!=" + Expecting + ")";
BaseRecognizer.cs 320 else if ( e is MismatchedTreeNodeException )
322 MismatchedTreeNodeException mtne = (MismatchedTreeNodeException)e;
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testexceptions.py 76 """Tests for the antlr3.MismatchedTreeNodeException class"""
80 """MismatchedTreeNodeException.__init__()"""
82 exc = antlr3.MismatchedTreeNodeException()
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeParser.as 114 throw new MismatchedTreeNodeException(ttype, TreeNodeStream(input));
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeParser.cs 146 throw new MismatchedTreeNodeException(ttype, (ITreeNodeStream)input);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeParser.cs 161 throw new MismatchedTreeNodeException( ttype, (ITreeNodeStream)input );
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
TreeParser.js 86 throw new org.antlr.runtime.MismatchedTreeNodeException(ttype, input);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeParser.java 135 throw new MismatchedTreeNodeException(ttype, (TreeNodeStream)input);
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
exceptions.py 352 class MismatchedTreeNodeException(RecognitionException):
361 return "MismatchedTreeNodeException(%r!=%r)" % (
recognizers.py 40 MismatchedRangeException, MismatchedTreeNodeException, \
358 elif isinstance(e, MismatchedTreeNodeException):
    [all...]
tree.py 47 from antlr3.exceptions import MismatchedTreeNodeException, \
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas     [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 587 milliseconds