| /src/external/apache2/llvm/dist/clang/tools/apinotes-test/ |
| APINotesTest.cpp | 35 auto Out = std::make_unique<llvm::ToolOutputFile>(OutputFileName, EC, 51 Out->os());
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/ |
| Writer.h | 22 Writer(Object &Obj, raw_ostream &Out) : Obj(Obj), Out(Out) {} 28 raw_ostream &Out;
|
| /src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| MacroBuilder.h | 24 raw_ostream &Out; 26 MacroBuilder(raw_ostream &Output) : Out(Output) {} 30 Out << "#define " << Name << ' ' << Value << '\n'; 36 Out << "#undef " << Name << '\n'; 41 Out << Str << '\n';
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/ |
| llvm-mca.cpp | 250 auto Out = std::make_unique<ToolOutputFile>(OutputFilename, EC, 253 return std::move(Out); 550 // Create a basic pipeline simulating an out-of-order backend.
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| YAMLOutputStyle.h | 42 llvm::yaml::Output Out;
|
| /src/external/apache2/llvm/dist/llvm/tools/opt/ |
| BreakpointPrinter.cpp | 25 raw_ostream &Out; 28 BreakpointPrinter(raw_ostream &out) : ModulePass(ID), Out(out) {} 55 Out << Name << "\n"; 69 ModulePass *llvm::createBreakpointPrinter(raw_ostream &out) { 70 return new BreakpointPrinter(out);
|
| PassPrinters.cpp | 33 raw_ostream &Out; 37 FunctionPassPrinter(const PassInfo *PI, raw_ostream &out) 38 : FunctionPass(ID), PassToPrint(PI), Out(out) { 44 Out << "Printing analysis '" << PassToPrint->getPassName() 48 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out, F.getParent()); 65 raw_ostream &Out; 68 CallGraphSCCPassPrinter(const PassInfo *PI, raw_ostream &out) 69 : CallGraphSCCPass(ID), PassToPrint(PI), Out(out) { [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| InheritViz.cpp | 27 /// InheritanceHierarchyWriter - Helper class that writes out a 35 raw_ostream &Out; 40 InheritanceHierarchyWriter(ASTContext& Context, raw_ostream& Out) 41 : Context(Context), Out(Out) { } 44 Out << "digraph \"" << llvm::DOT::EscapeString(Type.getAsString()) 47 Out << "}\n"; 51 /// WriteNode - Write out the description of node in the inheritance 55 /// WriteNodeReference - Write out a reference to the given node, 75 Out << " "; [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/ |
| HTMLPrint.cpp | 33 std::unique_ptr<raw_ostream> Out; 40 : Out(std::move(OS)), PP(pp), SyntaxHighlight(_SyntaxHighlight), 90 Out->write(Buffer.get(), RewriteBuf.size());
|
| FrontendActions.cpp | 205 std::weak_ptr<raw_ostream> Out; 210 RewriteImportsListener(CompilerInstance &CI, std::shared_ptr<raw_ostream> Out) 211 : CI(CI), Out(Out) {} 230 auto OS = Out.lock();
|
| /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/ |
| csv_reporter.cc | 46 std::ostream& Out = GetOutputStream(); 60 Out << *B++; 61 if (B != elements.end()) Out << ","; 65 Out << ",\"" << *B++ << "\""; 67 Out << "\n"; 91 std::ostream& Out = GetOutputStream(); 97 Out << '"' << name << "\","; 99 Out << std::string(elements.size() - 3, ','); 100 Out << "true,"; 103 Out << '"' << msg << "\"\n" [all...] |
| reporter.cc | 34 void BenchmarkReporter::PrintBasicContext(std::ostream *out, 36 CHECK(out) << "cannot be null"; 37 auto &Out = *out; 39 Out << LocalDateTimeString() << "\n"; 42 Out << "Running " << context.executable_name << "\n"; 45 Out << "Run on (" << info.num_cpus << " X " 49 Out << "CPU Caches:\n"; 51 Out << " L" << CInfo.level << " " << CInfo.type << " " 54 Out << " (x" << (info.num_cpus / CInfo.num_sharing) << ")" [all...] |
| console_reporter.cc | 93 static void IgnoreColorPrint(std::ostream& out, LogColor, const char* fmt, 97 out << FormatString(fmt, args); 118 auto& Out = GetOutputStream(); 123 printer(Out, name_color, "%-*s ", name_field_width_, 127 printer(Out, COLOR_RED, "ERROR OCCURRED: \'%s\'", 129 printer(Out, COLOR_DEFAULT, "\n"); 141 printer(Out, COLOR_YELLOW, "%10.2f %-4s %10.2f %-4s ", real_time, big_o.c_str(), 144 printer(Out, COLOR_YELLOW, "%10.0f %-4s %10.0f %-4s ", real_time * 100, "%", 148 printer(Out, COLOR_YELLOW, "%s %-4s %s %-4s ", real_time_str.c_str(), timeLabel, 153 printer(Out, COLOR_CYAN, "%10lld", result.iterations) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-dwp/ |
| DWPStringPool.h | 33 MCStreamer &Out; 39 DWPStringPool(MCStreamer &Out, MCSection *Sec) : Out(Out), Sec(Sec) {} 46 Out.SwitchSection(Sec); 47 Out.emitBytes(StringRef(Str, Length));
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/ |
| Writer.h | 27 raw_ostream &Out; 55 COFFWriter(Object &Obj, raw_ostream &Out) 56 : Obj(Obj), Out(Out), StrTabBuilder(StringTableBuilder::WinCOFF) {}
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/ |
| MachOWriter.h | 27 raw_ostream &Out; 38 void writeSectionInLoadCommand(const Section &Sec, uint8_t *&Out); 56 raw_ostream &Out) 58 PageSize(PageSize), Out(Out), LayoutBuilder(O, Is64Bit, PageSize) {}
|
| /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/ |
| csv_reporter.cc | 46 std::ostream& Out = GetOutputStream(); 58 Out << *B++; 59 if (B != elements.end()) Out << ","; 62 Out << ",\"" << *B++ << "\""; 64 Out << "\n"; 87 std::ostream& Out = GetOutputStream(); 93 Out << '"' << name << "\","; 95 Out << std::string(elements.size() - 3, ','); 96 Out << "true,"; 99 Out << '"' << msg << "\"\n" [all...] |
| reporter.cc | 33 void BenchmarkReporter::PrintBasicContext(std::ostream *out, 35 CHECK(out) << "cannot be null"; 36 auto &Out = *out; 38 Out << LocalDateTimeString() << "\n"; 41 Out << "Running " << context.executable_name << "\n"; 44 Out << "Run on (" << info.num_cpus << " X " 48 Out << "CPU Caches:\n"; 50 Out << " L" << CInfo.level << " " << CInfo.type << " " 53 Out << " (x" << (info.num_cpus / CInfo.num_sharing) << ")" [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/src/ |
| msgunfmt.cs | 35 private TextWriter Out; 38 Out.Write('"'); 42 Out.Write('\\'); Out.Write('b'); 44 Out.Write('\\'); Out.Write('f'); 46 Out.Write('\\'); Out.Write('n'); 48 Out.Write('\\'); Out.Write('r') [all...] |
| /src/sys/external/bsd/acpica/dist/utilities/ |
| utmisc.c | 40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 143 } Out; 156 Out.Bytes[0] = In.Bytes[3]; 157 Out.Bytes[1] = In.Bytes[2]; 158 Out.Bytes[2] = In.Bytes[1]; 159 Out.Bytes[3] = In.Bytes[0]; 161 return (Out.Value);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| MipsCCState.cpp | 123 ISD::OutputArg Out = Outs[i]; 125 originalEVTTypeIsVectorFloat(Out.ArgVT));
|
| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerIO.cpp | 65 FILE *Out = fopen(Path.c_str(), "w"); 66 if (!Out) return; 67 fwrite(U.data(), sizeof(U[0]), U.size(), Out); 68 fclose(Out);
|
| /src/external/apache2/llvm/dist/clang/lib/Lex/ |
| MacroInfo.cpp | 133 llvm::raw_ostream &Out = llvm::errs(); 136 Out << "MacroInfo " << this; 137 if (IsBuiltinMacro) Out << " builtin"; 138 if (IsDisabled) Out << " disabled"; 139 if (IsUsed) Out << " used"; 141 Out << " allow_redefinitions_without_warning"; 142 if (IsWarnIfUnused) Out << " warn_if_unused"; 143 if (UsedForHeaderGuard) Out << " header_guard"; 145 Out << "\n #define <macro>"; 147 Out << "("; [all...] |
| /src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| ClangTypeNodesEmitter.cpp | 78 raw_ostream &Out; 83 TypeNodeEmitter(RecordKeeper &records, raw_ostream &out) 84 : Records(records), Out(out), 107 emitSourceFileHeader("An x-macro database of Clang type nodes", Out); 129 Out << "#ifndef " << macroName << "\n"; 130 Out << "# define " << macroName << args 132 Out << "#endif\n"; 145 // Figure out which macro to use. 167 Out << macroName << "(" << type.getId() << ", [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| ImportedFunctionsInliningStatistics.cpp | 108 std::string Out; 109 Out.reserve(5000); 110 raw_string_ostream Ostream(Out); 170 dbgs() << Out;
|