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

1 2 3 4

  /external/dhcpcd/mk/
os.mk 1 # Setup OS specific variables
6 OS= ${_OS}$(shell ${_OS_SH})
7 include ${MK}/os-${OS}.mk
  /external/clang/include/clang/Frontend/
TextDiagnostic.h 36 raw_ostream &OS;
39 TextDiagnostic(raw_ostream &OS,
52 static void printDiagnosticLevel(raw_ostream &OS,
64 /// \param OS Where the message is printed
72 static void printDiagnosticMessage(raw_ostream &OS,
TextDiagnosticPrinter.h 29 raw_ostream &OS;
41 TextDiagnosticPrinter(raw_ostream &os, DiagnosticOptions *diags,
LogDiagnosticPrinter.h 43 raw_ostream &OS;
57 LogDiagnosticPrinter(raw_ostream &OS, DiagnosticOptions *Diags,
  /external/llvm/include/llvm/Support/
raw_os_ostream.h 26 std::ostream &OS;
36 raw_os_ostream(std::ostream &O) : OS(O) {}
ToolOutputFile.h 42 /// OS - The contained stream. This is intentionally declared after
44 raw_fd_ostream OS;
52 /// os - Return the contained raw_fd_ostream.
53 raw_fd_ostream &os() { return OS; } function in class:llvm::tool_output_file
  /external/llvm/lib/Bitcode/Writer/
BitWriter.cpp 20 raw_fd_ostream OS(Path, ErrorInfo, raw_fd_ostream::F_Binary);
25 WriteBitcodeToFile(unwrap(M), OS);
31 raw_fd_ostream OS(FD, ShouldClose, Unbuffered);
33 WriteBitcodeToFile(unwrap(M), OS);
BitcodeWriterPass.cpp 20 raw_ostream &OS; // raw_ostream to print on
24 : ModulePass(ID), OS(o) {}
29 WriteBitcodeToFile(&M, OS);
  /external/llvm/include/llvm/TableGen/
StringMatcher.h 37 raw_ostream &OS;
41 const std::vector<StringPair> &matches, raw_ostream &os)
42 : StrVariableName(strVariableName), Matches(matches), OS(os) {}
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriterPass.cpp 20 raw_ostream &OS; // raw_ostream to print on
24 : ModulePass(ID), OS(o) {}
29 llvm_3_2::WriteBitcodeToFile(&M, OS);
  /external/llvm/lib/CodeGen/
MachineFunctionPrinterPass.cpp 30 raw_ostream &OS;
33 MachineFunctionPrinterPass() : MachineFunctionPass(ID), OS(dbgs()) { }
34 MachineFunctionPrinterPass(raw_ostream &os, const std::string &banner)
35 : MachineFunctionPass(ID), OS(os), Banner(banner) {}
45 OS << "# " << Banner << ":\n";
46 MF.print(OS, getAnalysisIfAvailable<SlotIndexes>());
62 MachineFunctionPass *createMachineFunctionPrinterPass(raw_ostream &OS,
64 return new MachineFunctionPrinterPass(OS, Banner);
GCMetadata.cpp 30 raw_ostream &OS;
33 explicit Printer(raw_ostream &OS) : FunctionPass(ID), OS(OS) {}
117 FunctionPass *llvm::createGCInfoPrinter(raw_ostream &OS) {
118 return new Printer(OS);
147 OS << "GC roots for " << FD->getFunction().getName() << ":\n";
150 OS << "\t" << RI->Num << "\t" << RI->StackOffset << "[sp]\n";
152 OS << "GC safe points for " << FD->getFunction().getName() << ":\n";
156 OS << "\t" << PI->Label->getName() << ":
    [all...]
  /external/clang/lib/Frontend/
HeaderIncludeGen.cpp 56 llvm::raw_fd_ostream *OS = new llvm::raw_fd_ostream(
61 delete OS;
63 OS->SetUnbuffered();
64 OS->SetUseAtomicWrites(true);
65 OutputFile = OS;
LayoutOverrideSource.cpp 192 raw_ostream &OS = llvm::errs();
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/compiler-rt/make/
config.mk 4 OS := $(shell uname)
  /external/llvm/include/llvm/ExecutionEngine/
ObjectBuffer.h 59 ObjectBufferStream() : OS(SV) {}
62 raw_ostream &getOStream() { return OS; }
65 OS.flush();
75 raw_svector_ostream OS; // streaming wrapper
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/util/
OS.java 19 public class OS {
26 String osName = System.getProperty("os.name");
27 macOs = "Mac OS X".startsWith(osName);
31 String version = System.getProperty("os.version");
  /external/llvm/lib/Support/
TargetRegistry.cpp 154 raw_ostream &OS = outs();
155 OS << " Registered Targets:\n";
157 OS << " " << Targets[i].first;
158 OS.indent(Width - Targets[i].first.size()) << " - "
162 OS << " (none)\n";
  /external/valgrind/unittest/
Makefile 4 ifeq ($(OS), darwin)
5 DEFINES=-DOS_$(OS) -DARCH_$(ARCH) -DOS_$(DARWIN_VERSION)
7 DEFINES=-DOS_$(OS) -DARCH_$(ARCH)
13 ifeq ($(OS), darwin)
19 # OS = linux, darwin, windows
23 BUILD=${OS}-${ARCH}-${OX}${S}${EXTRA_BUILD_SUFFIX}
26 ifeq ($(OS), linux)
30 else ifeq ($(OS), darwin)
34 else ifeq ($(OS), windows)
38 OS=UNKNOWN_O
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriterPass.cpp 23 raw_ostream &OS; // raw_ostream to print on
29 : ModulePass(ID), OS(o) {}
39 llvm_2_9::WriteBitcodeToFile(&M, OS);
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriterPass.cpp 23 raw_ostream &OS; // raw_ostream to print on
29 : ModulePass(ID), OS(o) {}
39 llvm_2_9_func::WriteBitcodeToFile(&M, OS);
  /external/clang/lib/Rewrite/Frontend/
FixItRewriter.cpp 49 bool FixItRewriter::WriteFixedFile(FileID ID, raw_ostream &OS) {
52 RewriteBuf->write(OS);
53 OS.flush();
90 OwningPtr<llvm::raw_fd_ostream> OS;
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();
FrontendActions.cpp 35 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
36 return CreateHTMLPrinter(OS, CI.getPreprocessor());
157 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile, "cpp")) {
159 return CreateModernObjCRewriter(InFile, OS,
164 return CreateObjCRewriter(InFile, OS,
173 raw_ostream *OS = CI.createDefaultOutputFile(true, getCurrentFile());
174 if (!OS) return;
176 RewriteMacrosInInput(CI.getPreprocessor(), OS);
181 raw_ostream *OS = CI.createDefaultOutputFile(false, getCurrentFile());
182 if (!OS) return
    [all...]
  /external/clang/test/SemaCXX/
for-range-dereference.cpp 81 OverloadedStar OS;
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/MC/
MCObjectWriter.h 44 raw_ostream &OS;
50 : OS(_OS), IsLittleEndian(_IsLittleEndian) {}
60 raw_ostream &getStream() { return OS; }
116 OS << char(Value);
174 OS << StringRef(Zeros, 16);
176 OS << StringRef(Zeros, N % 16);
188 OS << Str;

Completed in 142 milliseconds

1 2 3 4