HomeSort by: relevance | last modified time | path
    Searched refs:Charify (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
MacroArgs.h 121 /// preprocessor operator. If Charify is true, then it should be turned into
125 Preprocessor &PP, bool Charify,
Lexer.h 289 /// If Charify is true, this escapes the ' character instead of ".
290 static std::string Stringify(StringRef Str, bool Charify = false);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
MacroArgs.cpp 205 /// 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);
284 // If this is the charify operation and the result is not a legal character
286 if (Charify) {
TokenLexer.cpp 228 &ConcatenatedVAOPTResultToks[0], PP, VCtx.hasCharifyBefore() /*Charify*/,
386 bool Charify = CurTok.is(tok::hashat);
389 UnexpArg, PP, Charify, ExpansionLocStart, ExpansionLocEnd);
Lexer.cpp 258 std::string Lexer::Stringify(StringRef Str, bool Charify) {
260 char Quote = Charify ? '\'' : '"';

Completed in 20 milliseconds