Lines Matching refs:FormatToken

28     llvm::SpecificBumpPtrAllocator<FormatToken> &Allocator,  in FormatTokenLexer()
79 ArrayRef<FormatToken *> FormatTokenLexer::lex() { in lex()
525 SmallVectorImpl<FormatToken *>::const_iterator First = in tryMergeTokens()
538 SmallVectorImpl<FormatToken *>::const_iterator First = Tokens.end() - Count; in tryMergeTokens()
564 bool FormatTokenLexer::precedesOperand(FormatToken *Tok) { in precedesOperand()
577 bool FormatTokenLexer::canPrecedeRegexLiteral(FormatToken *Prev) { in canPrecedeRegexLiteral()
603 FormatToken *RegexToken = Tokens.back(); in tryParseJSRegexLiteral()
607 FormatToken *Prev = nullptr; in tryParseJSRegexLiteral()
608 for (FormatToken *FT : llvm::drop_begin(llvm::reverse(Tokens))) { in tryParseJSRegexLiteral()
717 FormatToken *CSharpStringLiteral = Tokens.back(); in handleCSharpVerbatimAndInterpolatedStrings()
779 FormatToken *MultiLineString = Tokens.back(); in handleTableGenMultilineString()
810 FormatToken *Tok = Tokens.back(); in handleTableGenNumericLikeIdentifier()
848 FormatToken *BacktickToken = Tokens.back(); in handleTemplateStrings()
914 FormatToken *HashToken = Tokens.back(); in tryParsePythonComment()
937 FormatToken *Last = Tokens.back(); in tryMerge_TMacro()
941 FormatToken *String = Tokens[Tokens.size() - 2]; in tryMerge_TMacro()
948 FormatToken *Macro = Tokens[Tokens.size() - 4]; in tryMerge_TMacro()
1017 FormatToken *Next = Tokens.back(); in tryMergeConflictMarkers()
1033 FormatToken *FormatTokenLexer::getStashedToken() { in getStashedToken()
1039 FormatTok = new (Allocator.Allocate()) FormatToken; in getStashedToken()
1104 FormatToken *FormatTokenLexer::getNextToken() { in getNextToken()
1110 FormatTok = new (Allocator.Allocate()) FormatToken; in getNextToken()
1382 void FormatTokenLexer::readRawToken(FormatToken &Tok) { in readRawToken()