Lines Matching refs:TokenText

1208             CurrentToken->Previous->TokenText.startswith("\"\"")) {  in consumeToken()
1342 !CurrentToken->TokenText.startswith("//")) { in parseIncludeDirective()
1554 return Tok.TokenText == "goog" && Tok.Next && Tok.Next->is(tok::period) && in isClosureImportStatement()
1556 (Tok.Next->Next->TokenText == "module" || in isClosureImportStatement()
1557 Tok.Next->Next->TokenText == "provide" || in isClosureImportStatement()
1558 Tok.Next->Next->TokenText == "require" || in isClosureImportStatement()
1559 Tok.Next->Next->TokenText == "requireType" || in isClosureImportStatement()
1560 Tok.Next->Next->TokenText == "forwardDeclare") && in isClosureImportStatement()
1826 LeadingIdentifier->TokenText == Current.Next->TokenText; in isDeductionGuide()
1924 if (Current.TokenText.startswith("/*")) { in determineTokenType()
1925 if (Current.TokenText.endswith("*/")) { in determineTokenType()
1952 BeforeParen->TokenText == BeforeParen->TokenText.upper() && in determineTokenType()
3164 if ((Left.is(TT_TemplateString) && Left.TokenText.endswith("${")) || in splitPenalty()
3165 (Right.is(TT_TemplateString) && Right.TokenText.startswith("}"))) { in splitPenalty()
3259 bool is_short_annotation = Right.TokenText.size() < 10; in splitPenalty()
3664 return Style.isJavaScript() || !Left.TokenText.endswith("=*/"); in spaceRequiredBetween()
3771 (Left.TokenText == "L" || Left.TokenText == "u" || in spaceRequiredBetween()
3772 Left.TokenText == "U" || Left.TokenText == "u8" || in spaceRequiredBetween()
3773 Left.TokenText == "LR" || Left.TokenText == "uR" || in spaceRequiredBetween()
3774 Left.TokenText == "UR" || Left.TokenText == "u8R")) { in spaceRequiredBetween()
3989 if ((Left.is(TT_TemplateString) && Left.TokenText.endswith("${")) || in spaceRequiredBefore()
3990 (Right.is(TT_TemplateString) && Right.TokenText.startswith("}"))) { in spaceRequiredBefore()
4222 if (Left.is(tok::exclaim) && Left.TokenText == "not") in spaceRequiredBefore()
4224 if (Left.is(tok::tilde) && Left.TokenText == "compl") in spaceRequiredBefore()
4374 (Right.is(tok::identifier) && Right.TokenText == "_"))) { in mustBreakBefore()
4582 if (Right.is(tok::string_literal) && Right.TokenText.startswith("R\"")) { in mustBreakBefore()
4823 NonComment->TokenText == "asserts") { in canBreakBefore()
5152 llvm::errs() << " Text='" << Tok->TokenText << "'\n"; in printDebugInfo()