Searched refs:StrTok (Results 1 - 3 of 3) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/clang/lib/Lex/
H A DPPDirectives.cpp1200 Token StrTok; local
1201 Lex(StrTok);
1203 // If the StrTok is "eod", then it wasn't present. Otherwise, it must be a
1205 if (StrTok.is(tok::eod))
1207 else if (StrTok.isNot(tok::string_literal)) {
1208 Diag(StrTok, diag::err_pp_line_invalid_filename);
1211 } else if (StrTok.hasUDSuffix()) {
1212 Diag(StrTok, diag::err_invalid_string_udl);
1217 StringLiteralParser Literal(StrTok, *this);
1224 Diag(StrTok, dia
1432 Token StrTok; local
[all...]
H A DPragma.cpp247 Token StrTok = Tok; local
263 std::string StrVal = getSpelling(StrTok);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DAsmParser.cpp5779 const AsmToken StrTok = getTok(); local
5781 if (StrTok.isNot(AsmToken::String) || StrTok.getString().front() != '"')
5785 llvm::outs() << StrTok.getStringContents() << '\n';

Completed in 206 milliseconds