Searched defs:OS (Results 76 - 100 of 343) sorted by relevance

1234567891011>>

/external/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCObjectWriter.cpp111 MCObjectWriter *llvm::createSystemZObjectWriter(raw_ostream &OS, argument
114 return createELFObjectWriter(MOTW, OS, /*IsLittleEndian=*/false);
/external/llvm/lib/Target/XCore/InstPrinter/
H A DXCoreInstPrinter.cpp28 void XCoreInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const { argument
29 OS << StringRef(getRegisterName(RegNo)).lower();
48 static void printExpr(const MCExpr *Expr, raw_ostream &OS) { argument
63 OS << SRE->getSymbol();
67 OS << '+';
68 OS << Offset;
/external/llvm/tools/llvm-dis/
H A Dllvm-dis.cpp57 static void printDebugLoc(const DebugLoc &DL, formatted_raw_ostream &OS) { argument
58 OS << DL.getLine() << ":" << DL.getCol();
62 OS << "@";
63 printDebugLoc(IDL,OS);
70 formatted_raw_ostream &OS) override {
71 OS << "; [#uses=" << F->getNumUses() << ']'; // Output # uses
72 OS << '\n';
74 void printInfoComment(const Value &V, formatted_raw_ostream &OS) override {
77 OS.PadToColumn(50);
79 OS << "; [#use
[all...]
/external/valgrind/main/tests/
H A Dos_test.c6 // This program determines which OS that this Valgrind installation
10 // - 0 if the machine matches the asked-for OS and satisfies a
12 // - 1 if it doesn't match but does match the name of another OS
13 // - 2 if it doesn't match the name of any OS
16 // Nb: When updating this file for a new OS, add the name to
57 static Bool go(char* OS, char *min_version) argument
60 if ( 0 == strcmp( OS, "linux" ) && matches_version( min_version )) return True;
63 if ( 0 == strcmp( OS, "darwin" ) ) return True;
66 # error Unknown OS
79 fprintf( stderr, "usage: os_test <OS
[all...]
/external/chromium_org/chrome/tools/build/
H A Drepack_locales.py30 OS = None variable
32 # Note that OS is normally set to 'linux' when building for chromeos.
57 if OS == 'mac' or OS == 'ios':
101 if OS != 'ios':
115 if ENABLE_AUTOFILL_DIALOG and OS != 'ios' and OS != 'android':
130 # to the OS != 'ios' and OS != 'android' section below.
189 global OS
[all...]
/external/clang/include/clang/Frontend/
H A DLogDiagnosticPrinter.h43 void EmitDiagEntry(llvm::raw_ostream &OS,
46 raw_ostream &OS; member in class:clang::LogDiagnosticPrinter
60 LogDiagnosticPrinter(raw_ostream &OS, DiagnosticOptions *Diags,
/external/clang/lib/AST/
H A DTemplateName.cpp128 TemplateName::print(raw_ostream &OS, const PrintingPolicy &Policy, argument
131 OS << *Template;
134 QTN->getQualifier()->print(OS, Policy);
136 OS << "template ";
137 OS << *QTN->getDecl();
140 DTN->getQualifier()->print(OS, Policy);
141 OS << "template ";
144 OS << DTN->getIdentifier()->getName();
146 OS << "operator " << getOperatorSpelling(DTN->getOperator());
149 subst->getReplacement().print(OS, Polic
[all...]
/external/clang/lib/Basic/
H A DSourceLocation.cpp26 void PrettyStackTraceLoc::print(raw_ostream &OS) const {
28 Loc.print(OS, SM);
29 OS << ": ";
31 OS << Message << '\n';
38 void SourceLocation::print(raw_ostream &OS, const SourceManager &SM)const{ argument
40 OS << "<invalid loc>";
48 OS << "<invalid>";
52 OS << PLoc.getFilename() << ':' << PLoc.getLine()
57 SM.getExpansionLoc(*this).print(OS, SM);
59 OS << " <Spellin
[all...]
/external/clang/lib/Frontend/
H A DDependencyGraph.cpp40 raw_ostream &writeNodeReference(raw_ostream &OS,
92 DependencyGraphCallback::writeNodeReference(raw_ostream &OS, argument
94 OS << "header_" << Node->getUID();
95 return OS;
100 llvm::raw_fd_ostream OS(OutputFile.c_str(), Err, llvm::sys::fs::F_Text);
107 OS << "digraph \"dependencies\" {\n";
112 OS.indent(2);
113 writeNodeReference(OS, AllFiles[I]);
114 OS << " [ shape=\"box\", label=\"";
119 OS << DO
[all...]
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 DTextDiagnosticPrinter.cpp30 : OS(os), DiagOpts(diags),
36 delete &OS;
42 TextDiag.reset(new TextDiagnostic(OS, LO, &*DiagOpts));
52 /// (via OS). Each relevant option is comma separated and all are enclosed in
54 static void printDiagnosticOptions(raw_ostream &OS, argument
62 OS << " [-ferror-limit=]";
78 OS << " [-Werror";
84 OS << (Started ? "," : " [")
88 OS << "=" << OptValue;
98 OS << (Starte
[all...]
/external/clang/lib/Rewrite/Frontend/
H A DFrontendActions.cpp35 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
36 return CreateHTMLPrinter(OS, CI.getPreprocessor());
155 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile, "cpp")) {
157 return CreateModernObjCRewriter(InFile, OS,
162 return CreateObjCRewriter(InFile, OS,
171 raw_ostream *OS = CI.createDefaultOutputFile(true, getCurrentFile()); local
172 if (!OS) return;
174 RewriteMacrosInInput(CI.getPreprocessor(), OS);
179 raw_ostream *OS = CI.createDefaultOutputFile(false, getCurrentFile()); local
180 if (!OS) retur
187 raw_ostream *OS = CI.createDefaultOutputFile(true, getCurrentFile()); local
[all...]
/external/clang/test/SemaCXX/
H A Dfor-range-dereference.cpp81 OverloadedStar OS; local
82 for (auto i : *OS) { }
84 for (auto i : OS) { } // expected-error {{invalid range expression of type 'OverloadedStar'; did you mean to dereference it with '*'?}}
/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 DMachineConstantPool.h64 inline raw_ostream &operator<<(raw_ostream &OS, argument
66 V.print(OS);
67 return OS;
168 void print(raw_ostream &OS) const;
/external/llvm/include/llvm/MC/MCParser/
H A DMCParsedAsmOperand.h72 virtual void print(raw_ostream &OS) const = 0;
80 inline raw_ostream& operator<<(raw_ostream &OS, const MCParsedAsmOperand &MO) { argument
81 MO.print(OS);
82 return OS;
/external/llvm/include/llvm/MC/
H A DMCSymbol.h152 /// print - Print the value to the stream \p OS.
153 void print(raw_ostream &OS) const;
159 inline raw_ostream &operator<<(raw_ostream &OS, const MCSymbol &Sym) { argument
160 Sym.print(OS);
161 return OS;
/external/llvm/include/llvm/Support/
H A DBranchProbability.h49 raw_ostream &print(raw_ostream &OS) const;
83 inline raw_ostream &operator<<(raw_ostream &OS, const BranchProbability &Prob) { argument
84 return Prob.print(OS);
/external/llvm/lib/CodeGen/
H A DGCMetadata.cpp30 raw_ostream &OS; member in class:__anon25747::Printer
33 explicit Printer(raw_ostream &OS) : FunctionPass(ID), OS(OS) {} argument
110 FunctionPass *llvm::createGCInfoPrinter(raw_ostream &OS) { argument
111 return new Printer(OS);
140 OS << "GC roots for " << FD->getFunction().getName() << ":\n";
143 OS << "\t" << RI->Num << "\t" << RI->StackOffset << "[sp]\n";
145 OS << "GC safe points for " << FD->getFunction().getName() << ":\n";
149 OS << "\
[all...]
H A DLiveIntervalUnion.cpp82 LiveIntervalUnion::print(raw_ostream &OS, const TargetRegisterInfo *TRI) const { argument
84 OS << " empty\n";
88 OS << " [" << SI.start() << ' ' << SI.stop() << "):"
91 OS << '\n';
/external/llvm/lib/IR/
H A DDominators.cpp319 void DominatorTreeWrapperPass::print(raw_ostream &OS, const Module *) const { argument
320 DT.print(OS);
H A DMangler.cpp23 static void getNameWithPrefixx(raw_ostream &OS, const Twine &GVName, argument
31 OS << DL.getPrivateGlobalPrefix();
33 OS << DL.getLinkerPrivateGlobalPrefix();
36 OS << '@';
40 OS << Prefix;
44 OS << Name;
47 void Mangler::getNameWithPrefix(raw_ostream &OS, const Twine &GVName, argument
49 return getNameWithPrefixx(OS, GVName, PrefixTy, *DL, false);
55 raw_svector_ostream OS(OutName);
56 return getNameWithPrefix(OS, GVNam
62 AddFastCallStdCallSuffix(raw_ostream &OS, const Function *F, const DataLayout &TD) argument
79 getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV, bool CannotUsePrivateLabel) const argument
[all...]
/external/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp98 void InstrProfWriter::write(raw_fd_ostream &OS) { argument
110 endian::Writer<little> LE(OS);
119 uint64_t HashTableStartLoc = OS.tell();
122 uint64_t HashTableStart = Generator.Emit(OS);
125 OS.seek(HashTableStartLoc);
/external/llvm/lib/Support/
H A DTargetRegistry.cpp135 raw_ostream &OS = outs(); local
136 OS << " Registered Targets:\n";
138 OS << " " << Targets[i].first;
139 OS.indent(Width - Targets[i].first.size()) << " - "
143 OS << " (none)\n";
/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

Completed in 2378 milliseconds

1234567891011>>