Lines Matching refs:FormatToken
28 llvm::SpecificBumpPtrAllocator<FormatToken> &Allocator, in FormatTokenLexer()
79 ArrayRef<FormatToken *> FormatTokenLexer::lex() { in lex()
563 SmallVectorImpl<FormatToken *>::const_iterator First = in tryMergeTokens()
576 SmallVectorImpl<FormatToken *>::const_iterator First = Tokens.end() - Count; in tryMergeTokens()
602 bool FormatTokenLexer::precedesOperand(FormatToken *Tok) { in precedesOperand()
615 bool FormatTokenLexer::canPrecedeRegexLiteral(FormatToken *Prev) { in canPrecedeRegexLiteral()
641 FormatToken *RegexToken = Tokens.back(); in tryParseJSRegexLiteral()
645 FormatToken *Prev = nullptr; in tryParseJSRegexLiteral()
646 for (FormatToken *FT : llvm::drop_begin(llvm::reverse(Tokens))) { in tryParseJSRegexLiteral()
755 FormatToken *CSharpStringLiteral = Tokens.back(); in handleCSharpVerbatimAndInterpolatedStrings()
817 FormatToken *MultiLineString = Tokens.back(); in handleTableGenMultilineString()
848 FormatToken *Tok = Tokens.back(); in handleTableGenNumericLikeIdentifier()
886 FormatToken *BacktickToken = Tokens.back(); in handleTemplateStrings()
952 FormatToken *HashToken = Tokens.back(); in tryParsePythonComment()
975 FormatToken *Last = Tokens.back(); in tryMerge_TMacro()
979 FormatToken *String = Tokens[Tokens.size() - 2]; in tryMerge_TMacro()
986 FormatToken *Macro = Tokens[Tokens.size() - 4]; in tryMerge_TMacro()
1055 FormatToken *Next = Tokens.back(); in tryMergeConflictMarkers()
1071 FormatToken *FormatTokenLexer::getStashedToken() { in getStashedToken()
1077 FormatTok = new (Allocator.Allocate()) FormatToken; in getStashedToken()
1142 FormatToken *FormatTokenLexer::getNextToken() { in getNextToken()
1148 FormatTok = new (Allocator.Allocate()) FormatToken; in getNextToken()
1420 void FormatTokenLexer::readRawToken(FormatToken &Tok) { in readRawToken()