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

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/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 << "{ ";
100 Out << "\"line\": " << PLoc.getLine()
104 Out << " }";
111 Out << "{ ";
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DProgramPoint.cpp50 void ProgramPoint::printJson(llvm::raw_ostream &Out, const char *NL) const { argument
57 Out << "\"kind\": \"";
60 Out << "BlockEntrance\""
67 Out << "FunctionExit\""
72 Out << RS->getID(Context) << ", \"stmt\": ";
73 RS->printJson(Out, nullptr, PP, AddQuotes);
75 Out << "null, \"stmt\": null";
83 Out << "CallEnter\"";
86 Out << "CallExitBegin\"";
89 Out << "CallExitEn
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DDiagnosticOptions.cpp19 raw_ostream &operator<<(raw_ostream &Out, DiagnosticLevelMask M) { argument
21 return Out << static_cast<UT>(M);
/freebsd-11-stable/contrib/llvm-project/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 DDynamicType.cpp139 static void printDynamicTypesJson(raw_ostream &Out, ProgramStateRef State, argument
142 Indent(Out, Space, IsDot) << "\"dynamic_types\": ";
146 Out << "null," << NL;
151 Out << '[' << NL;
155 Indent(Out, Space, IsDot)
158 Out << "null";
160 Out << '\"' << DTI.getType()->getPointeeType().getAsString()
164 Out << " }";
167 Out << ',';
168 Out << N
175 printDynamicCastsJson(raw_ostream &Out, ProgramStateRef State, const char *NL, unsigned int Space, bool IsDot) argument
222 printDynamicTypeInfoJson(raw_ostream &Out, ProgramStateRef State, const char *NL, unsigned int Space, bool IsDot) argument
[all...]
H A DChecker.cpp35 raw_ostream& clang::ento::operator<<(raw_ostream &Out, argument
37 Out << Checker.getCheckerName().getName();
38 return Out;
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp29 raw_ostream &Out; member in class:__anon240::DeclPrinter
53 DeclPrinter(raw_ostream &Out, const PrintingPolicy &Policy, argument
56 : Out(Out), Policy(Policy), Context(Context), Indentation(Indentation),
119 void Decl::print(raw_ostream &Out, unsigned Indentation, argument
121 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation);
124 void Decl::print(raw_ostream &Out, const PrintingPolicy &Policy, argument
126 DeclPrinter Printer(Out, Policy, getASTContext(), Indentation,
131 void TemplateParameterList::print(raw_ostream &Out, const ASTContext &Context, argument
133 print(Out, Contex
136 print(raw_ostream &Out, const ASTContext &Context, const PrintingPolicy &Policy, bool OmitTemplateKW) const argument
178 printGroup(Decl** Begin, unsigned NumDecls, raw_ostream &Out, const PrintingPolicy &Policy, unsigned Indentation) argument
569 printExplicitSpecifier(ExplicitSpecifier ES, llvm::raw_ostream &Out, PrintingPolicy &Policy, unsigned Indentation) argument
[all...]
H A DInheritViz.cpp35 raw_ostream &Out; member in class:__anon255::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...]
H A DItaniumMangle.cpp161 void mangleDynamicInitializer(const VarDecl *D, raw_ostream &Out) override;
163 raw_ostream &Out) override;
165 raw_ostream &Out) override;
167 raw_ostream &Out) override;
213 raw_ostream &Out; member in class:__anon258::CXXNameMangler
291 void write(raw_ostream &Out, const NamedDecl *ND, argument
326 writeSortedUniqueAbiTags(Out, TagList);
367 void writeSortedUniqueAbiTags(raw_ostream &Out, const AbiTagList &AbiTags) { argument
370 Out << "B";
371 Out << Ta
[all...]
H A DStmtViz.cpp38 llvm::raw_string_ostream Out(OutSStr);
41 Out << Node->getStmtClassName();
43 Out << "<NULL>";
45 std::string OutStr = Out.str();
/freebsd-11-stable/contrib/llvm-project/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 << "\
98 raw_ostream &Out; member in class:__anon494::ASTPrinter
135 raw_ostream &Out; member in class:__anon494::ASTDeclNodeLister
140 CreateASTPrinter(std::unique_ptr<raw_ostream> Out, StringRef FilterString) argument
147 CreateASTDumper(std::unique_ptr<raw_ostream> Out, StringRef FilterString, bool DumpDecls, bool Deserialize, bool DumpLookups, ASTDumpOutputFormat Format) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp344 static void PrintCallingConv(unsigned cc, raw_ostream &Out) { argument
346 default: Out << "cc" << cc; break;
347 case CallingConv::Fast: Out << "fastcc"; break;
348 case CallingConv::Cold: Out << "coldcc"; break;
349 case CallingConv::WebKit_JS: Out << "webkit_jscc"; break;
350 case CallingConv::AnyReg: Out << "anyregcc"; break;
351 case CallingConv::PreserveMost: Out << "preserve_mostcc"; break;
352 case CallingConv::PreserveAll: Out << "preserve_allcc"; break;
353 case CallingConv::CXX_FAST_TLS: Out << "cxx_fast_tlscc"; break;
354 case CallingConv::GHC: Out << "ghcc
1253 WriteOptimizationInfo(raw_ostream &Out, const User *U) argument
1292 WriteConstantInternal(raw_ostream &Out, const Constant *CV, TypePrinting &TypePrinter, SlotTracker *Machine, const Module *Context) argument
1555 writeMDTuple(raw_ostream &Out, const MDTuple *Node, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1596 raw_ostream &Out; member in struct:__anon1898::MDFieldPrinter
1602 MDFieldPrinter(raw_ostream &Out) argument
1603 MDFieldPrinter(raw_ostream &Out, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1664 writeMetadataAsOperand(raw_ostream &Out, const Metadata *MD, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1768 writeGenericDINode(raw_ostream &Out, const GenericDINode *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1787 writeDILocation(raw_ostream &Out, const DILocation *DL, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1802 writeDISubrange(raw_ostream &Out, const DISubrange *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1816 writeDIEnumerator(raw_ostream &Out, const DIEnumerator *N, TypePrinting *, SlotTracker *, const Module *) argument
1831 writeDIBasicType(raw_ostream &Out, const DIBasicType *N, TypePrinting *, SlotTracker *, const Module *) argument
1846 writeDIDerivedType(raw_ostream &Out, const DIDerivedType *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1869 writeDICompositeType(raw_ostream &Out, const DICompositeType *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1894 writeDISubroutineType(raw_ostream &Out, const DISubroutineType *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1906 writeDIFile(raw_ostream &Out, const DIFile *N, TypePrinting *, SlotTracker *, const Module *) argument
1922 writeDICompileUnit(raw_ostream &Out, const DICompileUnit *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1951 writeDISubprogram(raw_ostream &Out, const DISubprogram *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1978 writeDILexicalBlock(raw_ostream &Out, const DILexicalBlock *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1990 writeDILexicalBlockFile(raw_ostream &Out, const DILexicalBlockFile *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2004 writeDINamespace(raw_ostream &Out, const DINamespace *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2015 writeDICommonBlock(raw_ostream &Out, const DICommonBlock *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2028 writeDIMacro(raw_ostream &Out, const DIMacro *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2040 writeDIMacroFile(raw_ostream &Out, const DIMacroFile *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2051 writeDIModule(raw_ostream &Out, const DIModule *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2065 writeDITemplateTypeParameter(raw_ostream &Out, const DITemplateTypeParameter *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2077 writeDITemplateValueParameter(raw_ostream &Out, const DITemplateValueParameter *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2092 writeDIGlobalVariable(raw_ostream &Out, const DIGlobalVariable *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2111 writeDILocalVariable(raw_ostream &Out, const DILocalVariable *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2127 writeDILabel(raw_ostream &Out, const DILabel *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2139 writeDIExpression(raw_ostream &Out, const DIExpression *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2165 writeDIGlobalVariableExpression(raw_ostream &Out, const DIGlobalVariableExpression *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2177 writeDIObjCProperty(raw_ostream &Out, const DIObjCProperty *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2192 writeDIImportedEntity(raw_ostream &Out, const DIImportedEntity *N, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2206 WriteMDNodeBodyInternal(raw_ostream &Out, const MDNode *Node, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2228 WriteAsOperandInternal(raw_ostream &Out, const Value *V, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
2306 WriteAsOperandInternal(raw_ostream &Out, const Metadata *MD, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context, bool FromValue) argument
2357 formatted_raw_ostream &Out; member in class:__anon1899::AssemblyWriter
3148 printMetadataIdentifier(StringRef Name, formatted_raw_ostream &Out) argument
3194 PrintVisibility(GlobalValue::VisibilityTypes Vis, formatted_raw_ostream &Out) argument
3203 PrintDSOLocation(const GlobalValue &GV, formatted_raw_ostream &Out) argument
3213 PrintDLLStorageClass(GlobalValue::DLLStorageClassTypes SCT, formatted_raw_ostream &Out) argument
3222 PrintThreadLocalModel(GlobalVariable::ThreadLocalMode TLM, formatted_raw_ostream &Out) argument
3254 maybePrintComdat(formatted_raw_ostream &Out, const GlobalObject &GO) argument
3649 maybePrintCallAddrSpace(const Value *Operand, const Instruction *I, raw_ostream &Out) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DVersionTuple.cpp21 llvm::raw_string_ostream Out(Result);
22 Out << *this;
27 raw_ostream &llvm::operator<<(raw_ostream &Out, const VersionTuple &V) { argument
28 Out << V.getMajor();
30 Out << '.' << *Minor;
32 Out << '.' << *Subminor;
34 Out << '.' << *Build;
35 return Out;
H A DStringExtras.cpp60 void llvm::printEscapedString(StringRef Name, raw_ostream &Out) { argument
64 Out << '\\' << C;
66 Out << C;
68 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
72 void llvm::printHTMLEscaped(StringRef String, raw_ostream &Out) { argument
75 Out << "&amp;";
77 Out << "&lt;";
79 Out << "&gt;";
81 Out << "&quot;";
83 Out << "
89 printLowerCase(StringRef String, raw_ostream &Out) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/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...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp61 llvm::raw_svector_ostream Out; member in class:__anon543::USRGenerator
71 Out(Buf),
77 Out << getUSRSpacePrefix();
116 Out << "@UD@";
144 generateUSRForObjCClass(cls, Out, ExtSymDefinedIn,
151 generateUSRForObjCCategory(cls, cat, Out, clsExt, catExt);
156 generateUSRForObjCProperty(prop, isClassProp, Out);
161 generateUSRForObjCProtocol(prot, Out, ext);
181 D->printName(Out);
212 Out << (is
621 printQualifier(llvm::raw_ostream &Out, ASTContext &Ctx, NestedNameSpecifier *NNS) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.h26 Buffer &Out);
28 Buffer &Out);
30 object::ELFObjectFileBase &In, Buffer &Out);
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangTypeNodesEmitter.cpp78 raw_ostream &Out; member in class:__anon960::TypeNodeEmitter
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";
167 Out << macroName << "(" << type.getId() << ", "
178 Out << "#ifdef " LastTypeMacroName "\n"
185 Out << "#ifdef " LeafTypeMacroName "\n";
189 Out << LeafTypeMacroNam
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedPointee.cpp37 virtual void printNoteMsg(llvm::raw_ostream &Out) const override {
39 Out << "uninitialized pointee ";
41 Out << "uninitialized pointer ";
44 virtual void printPrefix(llvm::raw_ostream &Out) const override {}
46 virtual void printNode(llvm::raw_ostream &Out) const override {
47 Out << getVariableName(getDecl());
50 virtual void printSeparator(llvm::raw_ostream &Out) const override {
52 Out << "->";
54 Out << '.';
67 virtual void printNoteMsg(llvm::raw_ostream &Out) cons
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A Dyaml2obj.cpp21 bool convertYAML(yaml::Input &YIn, raw_ostream &Out, ErrorHandler ErrHandler, argument
36 return yaml2elf(*Doc.Elf, Out, ErrHandler);
38 return yaml2coff(*Doc.Coff, Out, ErrHandler);
40 return yaml2macho(Doc, Out, ErrHandler);
42 return yaml2minidump(*Doc.Minidump, Out, ErrHandler);
44 return yaml2wasm(*Doc.Wasm, Out, ErrHandler);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A Dyaml2obj.h49 bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
50 bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
51 bool yaml2macho(YamlObjectFile &Doc, raw_ostream &Out, ErrorHandler EH);
52 bool yaml2minidump(MinidumpYAML::Object &Doc, raw_ostream &Out,
54 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
56 bool convertYAML(Input &YIn, raw_ostream &Out, ErrorHandler ErrHandler,
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwp/
H A DDWPStringPool.h33 MCStreamer &Out; member in class:llvm::DWPStringPool
39 DWPStringPool(MCStreamer &Out, MCSection *Sec) : Out(Out), Sec(Sec) {} argument
46 Out.SwitchSection(Sec);
47 Out.EmitBytes(StringRef(Str, Length));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DArchiveWriter.cpp145 static void print(raw_ostream &Out, object::Archive::Kind Kind, T Val) { argument
146 support::endian::write(Out, Val,
151 raw_ostream &Out, const sys::TimePoint<std::chrono::seconds> &ModTime,
153 printWithSpacePadding(Out, sys::toTimeT(ModTime), 12);
157 printWithSpacePadding(Out, UID % 1000000, 6);
158 printWithSpacePadding(Out, GID % 1000000, 6);
160 printWithSpacePadding(Out, format("%o", Perms), 8);
161 printWithSpacePadding(Out, Size, 10);
162 Out << "`\n";
166 printGNUSmallMemberHeader(raw_ostream &Out, StringRe argument
150 printRestOfMemberHeader( raw_ostream &Out, const sys::TimePoint<std::chrono::seconds> &ModTime, unsigned UID, unsigned GID, unsigned Perms, uint64_t Size) argument
175 printBSDMemberHeader(raw_ostream &Out, uint64_t Pos, StringRef Name, const sys::TimePoint<std::chrono::seconds> &ModTime, unsigned UID, unsigned GID, unsigned Perms, uint64_t Size) argument
209 printMemberHeader(raw_ostream &Out, uint64_t Pos, raw_ostream &StringTable, StringMap<uint64_t> &MemberNames, object::Archive::Kind Kind, bool Thin, const NewArchiveMember &M, sys::TimePoint<std::chrono::seconds> ModTime, uint64_t Size) argument
276 printNBits(raw_ostream &Out, object::Archive::Kind Kind, uint64_t Val) argument
284 writeSymbolTable(raw_ostream &Out, object::Archive::Kind Kind, bool Deterministic, ArrayRef<MemberData> Members, StringRef StringTable) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-modextract/
H A Dllvm-modextract.cpp56 std::unique_ptr<ToolOutputFile> Out(
66 Out->os() << Result;
67 Out->keep();
72 WriteBitcodeToFile(*M, Out->os());
74 Out->keep();

Completed in 274 milliseconds

1234567891011>>