HomeSort by relevance Sort by last modified time
    Searched full:mismatchedtreenodeexception (Results 1 - 25 of 29) sorted by null

1 2

  /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 + ")";
Antlr3.Runtime.csproj 85 <Compile Include="MismatchedTreeNodeException.cs" />
BaseRecognizer.cs 320 else if ( e is MismatchedTreeNodeException )
322 MismatchedTreeNodeException mtne = (MismatchedTreeNodeException)e;
    [all...]
  /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/Python/unittests/
testexceptions.py 76 """Tests for the antlr3.MismatchedTreeNodeException class"""
80 """MismatchedTreeNodeException.__init__()"""
82 exc = antlr3.MismatchedTreeNodeException()
  /external/antlr/antlr-3.4/runtime/JavaScript/build/
antlr3.properties 29 org/antlr/runtime/MismatchedTreeNodeException.js,\
  /external/antlr/antlr-3.4/runtime/ActionScript/project/
.flexLibProperties 31 <classEntry path="org.antlr.runtime.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/C/include/
antlr3exception.h 86 #define ANTLR3_MISMATCHED_TREE_NODE_NAME "org.antlr.runtime.MismatchedTreeNodeException"
  /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/Python/antlr3/
__init__.py 89 - MismatchedTreeNodeException
exceptions.py 352 class MismatchedTreeNodeException(RecognitionException):
361 return "MismatchedTreeNodeException(%r!=%r)" % (
recognizers.py 40 MismatchedRangeException, MismatchedTreeNodeException, \
358 elif isinstance(e, MismatchedTreeNodeException):
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/
Antlr3.Runtime (VS2005).csproj 90 <Compile Include="Antlr.Runtime\MismatchedTreeNodeException.cs" />
Antlr3.Runtime (VS2008).csproj 119 <Compile Include="Antlr.Runtime\MismatchedTreeNodeException.cs" />
  /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/Perl5/lib/ANTLR/Runtime/
BaseRecognizer.pm 186 } elsif ($e->isa('ANTLR::Runtime::MismatchedTreeNodeException')) {

Completed in 1995 milliseconds

1 2