Home
last modified time | relevance | path

Searched refs:expectedTokenType (Results 1 – 25 of 52) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRMismatchedTokenException.m37 + (id) newException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput
39 return [[ANTLRMismatchedTokenException alloc] initWithTokenType:expectedTokenType Stream:anInput];
42 + (id) newExceptionMissing:(NSInteger)expectedTokenType
46 …return [[ANTLRMismatchedTokenException alloc] initWithTokenType:expectedTokenType Stream:anInput T…
59 -(id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput
62 expecting = expectedTokenType;
68 -(id) initWithTokenType:(NSInteger)expectedTokenType
73 expecting = expectedTokenType;
DANTLRMismatchedTokenException.h44 + (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
DANTLRMismatchedTreeNodeException.m34 + (id) newException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput
36 …return [[ANTLRMismatchedTreeNodeException alloc] initWithTokenType:expectedTokenType Stream:anInpu…
39 -(id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput
42 expecting = expectedTokenType;
DANTLRMismatchedTreeNodeException.h38 + (id) newException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
DANTLRParser.m100 TType:(NSInteger)expectedTokenType
104 if ( expectedTokenType == ANTLRTokenTypeEOF )
107 …ithFormat:@"<missing %@>\n",[[ANTLRBaseRecognizer getTokenNames] objectAtIndex:expectedTokenType]];
108 ANTLRCommonToken *t = [[ANTLRCommonToken newToken:expectedTokenType Text:tokenText] retain];
DANTLRTreeParser.m106 ExpectedToken:(NSInteger)expectedTokenType
109 …tokenText =[NSString stringWithFormat:@"<missing %@ %d>", [self getTokenNames], expectedTokenType];
111 //return [anAdaptor createToken:expectedTokenType Text:tokenText];
112 return [ANTLRCommonToken newToken:expectedTokenType Text:tokenText];
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
DANTLRMismatchedTokenException.h44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anI…
45 + (id) newANTLRMismatchedTokenExceptionMissing:(NSInteger)expectedTokenType
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
53 -(id) initWithTokenType:(NSInteger)expectedTokenType
DANTLRMismatchedTreeNodeException.h38 + (id) newANTLRMismatchedTreeNodeException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)…
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
DANTLRMismatchedTokenException.h44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anI…
45 + (id) newANTLRMismatchedTokenExceptionMissing:(NSInteger)expectedTokenType
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
53 -(id) initWithTokenType:(NSInteger)expectedTokenType
DANTLRMismatchedTreeNodeException.h38 + (id) newANTLRMismatchedTreeNodeException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)…
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DParser.cs75 int expectedTokenType, in GetMissingSymbol() argument
79 if ( expectedTokenType == TokenTypes.EndOfFile ) in GetMissingSymbol()
82 tokenText = "<missing " + TokenNames[expectedTokenType] + ">"; in GetMissingSymbol()
83 CommonToken t = new CommonToken( expectedTokenType, tokenText ); in GetMissingSymbol()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DParser.cs69 int expectedTokenType, in GetMissingSymbol() argument
72 if (expectedTokenType == TokenTypes.EndOfFile) in GetMissingSymbol()
75 tokenText = "<missing " + TokenNames[expectedTokenType] + ">"; in GetMissingSymbol()
76 CommonToken t = new CommonToken(expectedTokenType, tokenText); in GetMissingSymbol()
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
DANTLRMismatchedTokenException.h44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anI…
45 + (id) newANTLRMismatchedTokenExceptionMissing:(NSInteger)expectedTokenType
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
53 -(id) initWithTokenType:(NSInteger)expectedTokenType
DANTLRMismatchedTreeNodeException.h38 + (id) newANTLRMismatchedTreeNodeException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)…
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DParser.java61 int expectedTokenType, in getMissingSymbol() argument
65 if ( expectedTokenType==Token.EOF ) tokenText = "<missing EOF>"; in getMissingSymbol()
66 else tokenText = "<missing "+getTokenNames()[expectedTokenType]+">"; in getMissingSymbol()
67 CommonToken t = new CommonToken(expectedTokenType, tokenText); in getMissingSymbol()
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DParser.js24 expectedTokenType, argument
28 "<missing "+this.getTokenNames()[expectedTokenType]+">";
29 var t = new org.antlr.runtime.CommonToken(expectedTokenType, tokenText);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DTreeParser.cs105 int expectedTokenType, in GetMissingSymbol() argument
109 "<missing " + TokenNames[expectedTokenType] + ">"; in GetMissingSymbol()
111 return adaptor.Create(new CommonToken(expectedTokenType, tokenText)); in GetMissingSymbol()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DTreeParser.cs96 int expectedTokenType, in GetMissingSymbol() argument
99 "<missing " + TokenNames[expectedTokenType] + ">"; in GetMissingSymbol()
101 return adaptor.Create(new CommonToken(expectedTokenType, tokenText)); in GetMissingSymbol()
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
DTreeParser.js43 getMissingSymbol: function(input, e, expectedTokenType, follow) { argument
45 "<missing "+this.getTokenNames()[expectedTokenType]+">";
46 …org.antlr.runtime.tree.CommonTree(new org.antlr.runtime.CommonToken(expectedTokenType, tokenText));
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DParser.as55 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/C/src/
Dantlr3treeparser.c48 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow);
205 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow) in getMissingSymbol() argument
245 text->append8 (text, (const char *)recognizer->state->tokenNames[expectedTokenType]); in getMissingSymbol()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DDebugTreeParser.cs101 int expectedTokenType, in GetMissingSymbol() argument
103 object o = base.GetMissingSymbol(input, e, expectedTokenType, follow); in GetMissingSymbol()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DDebugTreeParser.cs109 int expectedTokenType, in GetMissingSymbol() argument
112 object o = base.GetMissingSymbol( input, e, expectedTokenType, follow ); in GetMissingSymbol()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DDebugTreeParser.java86 int expectedTokenType, in getMissingSymbol() argument
89 Object o = super.getMissingSymbol(input, e, expectedTokenType, follow); in getMissingSymbol()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DTreeParser.java87 int expectedTokenType, in getMissingSymbol() argument
91 "<missing "+getTokenNames()[expectedTokenType]+">"; in getMissingSymbol()
93 return adaptor.create(new CommonToken(expectedTokenType, tokenText)); in getMissingSymbol()

123