reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
225 if (!isFirst && (Tok.hasLeadingSpace() || Tok.isAtStartOfLine())) 225 if (!isFirst && (Tok.hasLeadingSpace() || Tok.isAtStartOfLine())) 231 if (tok::isStringLiteral(Tok.getKind()) || // "foo", u8R"x(foo)x"_bar, etc. 232 Tok.is(tok::char_constant) || // 'x' 233 Tok.is(tok::wide_char_constant) || // L'x'. 234 Tok.is(tok::utf8_char_constant) || // u8'x'. 235 Tok.is(tok::utf16_char_constant) || // u'x'. 236 Tok.is(tok::utf32_char_constant)) { // U'x'. 238 std::string TokStr = PP.getSpelling(Tok, &Invalid); 243 } else if (Tok.is(tok::code_completion)) { 249 Result.resize(CurStrLen+Tok.getLength()); 252 unsigned ActualTokLen = PP.getSpelling(Tok, BufPtr, &Invalid); 261 if (ActualTokLen != Tok.getLength())