/external/antlr/runtime/ObjC/Framework/ |
D | MismatchedTokenException.m | 37 + (id) newException:(NSInteger)expectedTokenType Stream:(id<IntStream>)anInput 39 return [[MismatchedTokenException alloc] initWithTokenType:expectedTokenType Stream:anInput]; 42 + (id) newExceptionMissing:(NSInteger)expectedTokenType 46 …return [[MismatchedTokenException alloc] initWithTokenType:expectedTokenType Stream:anInput Token:… 59 -(id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<IntStream>)anInput 62 expecting = expectedTokenType; 68 -(id) initWithTokenType:(NSInteger)expectedTokenType 73 expecting = expectedTokenType;
|
D | MismatchedTokenException.h | 44 + (id) newException:(NSInteger)expectedTokenType Stream:(id<IntStream>)anInput; 45 + (id) newExceptionMissing:(NSInteger)expectedTokenType 52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<IntStream>)anInput; 53 -(id) initWithTokenType:(NSInteger)expectedTokenType
|
D | MismatchedTreeNodeException.m | 34 + (id) newException:(NSInteger)expectedTokenType Stream:(id<IntStream>)anInput 36 return [[MismatchedTreeNodeException alloc] initWithTokenType:expectedTokenType Stream:anInput]; 39 -(id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<IntStream>)anInput 42 expecting = expectedTokenType;
|
D | MismatchedTreeNodeException.h | 38 + (id) newException:(NSInteger)expectedTokenType Stream:(id<IntStream>)anInput; 39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<IntStream>)anInput;
|
D | Parser.m | 100 TType:(NSInteger)expectedTokenType 104 if ( expectedTokenType == TokenTypeEOF ) 107 …ringWithFormat:@"<missing %@>\n",[[BaseRecognizer getTokenNames] objectAtIndex:expectedTokenType]]; 108 CommonToken *t = [[CommonToken newToken:expectedTokenType Text:tokenText] retain];
|
D | TreeParser.m | 106 ExpectedToken:(NSInteger)expectedTokenType 109 …tokenText =[NSString stringWithFormat:@"<missing %@ %d>", [self getTokenNames], expectedTokenType]; 111 //return [anAdaptor createToken:expectedTokenType Text:tokenText]; 112 return [CommonToken newToken:expectedTokenType Text:tokenText];
|
D | Parser.h | 50 TType:(NSInteger)expectedTokenType
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | Parser.cs | 75 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/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | Parser.cs | 69 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/runtime/Java/src/main/java/org/antlr/runtime/ |
D | Parser.java | 62 int expectedTokenType, in getMissingSymbol() argument 66 if ( expectedTokenType==Token.EOF ) tokenText = "<missing EOF>"; in getMissingSymbol() 67 else tokenText = "<missing "+getTokenNames()[expectedTokenType]+">"; in getMissingSymbol() 68 CommonToken t = new CommonToken(expectedTokenType, tokenText); in getMissingSymbol()
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/ |
D | Parser.js | 24 expectedTokenType, argument 28 "<missing "+this.getTokenNames()[expectedTokenType]+">"; 29 var t = new org.antlr.runtime.CommonToken(expectedTokenType, tokenText);
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | TreeParser.cs | 105 int expectedTokenType, in GetMissingSymbol() argument 109 "<missing " + TokenNames[expectedTokenType] + ">"; in GetMissingSymbol() 111 return adaptor.Create(new CommonToken(expectedTokenType, tokenText)); in GetMissingSymbol()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | TreeParser.cs | 96 int expectedTokenType, in GetMissingSymbol() argument 99 "<missing " + TokenNames[expectedTokenType] + ">"; in GetMissingSymbol() 101 return adaptor.Create(new CommonToken(expectedTokenType, tokenText)); in GetMissingSymbol()
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | TreeParser.js | 43 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/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | 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/runtime/C/src/ |
D | antlr3treeparser.c | 48 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/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
D | DebugTreeParser.cs | 109 int expectedTokenType, in GetMissingSymbol() argument 112 object o = base.GetMissingSymbol( input, e, expectedTokenType, follow ); in GetMissingSymbol()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
D | DebugTreeParser.cs | 101 int expectedTokenType, in GetMissingSymbol() argument 103 object o = base.GetMissingSymbol(input, e, expectedTokenType, follow); in GetMissingSymbol()
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | TreeParser.java | 91 int expectedTokenType, in getMissingSymbol() argument 95 "<missing "+getTokenNames()[expectedTokenType]+">"; in getMissingSymbol() 97 return adaptor.create(new CommonToken(expectedTokenType, tokenText)); in getMissingSymbol()
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
D | DebugTreeParser.java | 88 int expectedTokenType, in getMissingSymbol() argument 91 Object o = super.getMissingSymbol(input, e, expectedTokenType, follow); in getMissingSymbol()
|
/external/smali/smali/src/test/java/org/jf/smali/ |
D | LexerTest.java | 191 int expectedTokenType = tokenTypesByName.get(expectedToken.tokenName); in runTest() local 193 if (token.getType() != expectedTokenType) { in runTest()
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | TreeParser.as | 72 expectedTokenType:int, 75 "<missing "+tokenNames[expectedTokenType]+">"; 76 return CommonTree.createFromToken(new CommonToken(expectedTokenType, tokenText));
|
/external/antlr/runtime/Python/antlr3/ |
D | recognizers.py | 760 def getMissingSymbol(self, input, e, expectedTokenType, follow): argument 1383 def getMissingSymbol(self, input, e, expectedTokenType, follow): argument 1384 if expectedTokenType == EOF: 1387 tokenText = "<missing " + self.tokenNames[expectedTokenType] + ">" 1388 t = CommonToken(type=expectedTokenType, text=tokenText)
|
/external/antlr/runtime/Python3/antlr3/ |
D | recognizers.py | 752 def getMissingSymbol(self, input, e, expectedTokenType, follow): argument 1352 def getMissingSymbol(self, input, e, expectedTokenType, follow): argument 1353 if expectedTokenType == EOF: 1356 tokenText = "<missing {}>".format(self.tokenNames[expectedTokenType]) 1357 t = CommonToken(type=expectedTokenType, text=tokenText)
|
/external/antlr/runtime/Cpp/include/ |
D | antlr3treeparser.inl | 156 ANTLR_UINT32 expectedTokenType, BitsetListType* follow) argument 189 text.append((const char *)this->get_rec()->get_state()->get_tokenName(expectedTokenType));
|