Searched defs:OS (Results 201 - 225 of 343) sorted by relevance

1234567891011>>

/external/llvm/utils/TableGen/
H A DPseudoLoweringEmitter.cpp298 void EmitPseudoLowering(RecordKeeper &RK, raw_ostream &OS) { argument
299 PseudoLoweringEmitter(RK).run(OS);
/external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
H A DSIMCCodeEmitter.cpp73 /// EncodeInstruction - Encode the instruction and write it to the OS.
74 virtual void EncodeInstruction(const MCInst &MI, raw_ostream &OS,
131 void SIMCCodeEmitter::EncodeInstruction(const MCInst &MI, raw_ostream &OS, argument
136 OS.write((uint8_t) ((Encoding >> (8 * i)) & 0xff));
/external/chromium_org/third_party/zlib/
H A Dinflate.h24 OS, /* i: waiting for extra flags and operating system (gzip) */ enumerator in enum:__anon16405
62 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME -> COMMENT ->
/external/chromium_org/tools/site_compare/
H A Dsite_compare.py22 import drivers # Functions for driving keyboard/mouse/windows, OS-specific namespace
/external/clang/lib/AST/
H A DDeclarationName.cpp136 raw_ostream &operator<<(raw_ostream &OS, DeclarationName N) { argument
140 OS << II->getName();
141 return OS;
146 N.getObjCSelector().print(OS);
147 return OS;
152 return OS << *ClassRec->getDecl();
155 return OS << ClassType.getAsString(PrintingPolicy(LO));
159 OS << '~';
162 return OS << *Rec->getDecl();
165 return OS << Typ
[all...]
H A DNestedNameSpecifier.cpp225 NestedNameSpecifier::print(raw_ostream &OS, argument
228 getPrefix()->print(OS, Policy);
232 OS << getAsIdentifier()->getName();
239 OS << getAsNamespace()->getName();
243 OS << getAsNamespaceAlias()->getName();
250 OS << "template ";
272 SpecType->getTemplateName().print(OS, InnerPolicy, true);
276 OS, SpecType->getArgs(), SpecType->getNumArgs(), InnerPolicy);
279 QualType(T, 0).print(OS, InnerPolicy);
285 OS << "
[all...]
/external/clang/lib/CodeGen/
H A DBackendUtil.cpp106 bool AddEmitPasses(BackendAction Action, formatted_raw_ostream &OS);
129 void EmitAssembly(BackendAction Action, raw_ostream *OS);
489 formatted_raw_ostream &OS) {
521 if (TM->addPassesToEmitFile(*PM, OS, CGFT,
530 void EmitAssemblyHelper::EmitAssembly(BackendAction Action, raw_ostream *OS) { argument
548 getPerModulePasses()->add(createBitcodeWriterPass(*OS));
552 FormattedOS.setStream(*OS, formatted_raw_ostream::PRESERVE_STREAM);
557 FormattedOS.setStream(*OS, formatted_raw_ostream::PRESERVE_STREAM);
595 raw_ostream *OS) {
598 AsmHelper.EmitAssembly(Action, OS);
488 AddEmitPasses(BackendAction Action, formatted_raw_ostream &OS) argument
590 EmitBackendOutput(DiagnosticsEngine &Diags, const CodeGenOptions &CGOpts, const clang::TargetOptions &TOpts, const LangOptions &LOpts, StringRef TDesc, Module *M, BackendAction Action, raw_ostream *OS) argument
[all...]
/external/clang/lib/Frontend/
H A DDependencyFile.cpp284 static void PrintFilename(raw_ostream &OS, StringRef Filename) { argument
287 OS << '\\';
289 OS << '$';
290 OS << Filename[i];
301 llvm::raw_fd_ostream OS(OutputFile.c_str(), Err, llvm::sys::fs::F_Text);
322 OS << " \\\n ";
325 OS << ' ';
328 OS << *I;
331 OS << ':';
343 OS << " \\\
[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/include/llvm/Analysis/
H A DAliasSetTracker.h179 void print(raw_ostream &OS) const;
275 inline raw_ostream& operator<<(raw_ostream &OS, const AliasSet &AS) { argument
276 AS.print(OS);
277 return OS;
401 void print(raw_ostream &OS) const;
431 inline raw_ostream& operator<<(raw_ostream &OS, const AliasSetTracker &AST) { argument
432 AST.print(OS);
433 return OS;
H A DLazyCallGraph.h554 raw_ostream &OS; member in class:llvm::LazyCallGraphPrinterPass
557 explicit LazyCallGraphPrinterPass(raw_ostream &OS);
H A DLoopInfoImpl.h319 void LoopBase<BlockT, LoopT>::print(raw_ostream &OS, unsigned Depth) const { argument
320 OS.indent(Depth*2) << "Loop at depth " << getLoopDepth()
324 if (i) OS << ",";
326 BB->printAsOperand(OS, false);
327 if (BB == getHeader()) OS << "<header>";
328 if (BB == getLoopLatch()) OS << "<latch>";
329 if (isLoopExiting(BB)) OS << "<exiting>";
331 OS << "\n";
334 (*I)->print(OS, Depth+2);
537 void LoopInfoBase<BlockT, LoopT>::print(raw_ostream &OS) cons
[all...]
H A DRegionInfo.h138 inline raw_ostream &operator<<(raw_ostream &OS, const RegionNode &Node);
370 /// @param OS The output stream the Region is printed to.
373 void print(raw_ostream& OS, bool printTree = true, unsigned level = 0,
679 void print(raw_ostream &OS, const Module *) const override;
756 inline raw_ostream &operator<<(raw_ostream &OS, const RegionNode &Node) { argument
758 return OS << Node.getNodeAs<Region>()->getNameStr();
760 return OS << Node.getNodeAs<BasicBlock>()->getName();
/external/llvm/include/llvm/CodeGen/
H A DLiveInterval.h500 void print(raw_ostream &OS) const;
521 inline raw_ostream &operator<<(raw_ostream &OS, const LiveRange &LR) { argument
522 LR.print(OS);
523 return OS;
558 void print(raw_ostream &OS) const;
566 inline raw_ostream &operator<<(raw_ostream &OS, const LiveInterval &LI) { argument
567 LI.print(OS);
568 return OS;
571 raw_ostream &operator<<(raw_ostream &OS, const LiveRange::Segment &S);
635 inline raw_ostream &operator<<(raw_ostream &OS, cons argument
[all...]
H A DMachineTraceMetrics.h378 inline raw_ostream &operator<<(raw_ostream &OS, argument
380 Tr.print(OS);
381 return OS;
384 inline raw_ostream &operator<<(raw_ostream &OS, argument
386 En.print(OS);
387 return OS;
/external/llvm/include/llvm/MC/
H A DMCInst.h142 void print(raw_ostream &OS, const MCAsmInfo *MAI) const;
181 void print(raw_ostream &OS, const MCAsmInfo *MAI) const;
187 void dump_pretty(raw_ostream &OS, const MCAsmInfo *MAI = nullptr,
192 inline raw_ostream& operator<<(raw_ostream &OS, const MCOperand &MO) { argument
193 MO.print(OS, nullptr);
194 return OS;
197 inline raw_ostream& operator<<(raw_ostream &OS, const MCInst &MI) { argument
198 MI.print(OS, nullptr);
199 return OS;
/external/llvm/include/llvm/Support/
H A Draw_ostream.h432 std::string &OS; member in class:llvm::raw_string_ostream
439 uint64_t current_pos() const override { return OS.size(); }
441 explicit raw_string_ostream(std::string &O) : OS(O) {}
448 return OS;
456 SmallVectorImpl<char> &OS; member in class:llvm::raw_svector_ostream
/external/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp43 raw_ostream &BlockMass::print(raw_ostream &OS) const {
45 OS << getHexDigit(Mass >> (60 - Digits * 4) & 0xf);
46 return OS;
529 BlockFrequencyInfoImplBase::printBlockFreq(raw_ostream &OS, argument
531 return OS << getFloatingBlockFreq(Node);
535 BlockFrequencyInfoImplBase::printBlockFreq(raw_ostream &OS, argument
540 return OS << Block / Entry;
H A DBranchProbabilityInfo.cpp526 void BranchProbabilityInfo::print(raw_ostream &OS, const Module *) const { argument
527 OS << "---- Branch Probabilities ----\n";
535 printEdgeProbability(OS << " ", BI, *SI);
653 BranchProbabilityInfo::printEdgeProbability(raw_ostream &OS, argument
658 OS << "edge " << Src->getName() << " -> " << Dst->getName()
662 return OS;
H A DCostModel.cpp59 void print(raw_ostream &OS, const Module*) const override;
521 void CostModelAnalysis::print(raw_ostream &OS, const Module*) const { argument
530 OS << "Cost Model: Found an estimated cost of " << Cost;
532 OS << "Cost Model: Unknown cost";
534 OS << " for instruction: "<< *Inst << "\n";
H A DLazyCallGraph.cpp685 LazyCallGraphPrinterPass::LazyCallGraphPrinterPass(raw_ostream &OS) : OS(OS) {} argument
687 static void printNodes(raw_ostream &OS, LazyCallGraph::Node &N, argument
692 printNodes(OS, ChildN, Printed);
694 OS << " Call edges in function: " << N.getFunction().getName() << "\n";
696 OS << " -> " << I->getFunction().getName() << "\n";
698 OS << "\n";
701 static void printSCC(raw_ostream &OS, LazyCallGraph::SCC &SCC) { argument
703 OS << " SC
[all...]
H A DLoopInfo.cpp709 void LoopInfo::print(raw_ostream &OS, const Module*) const { argument
710 LI.print(OS);
/external/llvm/lib/MC/
H A DMCELFStreamer.cpp545 raw_ostream &OS, MCCodeEmitter *CE,
547 MCELFStreamer *S = new MCELFStreamer(Context, MAB, OS, CE);
544 createELFStreamer(MCContext &Context, MCAsmBackend &MAB, raw_ostream &OS, MCCodeEmitter *CE, bool RelaxAll, bool NoExecStack) argument
/external/llvm/lib/Option/
H A DOptTable.cpp324 static void PrintHelpOptionList(raw_ostream &OS, StringRef Title, argument
327 OS << Title << ":\n";
346 OS.indent(InitialPad) << Option;
350 OS << "\n";
353 OS.indent(Pad + 1) << OptionHelp[i].second << '\n';
375 void OptTable::PrintHelp(raw_ostream &OS, const char *Name, const char *Title, argument
377 PrintHelp(OS, Name, Title, /*Include*/ 0, /*Exclude*/
382 void OptTable::PrintHelp(raw_ostream &OS, const char *Name, const char *Title, argument
385 OS << "OVERVIEW: " << Title << "\n";
386 OS << '\
[all...]
/external/llvm/lib/Support/
H A DSourceMgr.cpp128 void SourceMgr::PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const {
134 PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS);
136 OS << "Included from "
205 void SourceMgr::PrintMessage(raw_ostream &OS, const SMDiagnostic &Diagnostic, argument
216 PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS);
219 Diagnostic.print(nullptr, OS, ShowColors);
222 void SourceMgr::PrintMessage(raw_ostream &OS, SMLoc Loc, argument
226 PrintMessage(OS, GetMessage(Loc, Kind, Msg, Ranges, FixIts), ShowColors);
344 // Display colors only if OS supports colors.

Completed in 6513 milliseconds

1234567891011>>