Searched refs:OS (Results 251 - 275 of 1115) sorted by relevance

<<11121314151617181920>>

/external/valgrind/main/include/
H A Dpub_tool_basics_asm.h58 # error Unknown OS
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
H A DFontCacheSkia.cpp33 #if !OS(WIN) && !OS(ANDROID)
52 #if !OS(WIN) && !OS(ANDROID)
87 #if !OS(WIN) && !OS(ANDROID)
135 #endif // !OS(WIN) && !OS(ANDROID)
151 #if OS(WIN)
167 #if OS(WI
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DStringExtras.h29 #if OS(POSIX)
34 #if OS(MACOSX) || (OS(FREEBSD) && !defined(__GLIBC__))
48 // FIXME: why a COMPILER check instead of OS? also, these should be HAVE checks
H A DThreadingPthreads.cpp55 #if OS(MACOSX)
59 #if OS(LINUX)
63 #if OS(LINUX) || OS(ANDROID)
102 #if OS(MACOSX)
104 #elif OS(LINUX)
106 #elif OS(ANDROID)
/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/Frontend/
H A DCreateInvocationFromCommandLine.cpp68 llvm::raw_svector_ostream OS(Msg);
69 Jobs.Print(OS, "; ", true);
70 Diags->Report(diag::err_fe_expected_compiler_job) << OS.str();
H A DHeaderIncludeGen.cpp58 llvm::raw_fd_ostream *OS = new llvm::raw_fd_ostream( local
64 delete OS;
66 OS->SetUnbuffered();
67 OS->SetUseAtomicWrites(true);
68 OutputFile = OS;
/external/clang/lib/Index/
H A DSimpleFormatContext.h60 llvm::raw_string_ostream OS(Result);
61 Rewrite.getEditBuffer(ID).write(OS);
62 OS.flush();
/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A DantRun.bat18 if "%OS%"=="Windows_NT" @setlocal
19 if "%OS%"=="WINNT" @setlocal
24 if "%OS%"=="Windows_NT" goto nt_cd
25 if "%OS%"=="WINNT" goto nt_cd
48 if "%OS%"=="Windows_NT" @endlocal
49 if "%OS%"=="WINNT" @endlocal
/external/llvm/include/llvm/CodeGen/
H A DPseudoSourceValue.h24 raw_ostream &operator<<(raw_ostream &OS, const MachineMemOperand &MMO);
32 friend raw_ostream &llvm::operator<<(raw_ostream &OS,
105 void printCustom(raw_ostream &OS) const override;
/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/DebugInfo/
H A DDWARFDebugRangeList.cpp47 void DWARFDebugRangeList::dump(raw_ostream &OS) const {
52 OS << format(format_str, Offset, RLE.StartAddress, RLE.EndAddress);
54 OS << format("%08x <End of list>\n", Offset);
/external/llvm/lib/Target/NVPTX/InstPrinter/
H A DNVPTXInstPrinter.cpp39 void NVPTXInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const { argument
48 OS << getRegisterName(RegNo);
51 OS << "%p";
54 OS << "%rs";
57 OS << "%r";
60 OS << "%rl";
63 OS << "%f";
66 OS << "%fl";
71 OS << VReg;
74 void NVPTXInstPrinter::printInst(const MCInst *MI, raw_ostream &OS, argument
[all...]
/external/llvm/tools/opt/
H A DPassPrinters.cpp232 raw_ostream &OS, bool Quiet) {
233 return new FunctionPassPrinter(PI, OS, Quiet);
237 raw_ostream &OS,
239 return new CallGraphSCCPassPrinter(PI, OS, Quiet);
242 ModulePass *llvm::createModulePassPrinter(const PassInfo *PI, raw_ostream &OS, argument
244 return new ModulePassPrinter(PI, OS, Quiet);
247 LoopPass *llvm::createLoopPassPrinter(const PassInfo *PI, raw_ostream &OS, argument
249 return new LoopPassPrinter(PI, OS, Quiet);
252 RegionPass *llvm::createRegionPassPrinter(const PassInfo *PI, raw_ostream &OS, argument
254 return new RegionPassPrinter(PI, OS, Quie
231 createFunctionPassPrinter(const PassInfo *PI, raw_ostream &OS, bool Quiet) argument
236 createCallGraphPassPrinter(const PassInfo *PI, raw_ostream &OS, bool Quiet) argument
257 createBasicBlockPassPrinter(const PassInfo *PI, raw_ostream &OS, bool Quiet) argument
[all...]
/external/llvm/lib/Analysis/
H A DIVUsers.cpp268 void IVUsers::print(raw_ostream &OS, const Module *M) const { argument
269 OS << "IV Users for loop ";
270 L->getHeader()->printAsOperand(OS, false);
272 OS << " with backedge-taken count "
275 OS << ":\n";
279 OS << " ";
280 UI->getOperandValToReplace()->printAsOperand(OS, false);
281 OS << " = " << *getReplacementExpr(*UI);
285 OS << " (post-inc with loop ";
286 (*I)->getHeader()->printAsOperand(OS, fals
[all...]
H A DMemDepPrinter.cpp49 void print(raw_ostream &OS, const Module * = nullptr) const override;
159 void MemDepPrinter::print(raw_ostream &OS, const Module *M) const { argument
175 OS << " ";
176 OS << DepTypeStr[type];
178 OS << " in block ";
179 DepBB->printAsOperand(OS, /*PrintType=*/false, M);
182 OS << " from: ";
183 DepInst->print(OS);
185 OS << "\n";
188 Inst->print(OS);
[all...]
H A DSparsePropagation.cpp32 void AbstractLatticeFunction::PrintValue(LatticeVal V, raw_ostream &OS) { argument
34 OS << "undefined";
36 OS << "overdefined";
38 OS << "untracked";
40 OS << "unknown lattice value";
329 void SparseSolver::Print(Function &F, raw_ostream &OS) const {
330 OS << "\nFUNCTION: " << F.getName() << "\n";
333 OS << "INFEASIBLE: ";
334 OS << "\t";
336 OS << B
340 LatticeFunc->PrintValue(getLatticeState(I), OS); local
[all...]
/external/clang/lib/AST/
H A DAPValue.cpp271 void APValue::dump(raw_ostream &OS) const {
274 OS << "Uninitialized";
277 OS << "Int: " << getInt();
280 OS << "Float: " << GetApproxValue(getFloat());
283 OS << "Vector: ";
284 getVectorElt(0).dump(OS);
286 OS << ", ";
287 getVectorElt(i).dump(OS);
291 OS << "ComplexInt: " << getComplexIntReal() << ", " << getComplexIntImag();
294 OS << "ComplexFloa
[all...]
/external/llvm/include/llvm/MC/
H A DMCELFStreamer.h32 MCELFStreamer(MCContext &Context, MCAsmBackend &TAB, raw_ostream &OS, argument
34 : MCObjectStreamer(Context, TAB, OS, Emitter),
37 MCELFStreamer(MCContext &Context, MCAsmBackend &TAB, raw_ostream &OS, argument
39 : MCObjectStreamer(Context, TAB, OS, Emitter, Assembler),
109 raw_ostream &OS, MCCodeEmitter *Emitter,
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCTargetDesc.h49 MCStreamer *createMCAsmStreamer(MCContext &Ctx, formatted_raw_ostream &OS,
85 MCCodeEmitter &Emitter, raw_ostream &OS);
88 MCObjectWriter *createARMELFObjectWriter(raw_ostream &OS,
93 MCObjectWriter *createARMMachObjectWriter(raw_ostream &OS,
99 MCObjectWriter *createARMWinCOFFObjectWriter(raw_ostream &OS, bool Is64Bit);
H A DARMELFStreamer.cpp113 formatted_raw_ostream &OS;
146 ARMTargetAsmStreamer(MCStreamer &S, formatted_raw_ostream &OS,
151 formatted_raw_ostream &OS,
154 : ARMTargetStreamer(S), OS(OS), InstPrinter(InstPrinter),
156 void ARMTargetAsmStreamer::emitFnStart() { OS << "\t.fnstart\n"; }
157 void ARMTargetAsmStreamer::emitFnEnd() { OS << "\t.fnend\n"; }
158 void ARMTargetAsmStreamer::emitCantUnwind() { OS << "\t.cantunwind\n"; }
160 OS << "\t.personality " << Personality->getName() << '\n';
163 OS << "\
[all...]
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp308 std::stringstream OS; member in class:__anon19562::Intrinsic
491 void genBuiltinsDef(raw_ostream &OS, SmallVectorImpl<Intrinsic *> &Defs);
492 void genOverloadTypeCheckCode(raw_ostream &OS,
494 void genIntrinsicRangeCheckCode(raw_ostream &OS,
1129 OS << "#define ";
1131 OS << "__ai " << Types[0].str() << " ";
1133 OS << NamePrefix.str() << mangleName(Name, ClassS) << "(";
1137 OS << ", ";
1146 OS << V.getType().str() << " ";
1147 OS <<
1956 genBuiltinsDef(raw_ostream &OS, SmallVectorImpl<Intrinsic *> &Defs) argument
1987 genOverloadTypeCheckCode(raw_ostream &OS, SmallVectorImpl<Intrinsic *> &Defs) argument
2083 genIntrinsicRangeCheckCode(raw_ostream &OS, SmallVectorImpl<Intrinsic *> &Defs) argument
2168 runHeader(raw_ostream &OS) argument
2187 run(raw_ostream &OS) argument
2388 EmitNeon(RecordKeeper &Records, raw_ostream &OS) argument
2391 EmitNeonSema(RecordKeeper &Records, raw_ostream &OS) argument
2394 EmitNeonTest(RecordKeeper &Records, raw_ostream &OS) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DKeyboardTest.cpp84 #if OS(MACOSX)
128 #if !OS(MACOSX)
135 #if !OS(MACOSX)
142 #if !OS(MACOSX)
149 #if !OS(MACOSX)
156 #if !OS(MACOSX)
163 #if !OS(MACOSX)
/external/llvm/utils/TableGen/
H A DDAGISelEmitter.cpp30 void run(raw_ostream &OS);
122 void DAGISelEmitter::run(raw_ostream &OS) { argument
124 CGP.getTargetInfo().getName() + " target", OS);
126 OS << "// *** NOTE: This file is #included into the middle of the target\n"
164 EmitMatcherTable(TheMatcher, CGP, OS);
170 void EmitDAGISel(RecordKeeper &RK, raw_ostream &OS) { argument
171 DAGISelEmitter(RK).run(OS);

Completed in 853 milliseconds

<<11121314151617181920>>