Searched refs:OS (Results 301 - 325 of 1115) sorted by relevance

<<11121314151617181920>>

/external/llvm/include/llvm/IR/
H A DConstantRange.h258 void print(raw_ostream &OS) const;
265 inline raw_ostream &operator<<(raw_ostream &OS, const ConstantRange &CR) { argument
266 CR.print(OS);
267 return OS;
/external/llvm/include/llvm/MC/
H A DMCCodeEmitter.h37 /// stream \p OS.
38 virtual void EncodeInstruction(const MCInst &Inst, raw_ostream &OS,
H A DYAML.h71 void writeAsBinary(raw_ostream &OS) const;
76 void writeAsHex(raw_ostream &OS) const;
/external/llvm/lib/Analysis/
H A DCFGPrinter.cpp37 void print(raw_ostream &OS, const Module* = nullptr) const override {}
60 void print(raw_ostream &OS, const Module* = nullptr) const override {}
94 void print(raw_ostream &OS, const Module* = nullptr) const override {}
127 void print(raw_ostream &OS, const Module* = nullptr) const override {}
H A DAliasSetTracker.cpp549 void AliasSet::print(raw_ostream &OS) const {
550 OS << " AliasSet[" << (const void*)this << ", " << RefCount << "] ";
551 OS << (AliasTy == MustAlias ? "must" : "may") << " alias, ";
553 case NoModRef: OS << "No access "; break;
554 case Refs : OS << "Ref "; break;
555 case Mods : OS << "Mod "; break;
556 case ModRef : OS << "Mod/Ref "; break;
559 if (isVolatile()) OS << "[volatile] ";
561 OS << " forwarding to " << (void*)Forward;
565 OS << "Pointer
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFTypeUnit.h29 void dump(raw_ostream &OS);
/external/llvm/lib/IR/
H A DGCOV.cpp416 void print(raw_ostream &OS) const {
418 OS << "never executed";
420 OS << "taken " << Count;
422 OS << "taken " << branchDiv(Count, Total) << "%";
430 static raw_ostream &operator<<(raw_ostream &OS, const formatBranchInfo &FBI) {
431 FBI.print(OS);
432 return OS;
452 void printNext(raw_ostream &OS, uint32_t LineNum) {
458 OS << format("%5u:", LineNum) << Line << "\n";
521 auto OS
[all...]
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFStreamer.cpp58 AArch64ELFStreamer(MCContext &Context, MCAsmBackend &TAB, raw_ostream &OS, argument
60 : MCELFStreamer(Context, TAB, OS, Emitter), MappingSymbolCounter(0),
151 raw_ostream &OS, MCCodeEmitter *Emitter,
153 AArch64ELFStreamer *S = new AArch64ELFStreamer(Context, TAB, OS, Emitter);
150 createAArch64ELFStreamer(MCContext &Context, MCAsmBackend &TAB, raw_ostream &OS, MCCodeEmitter *Emitter, bool RelaxAll, bool NoExecStack) argument
/external/llvm/lib/Target/NVPTX/
H A DNVPTXSection.h35 raw_ostream &OS,
/external/mesa3d/src/gallium/auxiliary/os/
H A Dos_time.c30 * OS independent time-manipulation functions.
43 # error Unsupported OS
/external/qemu/distrib/sdl-1.2.15/src/timer/beos/
H A DSDL_systimer.c26 #include <be/kernel/OS.h>
/external/llvm/lib/MC/
H A DMCExpr.cpp33 void MCExpr::print(raw_ostream &OS) const {
36 return cast<MCTargetExpr>(this)->PrintImpl(OS);
38 OS << cast<MCConstantExpr>(*this).getValue();
48 OS << '(' << Sym << ')';
50 OS << Sym;
54 OS << '(' << MCSymbolRefExpr::getVariantKindName(SRE.getKind()) << ')';
56 OS << '@' << MCSymbolRefExpr::getVariantKindName(SRE.getKind());
65 case MCUnaryExpr::LNot: OS << '!'; break;
66 case MCUnaryExpr::Minus: OS << '-'; break;
67 case MCUnaryExpr::Not: OS << '~'; brea
[all...]
/external/clang/lib/Analysis/
H A DCFG.cpp3880 bool handledStmt(Stmt *S, raw_ostream &OS) override {
3891 OS << "[B" << I->second.first << "." << I->second.second << "]";
3895 bool handleDecl(const Decl *D, raw_ostream &OS) { argument
3906 OS << "[B" << I->second.first << "." << I->second.second << "]";
3917 raw_ostream &OS; member in class:__anon17772::CFGBlockTerminatorPrint
3923 : OS(os), Helper(helper), Policy(Policy) {
3928 OS << "if ";
3930 C->printPretty(OS, Helper, Policy);
3935 Terminator->printPretty(OS, Helper, Policy);
3940 OS << "stati
4030 print_elem(raw_ostream &OS, StmtPrinterHelper &Helper, const CFGElement &E) argument
4144 print_block(raw_ostream &OS, const CFG* cfg, const CFGBlock &B, StmtPrinterHelper &Helper, bool print_edges, bool ShowColors) argument
4332 print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const argument
4365 print(raw_ostream &OS, const CFG* cfg, const LangOptions &LO, bool ShowColors) const argument
4373 printTerminator(raw_ostream &OS, const LangOptions &LO) const argument
[all...]
/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/Target/AArch64/
H A DAArch64AsmPrinter.cpp106 void PrintDebugValueComment(const MachineInstr *MI, raw_ostream &OS);
360 raw_ostream &OS) {
363 OS << '\t' << MAI->getCommentString() << "DEBUG_VALUE: ";
366 OS << V.getName();
367 OS << " <- ";
370 OS << '[';
371 printOperand(MI, 0, OS);
372 OS << '+';
373 printOperand(MI, 1, OS);
374 OS << ']';
359 PrintDebugValueComment(const MachineInstr *MI, raw_ostream &OS) argument
[all...]
/external/clang/lib/Frontend/
H A DTextDiagnostic.cpp46 static void applyTemplateHighlighting(raw_ostream &OS, StringRef Str, argument
50 OS << Str.slice(0, Pos);
56 OS.changeColor(templateColor, true);
58 OS.resetColor();
60 OS.changeColor(savedColor, true);
600 /// \param OS the stream to which the word-wrapping string will be
612 static bool printWordWrapped(raw_ostream &OS, StringRef Str,
639 OS << ' ';
642 applyTemplateHighlighting(OS, Str.substr(WordStart, WordLength),
650 OS << '\
[all...]
H A DLayoutOverrideSource.cpp192 raw_ostream &OS = llvm::errs(); local
196 OS << "Type: blah " << L->first() << '\n';
197 OS << " Size:" << L->second.Size << '\n';
198 OS << " Alignment:" << L->second.Align << '\n';
199 OS << " FieldOffsets: [";
202 OS << ", ";
203 OS << L->second.FieldOffsets[I];
205 OS << "]\n";
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DDenormalDisabler.h38 #if OS(WIN) && COMPILER(MSVC)
99 #elif OS(WIN) && COMPILER(MSVC)
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DByteOrder.h34 #if OS(POSIX)
38 #if OS(WIN)
60 #endif // OS(WIN)
/external/clang/lib/AST/
H A DMangle.cpp237 llvm::raw_svector_ostream OS(Name);
242 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName();
244 OS << '(' << *CID << ')';
245 OS << ' ';
246 MD->getSelector().print(OS);
247 OS << ']';
249 Out << OS.str().size() << OS.str();
/external/clang/lib/Rewrite/Frontend/
H A DFixItRewriter.cpp49 bool FixItRewriter::WriteFixedFile(FileID ID, raw_ostream &OS) { argument
52 RewriteBuf->write(OS);
53 OS.flush();
90 std::unique_ptr<llvm::raw_fd_ostream> OS; local
92 OS.reset(new llvm::raw_fd_ostream(fd, /*shouldClose=*/true));
94 OS.reset(new llvm::raw_fd_ostream(Filename.c_str(), Err,
103 RewriteBuf.write(*OS);
104 OS->flush();
/external/llvm/lib/Support/
H A DBranchProbability.cpp21 raw_ostream &BranchProbability::print(raw_ostream &OS) const {
22 return OS << N << " / " << D << " = "
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMWinCOFFObjectWriter.cpp77 MCObjectWriter *createARMWinCOFFObjectWriter(raw_ostream &OS, bool Is64Bit) { argument
79 return createWinCOFFObjectWriter(MOTW, OS);
/external/llvm/lib/Target/NVPTX/InstPrinter/
H A DNVPTXInstPrinter.h30 void printRegName(raw_ostream &OS, unsigned RegNo) const override;
31 void printInst(const MCInst *MI, raw_ostream &OS, StringRef Annot) override;
/external/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcMCExpr.h88 void PrintImpl(raw_ostream &OS) const override;
105 static bool printVariantKind(raw_ostream &OS, VariantKind Kind);

Completed in 514 milliseconds

<<11121314151617181920>>