Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:STR

118 static void UnEscapeLexed(std::string &Str) {
119 if (Str.empty()) return;
121 char *Buffer = &Str[0], *EndBuffer = Buffer+Str.size();
141 Str.resize(BOut-Buffer);
491 #define KEYWORD(STR) \
493 if (Keyword == #STR) \
494 return lltok::kw_##STR; \
688 #define TYPEKEYWORD(STR, LLVMTY) \
690 if (Keyword == STR) { \
709 #define INSTKEYWORD(STR, Enum) \
711 if (Keyword == #STR) { \
713 return lltok::kw_##STR; \