HomeSort by relevance Sort by last modified time
    Searched defs:OS (Results 26 - 50 of 92) sorted by null

12 3 4

  /external/clang/lib/Driver/
Compilation.cpp 72 void Compilation::PrintJob(raw_ostream &OS, const Job &J,
75 OS << " \"" << C->getExecutable() << '"';
78 OS << ' ';
80 OS << *it;
86 OS << '"';
89 OS << '\\';
90 OS << *s;
92 OS << '"';
94 OS << Terminator;
99 PrintJob(OS, **it, Terminator, Quote)
    [all...]
  /external/clang/lib/Frontend/
FrontendActions.cpp 49 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
50 return CreateASTPrinter(OS, CI.getFrontendOpts().ASTDumpFilter);
66 raw_ostream *OS;
68 OS = &llvm::outs();
70 OS = CI.createDefaultOutputFile(false, InFile);
71 if (!OS) return 0;
72 return CreateASTDumperXML(*OS);
89 raw_ostream *OS = 0;
90 if (ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile, OS))
95 return new PCHGenerator(CI.getPreprocessor(), OutputFile, 0, Sysroot, OS);
    [all...]
ASTConsumers.cpp 481 raw_ostream &OS;
484 ASTDumpXML(raw_ostream &OS) : OS(OS) {}
487 C.getTranslationUnitDecl()->dumpXML(OS);
492 ASTConsumer *clang::CreateASTDumperXML(raw_ostream &OS) {
493 return new ASTDumpXML(OS);
PrintPreprocessedOutput.cpp 36 Preprocessor &PP, raw_ostream &OS) {
37 OS << "#define " << II.getName();
40 OS << '(';
44 OS << (*AI)->getName();
45 OS << ',';
50 OS << "...";
52 OS << (*AI)->getName();
56 OS << "..."; // #define foo(x...)
58 OS << ')';
64 OS << ' ';
    [all...]
SerializedDiagnosticPrinter.cpp 99 SDiagsWriter(raw_ostream *os, DiagnosticOptions *diags)
100 : LangOpts(0), OriginalInstance(true), State(new SharedState(os, diags))
194 SharedState(raw_ostream *os, DiagnosticOptions *diags)
195 : DiagOpts(diags), Stream(Buffer), OS(os), EmittedAnyDiagBlocks(false) { }
207 OwningPtr<raw_ostream> OS;
243 DiagnosticConsumer *create(raw_ostream *OS, DiagnosticOptions *diags) {
244 return new SDiagsWriter(OS, diags);
692 State->OS->write((char *)&State->Buffer.front(), State->Buffer.size());
693 State->OS->flush()
    [all...]
  /external/llvm/lib/Analysis/
SparsePropagation.cpp 31 void AbstractLatticeFunction::PrintValue(LatticeVal V, raw_ostream &OS) {
33 OS << "undefined";
35 OS << "overdefined";
37 OS << "untracked";
39 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 << BB->getName() << ":\n"
    [all...]
  /frameworks/compile/slang/
slang.cpp 258 llvm::raw_ostream *OS, OutputType OT) {
260 &mPragmas, OS, OT);
337 llvm::tool_output_file *OS = NULL;
343 OS = OpenOutputFile(OutputFile, 0, &Error, mDiagEngine);
351 OS = OpenOutputFile(OutputFile, llvm::raw_fd_ostream::F_Binary,
363 mOS.reset(OS);
440 mBackend.reset(createBackend(CodeGenOpts, &mOS->os(), mOT));
llvm-rs-cc.cpp 381 llvm::raw_ostream &OS = llvm::outs();
382 OS << "llvm-rs-cc: Renderscript compiler\n"
385 OS << " Built " << __DATE__ << " (" << __TIME__ ").\n";
386 OS << " Target APIs: " << SLANG_MINIMUM_TARGET_API << " - "
388 OS << "\n Build type: " << wrap_str(TARGET_BUILD_VARIANT);
390 OS << " with assertions";
392 OS << ".\n";
  /external/bison/djgpp/
config.bat 408 set OS=MS-Windows
409 if not "%OS%" == "MS-Windows" goto SmallEnv
412 set OS=MS-DOS
413 if not "%OS%" == "MS-DOS" goto SmallEnv
429 set _HOSTNAME=%HOSTNAME%, %OS%
430 if not "%_HOSTNAME%" == "%HOSTNAME%, %OS%" goto SmallEnv
434 set OS=
  /external/clang/lib/Rewrite/Frontend/
InclusionRewriter.cpp 38 raw_ostream &OS; ///< The destination stream for rewritten contents.
47 InclusionRewriter(Preprocessor &PP, raw_ostream &OS, bool ShowLineMarkers);
81 /// Initializes an InclusionRewriter with a \p PP source and \p OS destination.
82 InclusionRewriter::InclusionRewriter(Preprocessor &PP, raw_ostream &OS,
84 : PP(PP), SM(PP.getSourceManager()), OS(OS),
101 OS << "#line" << ' ' << Line << ' ' << '"' << Filename << '"';
105 OS << '#' << ' ' << Line << ' ' << '"' << Filename << '"';
107 OS << Extra;
111 OS << " 3"
    [all...]
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 72 raw_ostream &OS);
74 raw_ostream &OS);
80 raw_ostream &OS;
83 PrintTransforms(raw_ostream &OS)
84 : Ctx(0), OS(OS) { }
91 OS << "Insert: ";
92 printSourceLocation(loc, *Ctx, OS);
93 OS << " \"" << text << "\"\n";
98 OS << "Remove: "
    [all...]
  /external/clang/tools/driver/
driver.cpp 87 /// \param OS - The stream to write edit information to.
91 static void ApplyOneQAOverride(raw_ostream &OS,
100 OS << "### Adding argument " << Str << " at beginning\n";
105 OS << "### Adding argument " << Str << " at end\n";
117 OS << "### Replacing '" << Args[i] << "' with '" << Repl << "'\n";
125 OS << "### Deleting argument " << Args[i] << '\n';
129 OS << "### Deleting argument " << Args[i] << '\n';
132 OS << "### Invalid X edit, end of command line!\n";
144 OS << "### Deleting argument " << Args[i] << '\n';
149 OS << "### Adding argument " << Edit << " at end\n"
    [all...]
  /external/llvm/include/llvm/Support/
raw_ostream.h 442 std::string &OS;
449 virtual uint64_t current_pos() const LLVM_OVERRIDE { return OS.size(); }
451 explicit raw_string_ostream(std::string &O) : OS(O) {}
458 return OS;
466 SmallVectorImpl<char> &OS;
  /external/llvm/lib/Support/
SourceMgr.cpp 132 void SourceMgr::PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const {
138 PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS);
140 OS << "Included from "
225 raw_ostream &OS = errs();
230 PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS);
233 Diagnostic.print(0, OS, ShowColors);
345 // Display colors only if OS supports colors.
Timer.cpp 168 static void printVal(double Val, double Total, raw_ostream &OS) {
170 OS << " ----- ";
172 OS << format(" %7.4f (%5.1f%%)", Val, Val*100/Total);
175 void TimeRecord::print(const TimeRecord &Total, raw_ostream &OS) const {
177 printVal(getUserTime(), Total.getUserTime(), OS);
179 printVal(getSystemTime(), Total.getSystemTime(), OS);
181 printVal(getProcessTime(), Total.getProcessTime(), OS);
182 printVal(getWallTime(), Total.getWallTime(), OS);
184 OS << " ";
187 OS << format("%9" PRId64 " ", (int64_t)getMemUsed())
    [all...]
Triple.cpp 309 OS(parseOS(getOSName())),
314 /// vendor, and OS.
323 OS(parseOS(OSStr.str())),
328 /// vendor, OS, and environment.
338 OS(parseOS(OSStr.str())),
351 // valid os.
358 OSType OS = UnknownOS;
360 OS = parseOS(Components[2]);
370 Found[2] = OS != UnknownOS;
399 OS = parseOS(Comp)
    [all...]
  /external/llvm/tools/bugpoint/
ToolRunner.cpp 116 std::ostringstream OS;
117 OS << "\nError running remote client:\n ";
119 OS << " " << *Arg;
120 OS << "\n";
127 std::ostreambuf_iterator<char>(OS));
131 errs() << OS.str();
140 std::ostringstream OS;
141 OS << "\nError running tool:\n ";
143 OS << " " << *Arg;
144 OS << "\n"
    [all...]
  /external/llvm/tools/llvm-config/
llvm-config.cpp 257 raw_ostream &OS = outs();
264 OS << PACKAGE_VERSION << '\n';
266 OS << ActivePrefix << '\n';
268 OS << ActiveBinDir << '\n';
270 OS << ActiveIncludeDir << '\n';
272 OS << ActiveLibDir << '\n';
274 OS << ActiveIncludeOption << ' ' << LLVM_CPPFLAGS << '\n';
276 OS << ActiveIncludeOption << ' ' << LLVM_CFLAGS << '\n';
278 OS << ActiveIncludeOption << ' ' << LLVM_CXXFLAGS << '\n';
280 OS << "-L" << ActiveLibDir << ' ' << LLVM_LDFLAG
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inflate.h 24 OS, /* i: waiting for extra flags and operating system (gzip) */
60 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME
  /packages/apps/Email/src/org/apache/commons/io/
FileSystemUtils.java 66 private static final int OS;
68 int os = OTHER; typedefs
70 String osName = System.getProperty("os.name");
72 throw new IOException("os.name not found");
77 os = WINDOWS;
79 osName.indexOf("sun os") != -1 ||
87 osName.indexOf("mac os x") != -1) {
88 os = UNIX;
91 os = POSIX_UNIX;
93 os = OTHER;
    [all...]
  /external/clang/include/clang/Frontend/
CompilerInstance.h 131 raw_ostream *OS;
134 raw_ostream *os)
135 : Filename(filename), TempFilename(tempFilename), OS(os) { }
564 /// \p Filename, \p Line, and \p Column, to the given output stream \p OS.
569 raw_ostream &OS);
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 60 raw_ostream *OS,
67 AsmOutStream(OS),
328 OwningPtr<raw_ostream> OS(GetOutputStream(CI, InFile, BA));
329 if (BA != Backend_EmitNothing && !OS)
361 LinkModuleToUse, OS.take(), *VMContext);
370 raw_ostream *OS = GetOutputStream(CI, getCurrentFile(), BA);
371 if (BA != Backend_EmitNothing && !OS)
418 BA, OS);
  /external/llvm/lib/DebugInfo/
DWARFDebugLine.h 76 void dump(raw_ostream &OS) const;
92 void dump(raw_ostream &OS) const;
191 void dump(raw_ostream &OS) const;
225 DumpingState(raw_ostream &OS) : OS(OS) {}
229 raw_ostream &OS;
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 80 void EmitByte(unsigned char C, unsigned &CurByte, raw_ostream &OS) const {
81 OS << (char)C;
86 raw_ostream &OS) const {
89 EmitByte(Val & 255, CurByte, OS);
96 unsigned &CurByte, raw_ostream &OS,
107 unsigned &CurByte, raw_ostream &OS) const {
108 EmitByte(ModRMByte(3, RegOpcodeFld, GetX86RegNum(ModRMReg)), CurByte, OS);
112 unsigned &CurByte, raw_ostream &OS) const {
114 EmitByte(ModRMByte(SS, Index, Base), CurByte, OS);
120 uint64_t TSFlags, unsigned &CurByte, raw_ostream &OS,
    [all...]
  /external/zlib/src/
inflate.h 24 OS, /* i: waiting for extra flags and operating system (gzip) */
62 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME -> COMMENT ->

Completed in 2257 milliseconds

12 3 4