Lines Matching refs:tokSource
105 if (lexer->rec->state->tokSource == NULL) in antlr3LexerNew()
107 …lexer->rec->state->tokSource = (pANTLR3_TOKEN_SOURCE)ANTLR3_CALLOC(1, sizeof(ANTLR3_TOKEN_SOURCE)); in antlr3LexerNew()
109 if (lexer->rec->state->tokSource == NULL) in antlr3LexerNew()
116 lexer->rec->state->tokSource->super = lexer; in antlr3LexerNew()
121 lexer->rec->state->tokSource->nextToken = nextToken; in antlr3LexerNew()
122 lexer->rec->state->tokSource->strFactory = NULL; in antlr3LexerNew()
149 specialT = &(lexer->rec->state->tokSource->eofToken); in antlr3LexerNew()
162 specialT = &(lexer->rec->state->tokSource->skipToken); in antlr3LexerNew()
521 if (lexer->rec->state->tokSource->strFactory == NULL) in setCharStream()
523 lexer->rec->state->tokSource->strFactory = input->strFactory; in setCharStream()
528 if (lexer->rec->state->tokSource->eofToken.strFactory == NULL) in setCharStream()
530 lexer->rec->state->tokSource->eofToken.strFactory = input->strFactory; in setCharStream()
546 lexer->rec->state->tokSource->fileName = input->fileName; in setCharStream()
706 if (lexer->rec->state->tokSource != NULL) in freeLexer()
708 ANTLR3_FREE(lexer->rec->state->tokSource); in freeLexer()
709 lexer->rec->state->tokSource = NULL; in freeLexer()