Searched refs:Charify (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DMacroArgs.h121 /// preprocessor operator. If Charify is true, then it should be turned into
125 Preprocessor &PP, bool Charify,
H A DLexer.h285 /// If Charify is true, this escapes the ' character instead of ".
286 static std::string Stringify(StringRef Str, bool Charify = false);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DMacroArgs.cpp205 /// preprocessor operator. If Charify is true, then it should be turned into
209 Preprocessor &PP, bool Charify,
214 Tok.setKind(Charify ? tok::char_constant : tok::string_literal);
286 if (Charify) {
H A DTokenLexer.cpp228 &ConcatenatedVAOPTResultToks[0], PP, VCtx.hasCharifyBefore() /*Charify*/,
386 bool Charify = CurTok.is(tok::hashat); local
389 UnexpArg, PP, Charify, ExpansionLocStart, ExpansionLocEnd);
H A DLexer.cpp256 std::string Lexer::Stringify(StringRef Str, bool Charify) { argument
258 char Quote = Charify ? '\'' : '"';

Completed in 113 milliseconds