Home | History | Annotate | Download | only in Lex

Lines Matching refs:Literal

221   // "The string literal is destringized by deleting the L prefix, if present,
269 /// is not enclosed within a string literal.
521 StringLiteralParser Literal(&StrToks[0], StrToks.size(), *this);
522 assert(Literal.isAscii() && "Didn't allow wide strings in");
523 if (Literal.hadError)
525 if (Literal.Pascal) {
530 ArgumentString = Literal.GetString();
599 StringLiteralParser Literal(&StrToks[0], StrToks.size(), *this);
600 assert(Literal.isAscii() && "Didn't allow wide strings in");
601 if (Literal.hadError)
603 if (Literal.Pascal) {
608 StringRef MessageString(Literal.GetString());
757 // We expect either a quoted string literal, or a bracketed name
1093 StringLiteralParser Literal(&StrToks[0], StrToks.size(), PP);
1094 assert(Literal.isAscii() && "Didn't allow wide strings in");
1095 if (Literal.hadError)
1097 if (Literal.Pascal) {
1102 StringRef WarningName(Literal.GetString());