Searched refs:Out (Results 1 - 25 of 420) sorted by relevance

1234567891011>>

/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DMacroBuilder.h24 raw_ostream &Out; member in class:clang::MacroBuilder
26 MacroBuilder(raw_ostream &Output) : Out(Output) {}
30 Out << "#define " << Name << ' ' << Value << '\n';
36 Out << "#undef " << Name << '\n';
41 Out << Str << '\n';
H A DJsonSupport.h20 inline raw_ostream &Indent(raw_ostream &Out, const unsigned int Space, argument
23 Out << (IsDot ? "&nbsp;" : " ");
24 return Out;
81 inline void printSourceLocationAsJson(raw_ostream &Out, SourceLocation Loc, argument
86 Out << "null";
94 Out << "null";
99 Out << "{ ";
113 Out << "\"line\": " << PLoc.getLine()
117 Out << " }";
124 Out << "{ ";
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Analysis/
H A DProgramPoint.cpp51 void ProgramPoint::printJson(llvm::raw_ostream &Out, const char *NL) const { argument
58 Out << "\"kind\": \"";
61 Out << "BlockEntrance\""
68 Out << "FunctionExit\""
73 Out << RS->getID(Context) << ", \"stmt\": ";
74 RS->printJson(Out, nullptr, PP, AddQuotes);
76 Out << "null, \"stmt\": null";
84 Out << "CallEnter\"";
87 Out << "CallExitBegin\"";
90 Out << "CallExitEn
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/benchmark/src/
H A Dcsv_reporter.cc46 std::ostream& Out = GetOutputStream(); local
58 Out << *B++;
59 if (B != elements.end()) Out << ",";
62 Out << ",\"" << *B++ << "\"";
64 Out << "\n";
87 std::ostream& Out = GetOutputStream(); local
93 Out << '"' << name << "\",";
95 Out << std::string(elements.size() - 3, ',');
96 Out << "true,";
99 Out << '"' << ms
[all...]
H A Dreporter.cc36 auto &Out = *out; local
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) << ")";
54 Out << "\n";
59 Out << "***WARNING*** CPU scaling is enabled, the benchmark "
65 Out << "***WARNIN
[all...]
/netbsd-current/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
H A Dcsv_reporter.cc46 std::ostream& Out = GetOutputStream(); local
60 Out << *B++;
61 if (B != elements.end()) Out << ",";
65 Out << ",\"" << *B++ << "\"";
67 Out << "\n";
91 std::ostream& Out = GetOutputStream(); local
97 Out << '"' << name << "\",";
99 Out << std::string(elements.size() - 3, ',');
100 Out << "true,";
103 Out << '"' << ms
[all...]
H A Dreporter.cc37 auto &Out = *out; local
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) << ")";
55 Out << "\n";
59 Out << "Load Average: ";
61 Out << StrForma
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Basic/
H A DDiagnosticOptions.cpp19 raw_ostream &operator<<(raw_ostream &Out, DiagnosticLevelMask M) { argument
21 return Out << static_cast<UT>(M);
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DPrettyStackTraceLocationContext.h35 void print(raw_ostream &Out) const override {
36 Out << "While analyzing stack: \n";
37 LCtx->dumpStack(Out);
H A DCheckerRegistryData.cpp26 CmdLineOption::dumpToStream(llvm::raw_ostream &Out) const {
29 Out << OptionName << " (" << OptionType << ", "
48 LLVM_DUMP_METHOD void CheckerInfo::dumpToStream(llvm::raw_ostream &Out) const {
51 Out << FullName << " (" << toString(State) << (IsHidden ? ", hidden" : "")
53 Out << " Options:\n";
55 Out << " ";
56 Option.dumpToStream(Out);
57 Out << '\n';
59 Out << " Dependencies:\n";
61 Out << " " << Dependenc
122 printCheckerWithDescList( const AnalyzerOptions &AnOpts, raw_ostream &Out, size_t MaxNameChars) const argument
[all...]
H A DDynamicType.cpp192 static raw_ostream &printJson(const MemRegion *Region, raw_ostream &Out, argument
194 return Out << "\"region\": \"" << Region << "\"";
197 static raw_ostream &printJson(const SymExpr *Symbol, raw_ostream &Out, argument
199 return Out << "\"symbol\": \"" << Symbol << "\"";
202 static raw_ostream &printJson(const DynamicTypeInfo &DTI, raw_ostream &Out, argument
204 Out << "\"dyn_type\": ";
206 Out << "null";
212 Out << '\"' << ToPrint.getAsString() << "\", \"sub_classable\": "
215 return Out;
218 static raw_ostream &printJson(const DynamicCastInfo &DCI, raw_ostream &Out, argument
226 printJson(const std::pair<T, U> &Pair, raw_ostream &Out, const char *NL, unsigned int Space, bool IsDot) argument
233 printJsonContainer(const ContainerTy &Container, raw_ostream &Out, const char *NL, unsigned int Space, bool IsDot) argument
257 printJson(const CastSet &Set, raw_ostream &Out, const char *NL, unsigned int Space, bool IsDot) argument
264 printJsonImpl(raw_ostream &Out, ProgramStateRef State, const char *Name, const char *NL, unsigned int Space, bool IsDot, bool PrintEvenIfEmpty = true) argument
275 printDynamicTypesJson(raw_ostream &Out, ProgramStateRef State, const char *NL, unsigned int Space, bool IsDot) argument
281 printDynamicCastsJson(raw_ostream &Out, ProgramStateRef State, const char *NL, unsigned int Space, bool IsDot) argument
287 printClassObjectDynamicTypesJson(raw_ostream &Out, ProgramStateRef State, const char *NL, unsigned int Space, bool IsDot) argument
298 printDynamicTypeInfoJson(raw_ostream &Out, ProgramStateRef State, const char *NL, unsigned int Space, bool IsDot) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclPrinter.cpp29 raw_ostream &Out; member in class:__anon309::DeclPrinter
53 DeclPrinter(raw_ostream &Out, const PrintingPolicy &Policy, argument
56 : Out(Out), Policy(Policy), Context(Context), Indentation(Indentation),
125 void Decl::print(raw_ostream &Out, unsigned Indentation, argument
127 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation);
130 void Decl::print(raw_ostream &Out, const PrintingPolicy &Policy, argument
132 DeclPrinter Printer(Out, Policy, getASTContext(), Indentation,
137 void TemplateParameterList::print(raw_ostream &Out, const ASTContext &Context, argument
139 print(Out, Contex
142 print(raw_ostream &Out, const ASTContext &Context, const PrintingPolicy &Policy, bool OmitTemplateKW) const argument
184 printGroup(Decl** Begin, unsigned NumDecls, raw_ostream &Out, const PrintingPolicy &Policy, unsigned Indentation) argument
576 printExplicitSpecifier(ExplicitSpecifier ES, llvm::raw_ostream &Out, PrintingPolicy &Policy, unsigned Indentation, const ASTContext &Context) argument
[all...]
H A DInheritViz.cpp35 raw_ostream &Out; member in class:__anon332::InheritanceHierarchyWriter
40 InheritanceHierarchyWriter(ASTContext& Context, raw_ostream& Out) argument
41 : Context(Context), Out(Out) { }
44 Out << "digraph \"" << llvm::DOT::EscapeString(Type.getAsString())
47 Out << "}\n";
75 Out << " ";
80 Out << " [ shape=\"box\", label=\"" << llvm::DOT::EscapeString(TypeName);
86 Out << "\\n(" << CanonType.getAsString() << ")";
90 Out << " \"];\
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DArchiveEmitter.cpp20 bool yaml2archive(ArchYAML::Archive &Doc, raw_ostream &Out, ErrorHandler EH) { argument
21 Out.write(Doc.Magic.data(), Doc.Magic.size());
24 Doc.Content->writeAsBinary(Out);
32 Out.write(Field.data(), Field.size());
34 Out.write(' ');
42 C.Content->writeAsBinary(Out);
44 Out.write(*C.PaddingByte);
H A Dyaml2obj.cpp21 bool convertYAML(yaml::Input &YIn, raw_ostream &Out, ErrorHandler ErrHandler, argument
36 return yaml2archive(*Doc.Arch, Out, ErrHandler);
38 return yaml2elf(*Doc.Elf, Out, ErrHandler, MaxSize);
40 return yaml2coff(*Doc.Coff, Out, ErrHandler);
42 return yaml2macho(Doc, Out, ErrHandler);
44 return yaml2minidump(*Doc.Minidump, Out, ErrHandler);
46 return yaml2wasm(*Doc.Wasm, Out, ErrHandler);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DAsmWriter.cpp355 static void PrintCallingConv(unsigned cc, raw_ostream &Out) { argument
357 default: Out << "cc" << cc; break;
358 case CallingConv::Fast: Out << "fastcc"; break;
359 case CallingConv::Cold: Out << "coldcc"; break;
360 case CallingConv::WebKit_JS: Out << "webkit_jscc"; break;
361 case CallingConv::AnyReg: Out << "anyregcc"; break;
362 case CallingConv::PreserveMost: Out << "preserve_mostcc"; break;
363 case CallingConv::PreserveAll: Out << "preserve_allcc"; break;
364 case CallingConv::CXX_FAST_TLS: Out << "cxx_fast_tlscc"; break;
365 case CallingConv::GHC: Out << "ghcc
478 PrintShuffleMask(raw_ostream &Out, Type *Ty, ArrayRef<int> Mask) argument
1305 WriteOptimizationInfo(raw_ostream &Out, const User *U) argument
1344 WriteConstantInternal(raw_ostream &Out, const Constant *CV, TypePrinting &TypePrinter, SlotTracker *Machine, const Module *Context) argument
1636 writeMDTuple(raw_ostream &Out, const MDTuple *Node, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1677 raw_ostream &Out; member in struct:__anon1971::MDFieldPrinter
1683 MDFieldPrinter(raw_ostream &Out) argument
1684 MDFieldPrinter(raw_ostream &Out, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1747 writeMetadataAsOperand(raw_ostream &Out, const Metadata *MD, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1860 writeGenericDINode(raw_ostream &Out, const GenericDINode *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1879 writeDILocation(raw_ostream &Out, const DILocation *DL, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1894 writeDISubrange(raw_ostream &Out, const DISubrange *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1936 writeDIGenericSubrange(raw_ostream &Out, const DIGenericSubrange *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1990 writeDIEnumerator(raw_ostream &Out, const DIEnumerator *N, TypePrinting *, SlotTracker *, const Module *) argument
2002 writeDIBasicType(raw_ostream &Out, const DIBasicType *N, TypePrinting *, SlotTracker *, const Module *) argument
2017 writeDIStringType(raw_ostream &Out, const DIStringType *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2034 writeDIDerivedType(raw_ostream &Out, const DIDerivedType *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2057 writeDICompositeType(raw_ostream &Out, const DICompositeType *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2090 writeDISubroutineType(raw_ostream &Out, const DISubroutineType *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2102 writeDIFile(raw_ostream &Out, const DIFile *N, TypePrinting *, SlotTracker *, const Module *) argument
2118 writeDICompileUnit(raw_ostream &Out, const DICompileUnit *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2149 writeDISubprogram(raw_ostream &Out, const DISubprogram *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2176 writeDILexicalBlock(raw_ostream &Out, const DILexicalBlock *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2188 writeDILexicalBlockFile(raw_ostream &Out, const DILexicalBlockFile *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2202 writeDINamespace(raw_ostream &Out, const DINamespace *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2213 writeDICommonBlock(raw_ostream &Out, const DICommonBlock *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2226 writeDIMacro(raw_ostream &Out, const DIMacro *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2238 writeDIMacroFile(raw_ostream &Out, const DIMacroFile *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2249 writeDIModule(raw_ostream &Out, const DIModule *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2266 writeDITemplateTypeParameter(raw_ostream &Out, const DITemplateTypeParameter *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2279 writeDITemplateValueParameter(raw_ostream &Out, const DITemplateValueParameter *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2295 writeDIGlobalVariable(raw_ostream &Out, const DIGlobalVariable *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2314 writeDILocalVariable(raw_ostream &Out, const DILocalVariable *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2330 writeDILabel(raw_ostream &Out, const DILabel *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2342 writeDIExpression(raw_ostream &Out, const DIExpression *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2368 writeDIArgList(raw_ostream &Out, const DIArgList *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context, bool FromValue = false) argument
2383 writeDIGlobalVariableExpression(raw_ostream &Out, const DIGlobalVariableExpression *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2395 writeDIObjCProperty(raw_ostream &Out, const DIObjCProperty *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2410 writeDIImportedEntity(raw_ostream &Out, const DIImportedEntity *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2424 WriteMDNodeBodyInternal(raw_ostream &Out, const MDNode *Node, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2446 WriteAsOperandInternal(raw_ostream &Out, const Value *V, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2526 WriteAsOperandInternal(raw_ostream &Out, const Metadata *MD, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context, bool FromValue) argument
2581 formatted_raw_ostream &Out; member in class:__anon1972::AssemblyWriter
3433 printMetadataIdentifier(StringRef Name, formatted_raw_ostream &Out) argument
3481 PrintVisibility(GlobalValue::VisibilityTypes Vis, formatted_raw_ostream &Out) argument
3490 PrintDSOLocation(const GlobalValue &GV, formatted_raw_ostream &Out) argument
3496 PrintDLLStorageClass(GlobalValue::DLLStorageClassTypes SCT, formatted_raw_ostream &Out) argument
3505 PrintThreadLocalModel(GlobalVariable::ThreadLocalMode TLM, formatted_raw_ostream &Out) argument
3537 maybePrintComdat(formatted_raw_ostream &Out, const GlobalObject &GO) argument
3932 maybePrintCallAddrSpace(const Value *Operand, const Instruction *I, raw_ostream &Out) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/
H A DWriter.h22 Writer(Object &Obj, raw_ostream &Out) : Obj(Obj), Out(Out) {} argument
28 raw_ostream &Out; member in class:llvm::objcopy::wasm::Writer
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DVersionTuple.cpp24 llvm::raw_string_ostream Out(Result);
25 Out << *this;
30 raw_ostream &llvm::operator<<(raw_ostream &Out, const VersionTuple &V) { argument
31 Out << V.getMajor();
33 Out << '.' << *Minor;
35 Out << '.' << *Subminor;
37 Out << '.' << *Build;
38 return Out;
H A DStringExtras.cpp62 void llvm::printEscapedString(StringRef Name, raw_ostream &Out) { argument
66 Out << '\\' << C;
68 Out << C;
70 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
74 void llvm::printHTMLEscaped(StringRef String, raw_ostream &Out) { argument
77 Out << "&amp;";
79 Out << "&lt;";
81 Out << "&gt;";
83 Out << "&quot;";
85 Out << "
91 printLowerCase(StringRef String, raw_ostream &Out) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dminidump2yaml.cpp16 Error minidump2yaml(raw_ostream &Out, const object::MinidumpFile &Obj) { argument
20 yaml::Output Output(Out);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Lex/
H A DMacroInfo.cpp133 llvm::raw_ostream &Out = llvm::errs(); local
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 << "(";
216 llvm::raw_ostream &Out = llvm::errs(); local
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/utils/TableGen/
H A DClangASTPropertiesEmitter.cpp90 raw_ostream &Out; member in class:__anon1198::ASTPropsEmitter
98 : Out(out), Records(records) {
362 Out << "template <class Property" << suffix << ">\n"
368 Out << " Abstract" << info.HierarchyName << suffix
374 Out << " " << info.ResultType << " " << info.MethodPrefix << "(";
376 Out << NodeClass::getASTIdTypeName() << " kind";
378 Out << "const " << info.HierarchyName << " *node";
379 Out << ") {\n"
382 Out << "kind";
384 Out << "nod
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/src/
H A Dmsgunfmt.cs35 private TextWriter Out; field in class:GNU.Gettext.DumpResource
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
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/
H A DASTConsumers.cpp37 ASTPrinter(std::unique_ptr<raw_ostream> Out, Kind K, argument
40 : Out(Out ? *Out : llvm::outs()), OwnedOut(std::move(Out)),
57 bool ShowColors = Out.has_colors();
59 Out.changeColor(raw_ostream::BLUE);
60 Out << (OutputKind != Print ? "Dumping " : "Printing ") << getName(D)
63 Out.resetColor();
65 Out << "\
112 raw_ostream &Out; member in class:__anon613::ASTPrinter
152 raw_ostream &Out; member in class:__anon613::ASTDeclNodeLister
157 CreateASTPrinter(std::unique_ptr<raw_ostream> Out, StringRef FilterString) argument
164 CreateASTDumper(std::unique_ptr<raw_ostream> Out, StringRef FilterString, bool DumpDecls, bool Deserialize, bool DumpLookups, bool DumpDeclTypes, ASTDumpOutputFormat Format) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
H A Dyaml2obj.h53 bool yaml2archive(ArchYAML::Archive &Doc, raw_ostream &Out, ErrorHandler EH);
54 bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
55 bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH,
57 bool yaml2macho(YamlObjectFile &Doc, raw_ostream &Out, ErrorHandler EH);
58 bool yaml2minidump(MinidumpYAML::Object &Doc, raw_ostream &Out,
60 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
62 bool convertYAML(Input &YIn, raw_ostream &Out, ErrorHandler ErrHandler,

Completed in 1651 milliseconds

1234567891011>>