Lines Matching defs:UnparseVisitor
28 class UnparseVisitor {
30 UnparseVisitor(llvm::raw_ostream &out, int indentationAmount,
3156 void UnparseVisitor::Put(char ch) {
3193 void UnparseVisitor::Put(const char *str) {
3199 void UnparseVisitor::Put(const std::string &str) {
3205 void UnparseVisitor::PutNormalized(const std::string &str) {
3211 void UnparseVisitor::PutKeywordLetter(char ch) {
3219 void UnparseVisitor::Word(const char *str) {
3225 void UnparseVisitor::Word(const std::string &str) { Word(str.c_str()); }
3227 void UnparseVisitor::Word(const std::string_view &str) {
3237 UnparseVisitor visitor{out, 1, encoding, capitalizeKeywords, backslashEscapes,