Home
last modified time | relevance | path

Searched refs:TokenTypeEOF (Results 1 – 25 of 28) sorted by relevance

12

/external/antlr/runtime/ObjC/Framework/
DBufferedTokenStream.m201 if ( t.type == TokenTypeEOF )
228 if ( t.type == TokenTypeEOF )
362 if ( t.type == TokenTypeEOF )
381 if ( [((CommonToken *)[tokens objectAtIndex:index]) type] == TokenTypeEOF )
386 while ( [((CommonToken *)[tokens objectAtIndex:i]) type] != TokenTypeEOF ) {
DCommonTreeNodeStream.m60 navigationNodeEOF = [[adaptor createTree:TokenTypeEOF Text:@"EOF"] retain]; // set EOF
75 navigationNodeEOF = [[adaptor createTree:TokenTypeEOF Text:@"EOF"] retain]; // set EOF
134 return [adaptor getType:(CommonTree *)aTree] == TokenTypeEOF;
235 while ( type != TokenTypeEOF ) {
DTreeIterator.m56 eof = [[adaptor createTree:TokenTypeEOF Text:@"EOF"] retain];
74 eof = [[adaptor createTree:TokenTypeEOF Text:@"EOF"] retain];
90 eof = [[adaptor createTree:TokenTypeEOF Text:@"EOF"] retain];
DBufferedTreeNodeStream.m119 eof = [[adaptor createTree:TokenTypeEOF Text:@"EOF"] retain];
136 eof = [[adaptor createTree:TokenTypeEOF Text:@"EOF"] retain];
153 eof = [[adaptor createTree:TokenTypeEOF Text:@"EOF"] retain];
173 eof = [[adaptor createTree:TokenTypeEOF Text:@"EOF"] retain];
507 else if ([adaptor getType:aStop] == TokenTypeEOF) {
DToken.h35 TokenTypeEOF = -1, enumerator
DParser.m104 if ( expectedTokenType == TokenTypeEOF )
110 if ( current.type == TokenTypeEOF ) {
DCommonToken.m52 EOF_TOKEN = [CommonToken newToken:TokenTypeEOF Text:@"EOF"];
104 EOF_TOKEN = [[CommonToken newToken:TokenTypeEOF Text:@"EOF"] retain];
159 if (type == TokenTypeEOF)
DCommonErrorNode.m65 aStopToken.type != TokenTypeEOF) )
113 if ( stopToken.type == TokenTypeEOF ) {
DUnbufferedTokenStream.m84 return (aToken.type == TokenTypeEOF);
DBaseRecognizer.m358 if ( ute.expecting == TokenTypeEOF ) {
370 if ( mte.expecting== TokenTypeEOF ) {
381 if ( mte.expecting== TokenTypeEOF ) {
392 if ( mtne.expecting==TokenTypeEOF ) {
466 if ( t.type == TokenTypeEOF ) {
827 while (ttype != TokenTypeEOF && ttype != tokenType) {
838 while (ttype != TokenTypeEOF && ![set member:ttype] ) {
DParseTree.m91 if ( t.type == TokenTypeEOF ) {
DLexer.m128 Type:TokenTypeEOF
393 case TokenTypeEOF :
DTokenRewriteStream.m114 if ( ((CommonToken *)[tokens objectAtIndex:rwIndex]).type != TokenTypeEOF ) {
436 if ( [((CommonToken *)[lastRewriteTokenIndexes objectAtIndex:i]) type] != TokenTypeEOF )
484 if ( t.type != TokenTypeEOF )
DTreeParser.m132 while ( tokenType != TokenTypeEOF && !( tokenType == TokenTypeUP && level == 0) ) {
DCommonTokenStream.m188 if ( t.type == TokenTypeEOF )
/external/antlr/runtime/ObjC/Framework/examples/lexertest-simple/
Dmain.m13 while ((currentToken = [[lexer nextToken] retain]) && currentToken.type != TokenTypeEOF) {
/external/antlr/runtime/ObjC/Framework/examples/combined/
Dmain.m14 while ((currentToken = [lexer nextToken]) && currentToken.type != TokenTypeEOF) {
/external/antlr/runtime/ObjC/Framework/test/runtime/token/
DCommonTokenTest.m26 STAssertEquals(token.type, (NSInteger)TokenTypeEOF, @"Token was not of type TokenTypeEOF");
/external/antlr/runtime/ObjC/Framework/examples/fuzzy/
Dmain.m17 while ((currentToken = [lex nextToken]) && currentToken.type != TokenTypeEOF) {
/external/antlr/runtime/ObjC/Framework/examples/hoistedPredicates/
Dmain.m16 // while ((currentToken = [lexer nextToken]) && [currentToken type] != TokenTypeEOF) {
/external/antlr/runtime/ObjC/Framework/examples/scopes/
Dmain.m17 // while ((currentToken = [lexer nextToken]) && currentToken.type != TokenTypeEOF) {
/external/antlr/runtime/ObjC/Framework/examples/LL-star/
Dmain.m17 // while ((currentToken = [lexer nextToken]) && currentToken.type != TokenTypeEOF) {
/external/antlr/runtime/ObjC/Framework/examples/treerewrite/
Dmain.m15 // while ((currentToken = [lexer nextToken]) && [currentToken type] != TokenTypeEOF) {
/external/antlr/runtime/ObjC/Framework/examples/simplecTreeParser/
Dmain.m38 // while ((currentToken = [lexer nextToken]) && [currentToken type] != TokenTypeEOF) {
/external/antlr/runtime/ObjC/Framework/test/runtime/tree/
DCommonTreeTest.m521 CommonTree *child2 = [CommonTree newTreeWithTokenType:TokenTypeEOF];
539 CommonTree *child2 = [CommonTree newTreeWithTokenType:TokenTypeEOF];

12