Lines Matching refs:TokenText

1277             !CurrentToken->TokenText.startswith("//")) {  in parseIncludeDirective()
1488 return Tok.TokenText == "goog" && Tok.Next && Tok.Next->is(tok::period) && in isClosureImportStatement()
1490 (Tok.Next->Next->TokenText == "module" || in isClosureImportStatement()
1491 Tok.Next->Next->TokenText == "provide" || in isClosureImportStatement()
1492 Tok.Next->Next->TokenText == "require" || in isClosureImportStatement()
1493 Tok.Next->Next->TokenText == "requireType" || in isClosureImportStatement()
1494 Tok.Next->Next->TokenText == "forwardDeclare") && in isClosureImportStatement()
1770 LeadingIdentifier->TokenText == Current.Next->TokenText; in isDeductionGuide()
1868 if (Current.TokenText.startswith("/*")) { in determineTokenType()
1869 if (Current.TokenText.endswith("*/")) { in determineTokenType()
1896 BeforeParen->TokenText == BeforeParen->TokenText.upper() && in determineTokenType()
3053 if ((Left.is(TT_TemplateString) && Left.TokenText.endswith("${")) || in splitPenalty()
3054 (Right.is(TT_TemplateString) && Right.TokenText.startswith("}"))) { in splitPenalty()
3147 bool is_short_annotation = Right.TokenText.size() < 10; in splitPenalty()
3537 return Style.isJavaScript() || !Left.TokenText.endswith("=*/"); in spaceRequiredBetween()
3643 (Left.TokenText == "L" || Left.TokenText == "u" || in spaceRequiredBetween()
3644 Left.TokenText == "U" || Left.TokenText == "u8" || in spaceRequiredBetween()
3645 Left.TokenText == "LR" || Left.TokenText == "uR" || in spaceRequiredBetween()
3646 Left.TokenText == "UR" || Left.TokenText == "u8R")) { in spaceRequiredBetween()
3858 if ((Left.is(TT_TemplateString) && Left.TokenText.endswith("${")) || in spaceRequiredBefore()
3859 (Right.is(TT_TemplateString) && Right.TokenText.startswith("}"))) { in spaceRequiredBefore()
4051 if (Left.is(tok::exclaim) && Left.TokenText == "not") in spaceRequiredBefore()
4053 if (Left.is(tok::tilde) && Left.TokenText == "compl") in spaceRequiredBefore()
4203 (Right.is(tok::identifier) && Right.TokenText == "_"))) { in mustBreakBefore()
4397 if (Right.is(tok::string_literal) && Right.TokenText.startswith("R\"")) { in mustBreakBefore()
4638 NonComment->TokenText == "asserts") { in canBreakBefore()
4960 llvm::errs() << " Text='" << Tok->TokenText << "'\n"; in printDebugInfo()