Lines Matching refs:FormatToken
45 ArrayRef<FormatToken *> FormatTokenLexer::lex() { in lex()
119 SmallVectorImpl<FormatToken *>::const_iterator First = in tryMergeTokens()
140 bool FormatTokenLexer::precedesOperand(FormatToken *Tok) { in precedesOperand()
153 bool FormatTokenLexer::canPrecedeRegexLiteral(FormatToken *Prev) { in canPrecedeRegexLiteral()
177 FormatToken *RegexToken = Tokens.back(); in tryParseJSRegexLiteral()
181 FormatToken *Prev = nullptr; in tryParseJSRegexLiteral()
232 FormatToken *BacktickToken = Tokens.back(); in tryParseTemplateString()
271 FormatToken *Last = Tokens.back(); in tryMerge_TMacro()
275 FormatToken *String = Tokens[Tokens.size() - 2]; in tryMerge_TMacro()
282 FormatToken *Macro = Tokens[Tokens.size() - 4]; in tryMerge_TMacro()
351 FormatToken *Next = Tokens.back(); in tryMergeConflictMarkers()
367 FormatToken *FormatTokenLexer::getStashedToken() { in getStashedToken()
373 FormatTok = new (Allocator.Allocate()) FormatToken; in getStashedToken()
386 FormatToken *FormatTokenLexer::getNextToken() { in getNextToken()
396 FormatTok = new (Allocator.Allocate()) FormatToken; in getNextToken()
553 void FormatTokenLexer::readRawToken(FormatToken &Tok) { in readRawToken()