HomeSort by relevance Sort by last modified time
    Searched refs:expectedTokenType (Results 1 - 25 of 47) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRMismatchedTreeNodeException.h 38 + (id) newANTLRMismatchedTreeNodeException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
ANTLRMismatchedTokenException.h 44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
45 + (id) newANTLRMismatchedTokenExceptionMissing:(NSInteger)expectedTokenType
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
53 -(id) initWithTokenType:(NSInteger)expectedTokenType
ANTLRParser.h 50 TType:(NSInteger)expectedTokenType
ANTLRTreeParser.h 59 ExpectedToken:(NSInteger) expectedTokenType
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRMismatchedTreeNodeException.h 38 + (id) newANTLRMismatchedTreeNodeException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
ANTLRMismatchedTokenException.h 44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
45 + (id) newANTLRMismatchedTokenExceptionMissing:(NSInteger)expectedTokenType
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
53 -(id) initWithTokenType:(NSInteger)expectedTokenType
ANTLRParser.h 50 TType:(NSInteger)expectedTokenType
ANTLRTreeParser.h 59 ExpectedToken:(NSInteger) expectedTokenType
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRMismatchedTreeNodeException.h 38 + (id) newANTLRMismatchedTreeNodeException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
ANTLRMismatchedTokenException.h 44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
45 + (id) newANTLRMismatchedTokenExceptionMissing:(NSInteger)expectedTokenType
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
53 -(id) initWithTokenType:(NSInteger)expectedTokenType
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRMismatchedTreeNodeException.h 38 + (id) newException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
ANTLRMismatchedTokenException.h 44 + (id) newException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
45 + (id) newExceptionMissing:(NSInteger)expectedTokenType
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
53 -(id) initWithTokenType:(NSInteger)expectedTokenType
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Parser.java 61 int expectedTokenType,
65 if ( expectedTokenType==Token.EOF ) tokenText = "<missing EOF>";
66 else tokenText = "<missing "+getTokenNames()[expectedTokenType]+">";
67 CommonToken t = new CommonToken(expectedTokenType, tokenText);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
Parser.as 55 expectedTokenType:int,
58 if ( expectedTokenType==TokenConstants.EOF ) tokenText = "<missing EOF>";
59 else tokenText = "<missing "+tokenNames[expectedTokenType]+">";
60 var t:CommonToken = new CommonToken(expectedTokenType, tokenText);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
Parser.cs 69 int expectedTokenType,
72 if (expectedTokenType == TokenTypes.EndOfFile)
75 tokenText = "<missing " + TokenNames[expectedTokenType] + ">";
76 CommonToken t = new CommonToken(expectedTokenType, tokenText);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Parser.cs 75 int expectedTokenType,
79 if ( expectedTokenType == TokenTypes.EndOfFile )
82 tokenText = "<missing " + TokenNames[expectedTokenType] + ">";
83 CommonToken t = new CommonToken( expectedTokenType, tokenText );
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Parser.js 24 expectedTokenType,
28 "<missing "+this.getTokenNames()[expectedTokenType]+">";
29 var t = new org.antlr.runtime.CommonToken(expectedTokenType, tokenText);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeParser.cs 101 int expectedTokenType,
103 object o = base.GetMissingSymbol(input, e, expectedTokenType, follow);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeParser.cs 109 int expectedTokenType,
112 object o = base.GetMissingSymbol( input, e, expectedTokenType, follow );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeParser.java 86 int expectedTokenType,
89 Object o = super.getMissingSymbol(input, e, expectedTokenType, follow);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeParser.as 72 expectedTokenType:int,
75 "<missing "+tokenNames[expectedTokenType]+">";
76 return CommonTree.createFromToken(new CommonToken(expectedTokenType, tokenText));
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3treeparser.c 48 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow);
205 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow)
245 text->append8 (text, (const char *)recognizer->state->tokenNames[expectedTokenType]);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeParser.cs 96 int expectedTokenType,
99 "<missing " + TokenNames[expectedTokenType] + ">";
101 return adaptor.Create(new CommonToken(expectedTokenType, tokenText));
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeParser.cs 105 int expectedTokenType,
109 "<missing " + TokenNames[expectedTokenType] + ">";
111 return adaptor.Create(new CommonToken(expectedTokenType, tokenText));
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
TreeParser.js 43 getMissingSymbol: function(input, e, expectedTokenType, follow) {
45 "<missing "+this.getTokenNames()[expectedTokenType]+">";
46 return new org.antlr.runtime.tree.CommonTree(new org.antlr.runtime.CommonToken(expectedTokenType, tokenText));

Completed in 64 milliseconds

1 2