Home
last modified time | relevance | path

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

/external/icu4c/i18n/
Ducol_tok.cpp1721 UColToken *lastToken = NULL; in ucol_tok_assembleTokenList() local
1753 (UBool)(lastToken == NULL), in ucol_tok_assembleTokenList()
1768 if(lastToken != NULL ) { in ucol_tok_assembleTokenList()
1769 lastStrength = lastToken->strength; in ucol_tok_assembleTokenList()
1786 if(lastToken == NULL) { /* this means that rules haven't started properly */ in ucol_tok_assembleTokenList()
1822 if(sourceToken->strength != UCOL_TOK_RESET && lastToken != sourceToken) { in ucol_tok_assembleTokenList()
1844 sourceToken->listHeader = lastToken->listHeader; in ucol_tok_assembleTokenList()
1865 lastToken = sourceToken->listHeader->first; in ucol_tok_assembleTokenList()
1866 … while(lastToken->next != NULL && lastToken->next->strength > sourceToken->strength) { in ucol_tok_assembleTokenList()
1867 lastToken = lastToken->next; in ucol_tok_assembleTokenList()
[all …]
/external/clang/lib/Lex/
DMacroInfo.cpp62 const Token &lastToken = ReplacementTokens.back(); in getDefinitionLengthSlow() local
64 SourceLocation macroEnd = lastToken.getLocation(); in getDefinitionLengthSlow()
68 assert((macroEnd.isFileID() || lastToken.is(tok::comment)) && in getDefinitionLengthSlow()
78 DefinitionLength += lastToken.getLength(); in getDefinitionLengthSlow()
/external/webkit/Source/JavaScriptCore/runtime/
DLiteralParser.cpp307 TokenType lastToken = m_lexer.currentToken().type; in parse() local
309 if (lastToken == TokComma) in parse()