Lines Matching refs:TokenText

75        << ", OC=" << I->Tok->OriginalColumn << ", \"" << I->Tok->TokenText  in printLine()
116 return FormatTok.is(tok::comment) && !FormatTok.TokenText.startswith("/*"); in isLineComment()
323 << "] Token: " << Tok->Tok.getName() << " / " << Tok->TokenText in dbgToken()
840 Length -= OpeningBrace->TokenText.size() + 1; in mightFitOnOneLine()
845 Length -= FirstToken->TokenText.size() + 1; in mightFitOnOneLine()
1039 if (I->Tok->TokenText != "goog") in isGoogScope()
1045 if (I->Tok->TokenText != "scope") in isGoogScope()
1206 if (!IfDef && (FormatTok->is(tok::kw_false) || FormatTok->TokenText == "0")) in parsePPIf()
1208 if (IfDef && !IfNDef && FormatTok->TokenText == "SWIG") in parsePPIf()
1269 IncludeGuardToken->TokenText == FormatTok->TokenText) { in parsePPDefine()
1462 !FormatTok->TokenText.startswith("//")) { in parseModuleImport()
1500 Previous->is(TT_TemplateString) && Previous->TokenText.endswith("${"); in readTokenWithJavaScriptASI()
1514 Next->is(TT_TemplateString) && Next->TokenText.startswith("}"); in readTokenWithJavaScriptASI()
2039 StringRef Text = FormatTok->TokenText; in parseStructuralElement()
3877 FormatTok->TokenText != FormatTok->TokenText.upper(); in parseRecord()
4387 StringRef IndentContent = FormatTok.TokenText; in continuesLineCommentSection()
4388 if (FormatTok.TokenText.startswith("//") || in continuesLineCommentSection()
4389 FormatTok.TokenText.startswith("/*")) { in continuesLineCommentSection()
4390 IndentContent = FormatTok.TokenText.substr(2); in continuesLineCommentSection()