Home | History | Annotate | Download | only in Lex

Lines Matching refs:Out

130   llvm::raw_ostream &Out = llvm::errs();
133 Out << "MacroInfo " << this;
134 if (IsBuiltinMacro) Out << " builtin";
135 if (IsDisabled) Out << " disabled";
136 if (IsUsed) Out << " used";
138 Out << " allow_redefinitions_without_warning";
139 if (IsWarnIfUnused) Out << " warn_if_unused";
140 if (FromASTFile) Out << " imported";
141 if (UsedForHeaderGuard) Out << " header_guard";
143 Out << "\n #define <macro>";
145 Out << "(";
147 if (I) Out << ", ";
148 Out << ArgumentList[I]->getName();
151 if (NumArguments && IsC99Varargs) Out << ", ";
152 Out << "...";
154 Out << ")";
162 Out << " ";
166 Out << Punc;
168 Out << StringRef(Tok.getLiteralData(), Tok.getLength());
170 Out << II->getName();
172 Out << Tok.getName();
213 llvm::raw_ostream &Out = llvm::errs();
216 case MD_Define: Out << "DefMacroDirective"; break;
217 case MD_Undefine: Out << "UndefMacroDirective"; break;
218 case MD_Visibility: Out << "VisibilityMacroDirective"; break;
220 Out << " " << this;
223 Out << " prev " << Prev;
224 if (IsFromPCH) Out << " from_pch";
227 Out << (IsPublic ? " public" : " private");
231 Out << "\n ";
235 Out << "\n";