Searched refs:OS (Results 276 - 300 of 1115) sorted by relevance

<<11121314151617181920>>

/external/llvm/lib/DebugInfo/
H A DDWARFDebugInfoEntry.cpp23 void DWARFDebugInfoEntryMinimal::dump(raw_ostream &OS, const DWARFUnit *u, argument
32 OS << format("\n0x%8.8x: ", Offset);
37 OS.indent(indent) << tagString;
39 OS.indent(indent) << format("DW_TAG_Unknown_%x", getTag());
40 OS << format(" [%u] %c\n", abbrCode,
45 dumpAttribute(OS, u, &offset, AttrSpec.Attr, AttrSpec.Form, indent);
51 child->dump(OS, u, recurseDepth-1, indent+2);
56 OS << "Abbreviation code not found in 'debug_abbrev' class for code: "
60 OS.indent(indent) << "NULL\n";
65 void DWARFDebugInfoEntryMinimal::dumpAttribute(raw_ostream &OS, argument
[all...]
H A DDWARFDebugArangeSet.cpp92 void DWARFDebugArangeSet::dump(raw_ostream &OS) const {
93 OS << format("Address Range Header: length = 0x%8.8x, version = 0x%4.4x, ",
100 OS << format("[0x%*.*" PRIx64 " -", hex_width, hex_width, Desc.Address)
/external/llvm/lib/CodeGen/
H A DMachineFunction.cpp334 void MachineFunction::print(raw_ostream &OS, SlotIndexes *Indexes) const { argument
335 OS << "# Machine code for function " << getName() << ": ";
337 OS << (RegInfo->isSSA() ? "SSA" : "Post SSA");
339 OS << ", not tracking liveness";
341 OS << '\n';
344 FrameInfo->print(*this, OS);
348 JumpTableInfo->print(OS);
351 ConstantPool->print(OS);
356 OS << "Function Live Ins: ";
359 OS << PrintRe
[all...]
H A DMachineVerifier.cpp65 raw_ostream *OS; member in struct:__anon25778::MachineVerifier
286 OS = OutFile;
288 OS = &errs();
325 *OS << "Instruction: " << *MBBI;
380 *OS << '\n';
383 *OS << "# " << Banner << '\n';
384 MF->print(*OS, Indexes);
386 *OS << "*** Bad machine code: " << msg << " ***\n"
393 *OS << "- basic block: BB#" << MBB->getNumber()
397 *OS << " [" << Indexe
[all...]
/external/clang/lib/Analysis/
H A DCallGraph.cpp166 void CallGraph::print(raw_ostream &OS) const {
167 OS << " --- Call graph Dump --- \n";
176 OS << " Function: ";
178 OS << "< root >";
180 N->print(OS);
182 OS << " calls: ";
186 (*CI)->print(OS);
187 OS << " ";
189 OS << '\n';
191 OS
[all...]
/external/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp101 raw_fd_ostream OS(OutputFilename.data(), ErrorInfo, sys::fs::F_Text);
122 OS << "Counters:\n";
125 OS << " " << Func.Name << ":\n"
132 OS << " Block counts: [";
137 OS << (I == 1 ? "" : ", ") << Func.Counts[I];
140 OS << "]\n";
146 OS << "Functions shown: " << ShownFunctions << "\n";
147 OS << "Total functions: " << TotalFunctions << "\n";
148 OS << "Maximum function count: " << MaxFunctionCount << "\n";
149 OS << "Maximu
[all...]
/external/clang/lib/Driver/
H A DMultilib.cpp85 void Multilib::print(raw_ostream &OS) const {
88 OS << ".";
90 OS << StringRef(GCCSuffix).drop_front();
92 OS << ";";
95 OS << "@" << Flag.substr(1);
138 raw_ostream &clang::driver::operator<<(raw_ostream &OS, const Multilib &M) { argument
139 M.print(OS);
140 return OS;
311 void MultilibSet::print(raw_ostream &OS) const {
313 OS <<
331 operator <<(raw_ostream &OS, const MultilibSet &MS) argument
[all...]
/external/clang/lib/Rewrite/Frontend/
H A DInclusionRewriter.cpp42 raw_ostream &OS; ///< The destination stream for rewritten contents. member in class:__anon17971::InclusionRewriter
52 InclusionRewriter(Preprocessor &PP, raw_ostream &OS, bool ShowLineMarkers);
88 /// Initializes an InclusionRewriter with a \p PP source and \p OS destination.
89 InclusionRewriter::InclusionRewriter(Preprocessor &PP, raw_ostream &OS, argument
91 : PP(PP), SM(PP.getSourceManager()), OS(OS), PredefinesBuffer(nullptr),
108 OS << "#line" << ' ' << Line << ' ' << '"';
109 OS.write_escaped(Filename);
110 OS << '"';
114 OS << '#' << ' ' << Lin
522 RewriteIncludesInInput(Preprocessor &PP, raw_ostream *OS, const PreprocessorOutputOptions &Opts) argument
[all...]
/external/llvm/tools/llvm-readobj/
H A DARMEHABIPrinter.h30 raw_ostream &OS; member in class:llvm::ARM::EHABI::OpcodeDecoder
66 OpcodeDecoder(StreamWriter &SW) : SW(SW), OS(SW.getOStream()) {}
116 OS << '\n';
134 OS << '\n';
140 OS << '\n';
156 OS << '\n';
167 OS << format("0x%02X ", ULEB[BI]);
173 OS << format("; vsp = vsp + %" PRIu64 "\n", 0x204 + (Value << 2));
183 OS << '\n';
193 OS << '\
[all...]
H A DStreamWriter.h48 raw_ostream &operator<<(raw_ostream &OS, const HexNumber& Value);
52 StreamWriter(raw_ostream &OS) argument
53 : OS(OS)
58 OS.flush();
71 OS << " ";
182 OS << ", ";
183 OS << Item;
186 OS << "]\n";
246 return OS;
262 raw_ostream &OS; member in class:llvm::StreamWriter
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DAssertions.cpp63 #if OS(WIN)
68 #if OS(MACOSX) || (OS(LINUX) && !defined(__UCLIBC__))
74 #if OS(ANDROID)
81 #if USE(CF) && !OS(WIN)
118 #elif OS(ANDROID)
192 #if OS(WIN) && defined(_DEBUG)
229 #if OS(MACOSX) || (OS(LINUX) && !defined(__UCLIBC__))
231 #elif OS(WI
[all...]
/external/llvm/lib/Analysis/IPA/
H A DFindUsedTypes.cpp94 void FindUsedTypes::print(raw_ostream &OS, const Module *M) const { argument
95 OS << "Types in use by this module:\n";
98 OS << " " << **I << '\n';
/external/llvm/lib/MC/
H A DMCInstPrinter.cpp28 void MCInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const { argument
32 void MCInstPrinter::printAnnotation(raw_ostream &OS, StringRef Annot) { argument
41 OS << " " << MAI.getCommentString() << " " << Annot;
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCExpr.cpp78 void AArch64MCExpr::PrintImpl(raw_ostream &OS) const {
80 OS << getVariantKindName();
81 OS << *Expr;
/external/llvm/tools/llvm-as/
H A Dllvm-as.cpp105 raw_string_ostream OS(ErrorStr);
106 if (verifyModule(*M.get(), &OS)) {
109 errs() << OS.str();
/external/llvm/unittests/ADT/
H A DTwineTest.cpp20 llvm::raw_string_ostream OS(res);
21 Value.printRepr(OS);
22 return OS.str();
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DFFTFrameStub.cpp32 #if !OS(MACOSX) && !USE(WEBAUDIO_FFMPEG) && !USE(WEBAUDIO_IPP) && !USE(WEBAUDIO_OPENMAX_DL_FFT)
88 #endif // !OS(MACOSX) && !USE(WEBAUDIO_FFMPEG) && !USE(WEBAUDIO_IPP) && !USE(WEBAUDIO_OPENMAX_DL_FFT)
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DAddressSanitizer.h55 #if defined(ADDRESS_SANITIZER) && (!OS(WIN) || COMPILER(CLANG))
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
H A Dos_time.c30 * OS independent time-manipulation functions.
43 # error Unsupported OS
/external/clang/include/clang/Driver/
H A DJob.h51 /// \param OS - The stream to print on.
55 virtual void Print(llvm::raw_ostream &OS, const char *Terminator,
79 void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote,
109 void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote,
138 void Print(llvm::raw_ostream &OS, const char *Terminator,
/external/clang/include/clang/Frontend/
H A DSerializedDiagnosticPrinter.h70 DiagnosticConsumer *create(raw_ostream *OS,
/external/clang/include/clang/Sema/
H A DPrettyDeclStackTrace.h42 void print(raw_ostream &OS) const override;
/external/compiler-rt/make/
H A Dconfig.mk4 OS := $(shell uname) macro
/external/llvm/include/llvm/CodeGen/
H A DLivePhysRegs.h132 /// \brief Prints the currently live registers to @p OS.
133 void print(raw_ostream &OS) const;
139 inline raw_ostream &operator<<(raw_ostream &OS, const LivePhysRegs& LR) { argument
140 LR.print(OS);
141 return OS;
H A DVirtRegMap.h180 void print(raw_ostream &OS, const Module* M = nullptr) const override;
184 inline raw_ostream &operator<<(raw_ostream &OS, const VirtRegMap &VRM) { argument
185 VRM.print(OS);
186 return OS;

Completed in 502 milliseconds

<<11121314151617181920>>