Lines Matching defs:keyword
2246 /// Print the given string as a keyword, or a quoted and escaped string if it
2248 static void printKeywordOrString(StringRef keyword, raw_ostream &os) {
2250 if (isBareIdentifier(keyword)) {
2251 os << keyword;
2255 // Otherwise, output the keyword wrapped in quotes with proper escaping.
2257 printEscapedString(keyword, os);
2764 // Print the 'attributes' keyword if necessary.
2894 void AsmPrinter::printKeywordOrString(StringRef keyword) {
2896 ::printKeywordOrString(keyword, impl->getStream());
2899 void AsmPrinter::printString(StringRef keyword) {
2902 printEscapedString(keyword, getStream());