Lines Matching refs:TokenText

52        << ", OC=" << I->Tok->OriginalColumn << ", \"" << I->Tok->TokenText
724 Length -= OpeningBrace->TokenText.size() + 1;
729 Length -= FirstToken->TokenText.size() + 1;
929 if (I->Tok->TokenText != "goog")
935 if (I->Tok->TokenText != "scope")
1095 if (!IfDef && (FormatTok->is(tok::kw_false) || FormatTok->TokenText == "0"))
1097 if (IfDef && !IfNDef && FormatTok->TokenText == "SWIG")
1158 IncludeGuardToken->TokenText == FormatTok->TokenText) {
1355 !FormatTok->TokenText.starts_with("//")) {
1393 Previous->is(TT_TemplateString) && Previous->TokenText.ends_with("${");
1407 Next->is(TT_TemplateString) && Next->TokenText.starts_with("}");
2007 StringRef Text = FormatTok->TokenText;
3999 return Tok->is(tok::identifier) && Tok->TokenText != Tok->TokenText.upper();
4626 StringRef IndentContent = FormatTok.TokenText;
4627 if (FormatTok.TokenText.starts_with("//") ||
4628 FormatTok.TokenText.starts_with("/*")) {
4629 IndentContent = FormatTok.TokenText.substr(2);
4897 Macros.defined(FormatTok->TokenText) &&
4919 llvm::dbgs() << "Macro call: " << ID->TokenText << "(";
4924 llvm::dbgs() << T->TokenText << " ";
4929 if (Macros.objectLike(ID->TokenText) && Args &&
4930 !Macros.hasArity(ID->TokenText, Args->size())) {
4937 << "Macro \"" << ID->TokenText
4944 assert(!Args && Macros.objectLike(ID->TokenText));
4946 if ((!Args && Macros.objectLike(ID->TokenText)) ||
4947 (Args && Macros.hasArity(ID->TokenText, Args->size()))) {
4959 llvm::dbgs() << T->TokenText << " ";
4964 llvm::dbgs() << "Did not expand macro \"" << ID->TokenText