Lines Matching refs:TokenText
61 return FormatTok.is(tok::comment) && !FormatTok.TokenText.startswith("/*"); in isLineComment()
596 if (I->Tok->TokenText != "goog") in isGoogScope()
602 if (I->Tok->TokenText != "scope") in isGoogScope()
747 if (!IfDef && (FormatTok->is(tok::kw_false) || FormatTok->TokenText == "0")) in parsePPIf()
749 if (IfDef && !IfNDef && FormatTok->TokenText == "SWIG") in parsePPIf()
810 IncludeGuardToken->TokenText == FormatTok->TokenText) { in parsePPDefine()
942 Previous->is(TT_TemplateString) && Previous->TokenText.endswith("${"); in readTokenWithJavaScriptASI()
957 Next->is(TT_TemplateString) && Next->TokenText.startswith("}"); in readTokenWithJavaScriptASI()
1330 StringRef Text = FormatTok->TokenText; in parseStructuralElement()
2117 FormatTok->TokenText != FormatTok->TokenText.upper(); in parseRecord()
2422 StringRef IndentContent = FormatTok.TokenText; in continuesLineCommentSection()
2423 if (FormatTok.TokenText.startswith("//") || in continuesLineCommentSection()
2424 FormatTok.TokenText.startswith("/*")) in continuesLineCommentSection()
2425 IndentContent = FormatTok.TokenText.substr(2); in continuesLineCommentSection()