Home
last modified time | relevance | path

Searched refs:lastToken (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/Lex/
DMacroInfo.cpp42 const Token &lastToken = ReplacementTokens.back(); in getDefinitionLengthSlow() local
44 SourceLocation macroEnd = lastToken.getLocation(); in getDefinitionLengthSlow()
48 assert((macroEnd.isFileID() || lastToken.is(tok::comment)) && in getDefinitionLengthSlow()
58 DefinitionLength += lastToken.getLength(); in getDefinitionLengthSlow()
/external/icu4c/i18n/
Ducol_tok.cpp1715 UColToken *lastToken = NULL; in ucol_tok_assembleTokenList() local
1747 (UBool)(lastToken == NULL), in ucol_tok_assembleTokenList()
1762 if(lastToken != NULL ) { in ucol_tok_assembleTokenList()
1763 lastStrength = lastToken->strength; in ucol_tok_assembleTokenList()
1780 if(lastToken == NULL) { /* this means that rules haven't started properly */ in ucol_tok_assembleTokenList()
1816 if(sourceToken->strength != UCOL_TOK_RESET && lastToken != sourceToken) { in ucol_tok_assembleTokenList()
1838 sourceToken->listHeader = lastToken->listHeader; in ucol_tok_assembleTokenList()
1859 lastToken = sourceToken->listHeader->first; in ucol_tok_assembleTokenList()
1860 … while(lastToken->next != NULL && lastToken->next->strength > sourceToken->strength) { in ucol_tok_assembleTokenList()
1861 lastToken = lastToken->next; in ucol_tok_assembleTokenList()
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DRecognitionException.cs281 IToken lastToken = streamInformation.LastToken; in ExtractInformationFromTreeNodeStream()
287 this._approximateLineInfo = lastRealToken.Equals(lastToken); in ExtractInformationFromTreeNodeStream()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DRecognitionException.cs335 IToken lastToken = streamInformation.LastToken; in ExtractInformationFromTreeNodeStream()
342 this._approximateLineInfo = lastRealToken.Equals(lastToken); in ExtractInformationFromTreeNodeStream()
/external/webkit/Source/JavaScriptCore/runtime/
DLiteralParser.cpp307 TokenType lastToken = m_lexer.currentToken().type; in parse() local
309 if (lastToken == TokComma) in parse()