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

1 23 4

  /external/clang/lib/Frontend/
CompilerInstance.cpp 107 raw_ostream *OS = &llvm::errs();
119 OS = FileOS;
125 LogDiagnosticPrinter *Logger = new LogDiagnosticPrinter(*OS, DiagOpts,
136 OwningPtr<llvm::raw_fd_ostream> OS;
137 OS.reset(new llvm::raw_fd_ostream(OutputFile.str().c_str(), ErrorInfo,
147 clang::serialized_diags::create(OS.take(), DiagOpts);
405 raw_ostream &OS) {
410 return new PrintingCodeCompleteConsumer(Opts, OS);
422 assert(OutFile.OS && "Attempt to add empty stream to output list!");
429 delete it->OS;
    [all...]
ASTUnit.cpp     [all...]
  /external/llvm/include/llvm/ADT/
Triple.h 131 /// The parsed OS type.
132 OSType OS;
143 Triple() : Data(), Arch(), Vendor(), OS(), Environment() {}
171 OSType getOS() const { return OS; }
182 /// getOSVersion - Parse the version number from the OS name component of the
199 /// translate generic "darwin" versions to the corresponding OS X versions.
200 /// This may also be called with IOS triples but the OS X version number is
278 /// isMacOSXVersionLT - Comparison function for checking OS X version
283 assert(isMacOSX() && "Not an OS X triple!");
285 // If this is OS X, expect a sane version number
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCCodeEmitter.cpp 61 Triple::OSType OS = TT.getOS();
62 return OS == Triple::Darwin || OS == Triple::MacOSX || OS == Triple::IOS;
322 void EmitByte(unsigned char C, raw_ostream &OS) const {
323 OS << (char)C;
326 void EmitConstant(uint64_t Val, unsigned Size, raw_ostream &OS) const {
329 EmitByte(Val & 255, OS);
334 void EncodeInstruction(const MCInst &MI, raw_ostream &OS,
    [all...]
  /external/llvm/lib/Target/R600/MCTargetDesc/
R600MCCodeEmitter.cpp 54 /// \brief Encode the instruction and write it to the OS.
55 virtual void EncodeInstruction(const MCInst &MI, raw_ostream &OS,
64 raw_ostream &OS) const;
65 void EmitSrc(const MCInst &MI, unsigned OpIdx, raw_ostream &OS) const;
67 raw_ostream &OS) const;
68 void EmitDst(const MCInst &MI, raw_ostream &OS) const;
70 raw_ostream &OS) const;
71 void EmitFCInstr(const MCInst &MI, raw_ostream &OS) const;
73 void EmitNullBytes(unsigned int byteCount, raw_ostream &OS) const;
75 void EmitByte(unsigned int byte, raw_ostream &OS) const
    [all...]
  /external/smack/src/org/xbill/DNS/
ResolverConfig.java 53 String OS = System.getProperty("os.name");
55 if (OS.indexOf("Windows") != -1) {
56 if (OS.indexOf("95") != -1 ||
57 OS.indexOf("98") != -1 ||
58 OS.indexOf("ME") != -1)
62 } else if (OS.indexOf("NetWare") != -1) {
  /external/v8/src/
platform.h 33 // implementation for a particular platform is put in platform_<os>.cc.
111 // OS
117 class OS {
119 // Initializes the platform OS support. Called once at VM startup.
122 // Initializes the platform OS support that depend on CPU features. This is
151 // Returns last OS error.
272 // OS. For example MacOSX doesn't run on any x86 CPUs that don't have SSE2
275 // of the CPU and the OS. The bits in the answer correspond to the bit
320 DISALLOW_IMPLICIT_CONSTRUCTORS(OS);
539 return OS::CreateMutex()
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp 60 raw_ostream &OS = llvm::errs();
61 OS << "(ABIArgInfo Kind=";
64 OS << "Direct Type=";
66 Ty->print(OS);
68 OS << "null";
71 OS << "Extend";
74 OS << "Ignore";
77 OS << "Indirect Align=" << getIndirectAlign()
82 OS << "Expand";
85 OS << ")\n"
    [all...]
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 64 raw_ostream *OS;
278 OS = OutFile;
280 OS = &errs();
317 *OS << "Instruction: " << *MBBI;
372 *OS << '\n';
375 *OS << "# " << Banner << '\n';
376 MF->print(*OS, Indexes);
378 *OS << "*** Bad machine code: " << msg << " ***\n"
385 *OS << "- basic block: BB#" << MBB->getNumber()
389 *OS << " [" << Indexes->getMBBStartIdx(MBB
    [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp 109 static void PrintLLVMName(raw_ostream &OS, StringRef Name, PrefixType Prefix) {
113 case GlobalPrefix: OS << '@'; break;
115 case LocalPrefix: OS << '%'; break;
137 OS << Name;
143 OS << '"';
144 PrintEscapedString(Name, OS);
145 OS << '"';
151 static void PrintLLVMName(raw_ostream &OS, const Value *V) {
152 PrintLLVMName(OS, V->getName(),
179 void print(Type *Ty, raw_ostream &OS);
    [all...]
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 40 formatted_raw_ostream &OS;
68 MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
74 : MCStreamer(SK_AsmStreamer, Context), OS(os), MAI(Context.getAsmInfo()),
87 OS << '\n';
308 OS << '\n';
319 OS.PadToColumn(MAI.getCommentColumn());
321 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
338 Section->PrintSwitchToSection(MAI, OS);
360 OS << *Symbol << MAI.getLabelSuffix()
    [all...]
MCAssembler.cpp 268 OS(OS_), BundleAlignSize(0), RelaxAll(false), NoExecStack(false),
773 uint64_t StartOffset = OS.tell();
800 stats::ObjectBytes += OS.tell() - StartOffset;
    [all...]
  /external/llvm/lib/Support/
CommandLine.cpp     [all...]
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 105 HF, TA, W, RE, OS, IR, PT, AU, HG, TL, PB, BI, PO, AT, RN, FR, RA, AC, TH, PA, U, NP, PU,
  /external/clang/lib/AST/
ASTDiagnostic.cpp 234 bool ShowColors, raw_ostream &OS);
251 llvm::raw_svector_ostream OS(Output);
265 TDT.ShowColors, OS)) {
288 OS << ConvertTypeToDiagnosticString(Context, Ty, PrevArgs, NumPrevArgs,
295 OS << '+';
298 OS << '-';
304 N.printName(OS);
317 ND->getNameForDiagnostic(OS, Context.getPrintingPolicy(), Qualified);
322 NNS->print(OS, Context.getPrintingPolicy());
333 OS << "the global namespace"
    [all...]
ASTDumper.cpp 79 raw_ostream &OS;
129 Dumper.OS.changeColor(Color.Color, Color.Bold);
133 Dumper.OS.resetColor();
138 ASTDumper(raw_ostream &OS, const CommandTraits *Traits,
140 : OS(OS), Traits(Traits), SM(SM), IsFirstLine(true), MoreChildren(false),
144 ASTDumper(raw_ostream &OS, const CommandTraits *Traits,
146 : OS(OS), Traits(Traits), SM(SM), IsFirstLine(true), MoreChildren(false),
151 OS << "\n"
    [all...]
StmtPrinter.cpp 35 raw_ostream &OS;
41 StmtPrinter(raw_ostream &os, PrinterHelper* helper,
44 : OS(os), IndentLevel(Indentation), Helper(helper), Policy(Policy) {}
56 OS << ";\n";
78 OS << "<null expr>";
83 OS << " ";
84 return OS;
88 if (Helper && Helper->handledStmt(S,OS))
97 OS << "<<unknown expr type>>"
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 841 raw_ostream &OS;
972 /// \param OS The stream to output to.
980 raw_ostream &OS);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 556 raw_svector_ostream OS(Str);
557 OS << '\t' << AP.MAI->getCommentString() << "DEBUG_VALUE: ";
562 OS << DISubprogram(V.getContext()).getDisplayName() << ":";
563 OS << V.getName() << " <- ";
569 OS << (double)APF.convertToFloat();
571 OS << APF.convertToDouble();
578 OS << "(long double) " << APF.convertToDouble();
581 OS << MI->getOperand(0).getImm();
583 MI->getOperand(0).getCImm()->getValue().print(OS, false /*isSigned*/);
588 OS << "undef"
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
Platform.h 31 /* ==== PLATFORM handles OS, operating environment, graphics API, and
45 /* OS() - underlying operating system; only to be used for mandated low-level services like
47 #define OS(WTF_FEATURE) (defined WTF_OS_##WTF_FEATURE && WTF_OS_##WTF_FEATURE)
52 /* USE() - use a particular third-party library or optional OS service */
365 /* ==== OS() - underlying operating system; only to be used for mandated low-level services like
368 /* OS(ANDROID) - Android */
373 /* OS(AIX) - AIX */
378 /* OS(DARWIN) - Any Darwin-based OS, including Mac OS X and iPhone OS *
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 243 bool expandMacro(raw_svector_ostream &OS, StringRef Body,
441 raw_svector_ostream &OS);
    [all...]
  /external/clang/include/clang/AST/
Type.h 473 void print(raw_ostream &OS, const PrintingPolicy &Policy,
874 void print(raw_ostream &OS, const PrintingPolicy &Policy,
876 print(split(), OS, Policy, PlaceHolder);
878 static void print(SplitQualType split, raw_ostream &OS,
880 return print(split.Ty, split.Quals, OS, policy, PlaceHolder);
883 raw_ostream &OS, const PrintingPolicy &policy,
907 friend raw_ostream &operator<<(raw_ostream &OS,
909 SQT.T.print(OS, SQT.Policy, SQT.PlaceHolder);
910 return OS;
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp 445 raw_ostream &OS = llvm::errs();
448 OS << GetImplicitConversionName(First);
454 OS << " -> ";
456 OS << GetImplicitConversionName(Second);
459 OS << " (by copy constructor)";
461 OS << " (direct reference binding)";
463 OS << " (reference binding)";
470 OS << " -> ";
472 OS << GetImplicitConversionName(Third);
477 OS << "No conversions required"
    [all...]

Completed in 1795 milliseconds

1 23 4