Searched refs:OS (Results 1 - 25 of 1670) sorted by relevance

1234567891011>>

/macosx-10.9.5/llvmCore-3425.0.33/lib/TableGen/
H A DTableGenBackend.cpp19 static void printLine(raw_ostream &OS, const Twine &Prefix, char Fill, argument
21 uint64_t Pos = OS.tell();
22 OS << Prefix;
23 for (unsigned i = OS.tell() - Pos, e = 80 - Suffix.size(); i != e; ++i)
24 OS << Fill;
25 OS << Suffix << '\n';
28 void llvm::emitSourceFileHeader(StringRef Desc, raw_ostream &OS) { argument
29 printLine(OS, "/*===- TableGen'erated file ", '-', "*- C++ -*-===*\\");
30 printLine(OS, "|*", ' ', "*|");
31 printLine(OS, "|* "
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclresource/tclresource/
H A D._tclResource_headers.h1 Mac OS X  2��ATTR�'��� (…)
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/patches/v7.6/
H A D._tcl.h1 Mac OS X  2��ATTR�'��� (…)
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/patches/v8.0/
H A D._tcl.h1 Mac OS X  2��ATTR�'��� (…)
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/patches/v8.0.4/
H A D._tclIO.c1 Mac OS X  2��ATTR�'��� (…)
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/patches/v8.0.5/
H A D._tclIO.c1 Mac OS X  2��ATTR�'��� (…)
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/patches/v8.0a1/
H A D._tcl.h1 Mac OS X  2��ATTR�'��� (…)
H A D._tclIO.c1 Mac OS X  2��ATTR�'��� (…)
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/patches/v8.0a2/
H A D._tcl.h1 Mac OS X  2��ATTR�'��� (…)
H A D._tclIO.c1 Mac OS X  2��ATTR�'��� (…)
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/patches/v8.1b2/
H A D._tclDecls.h1 Mac OS X  2��ATTR�'��� (…)
H A D._tclIO.c1 Mac OS X  2��ATTR�'��� (…)
H A D._tclStubInit.c1 Mac OS X  2��ATTR�'��� (…)
/macosx-10.9.5/tcl-102/tcl_ext/tclvfs/tclvfs/library/
H A D._httpvfs.tcl1 Mac OS X  2��ATTR��"�� (…)
/macosx-10.9.5/llvmCore-3425.0.33/lib/MC/
H A DMCValue.cpp17 void MCValue::print(raw_ostream &OS, const MCAsmInfo *MAI) const { argument
19 OS << getConstant();
23 getSymA()->print(OS);
26 OS << " - ";
27 getSymB()->print(OS);
31 OS << " + " << getConstant();
H A DMCSectionELF.cpp35 raw_ostream &OS) const {
38 OS << '\t' << getSectionName() << '\n';
46 OS << "\t.section\t" << name;
48 OS << "\t.section\t\"";
51 OS << "\\\"";
53 OS << *b;
55 OS << "\\\\";
57 OS << b[0] << b[1]; // Quoted character
61 OS << '"';
68 OS << ",#allo
[all...]
H A DMCInst.cpp18 void MCOperand::print(raw_ostream &OS, const MCAsmInfo *MAI) const { argument
19 OS << "<MCOperand ";
21 OS << "INVALID";
23 OS << "Reg:" << getReg();
25 OS << "Imm:" << getImm();
27 OS << "Expr:(" << *getExpr() << ")";
29 OS << "Inst:(" << *getInst() << ")";
31 OS << "UNDEFINED";
32 OS << ">";
42 void MCInst::print(raw_ostream &OS, cons argument
51 dump_pretty(raw_ostream &OS, const MCAsmInfo *MAI, const MCInstPrinter *Printer, StringRef Separator) const argument
[all...]
H A DMCSectionCOFF.cpp32 raw_ostream &OS) const {
36 OS << '\t' << getSectionName() << '\n';
40 OS << "\t.section\t" << getSectionName() << ",\"";
42 OS << 'x';
44 OS << 'w';
46 OS << 'r';
48 OS << 'n';
49 OS << "\"\n";
54 OS << "\t.linkonce one_only\n";
57 OS << "\
[all...]
H A DMCLabel.cpp15 void MCLabel::print(raw_ostream &OS) const {
16 OS << '"' << getInstance() << '"';
/macosx-10.9.5/llvmCore-3425.0.33/utils/TableGen/
H A DTableGenBackends.h19 // EmitFoo(RecordKeeper &RK, raw_ostream &OS /*, anything else you need */ )
40 // that involved a class and an invocation like `FooEmitter(RK).run(OS)`.
63 void EmitIntrinsics(RecordKeeper &RK, raw_ostream &OS, bool TargetOnly = false);
64 void EmitAsmMatcher(RecordKeeper &RK, raw_ostream &OS);
65 void EmitAsmWriter(RecordKeeper &RK, raw_ostream &OS);
66 void EmitCallingConv(RecordKeeper &RK, raw_ostream &OS);
67 void EmitCodeEmitter(RecordKeeper &RK, raw_ostream &OS);
68 void EmitDAGISel(RecordKeeper &RK, raw_ostream &OS);
69 void EmitDFAPacketizer(RecordKeeper &RK, raw_ostream &OS);
70 void EmitDisassembler(RecordKeeper &RK, raw_ostream &OS);
[all...]
H A DInstrInfoEmitter.cpp40 void run(raw_ostream &OS);
43 void emitEnums(raw_ostream &OS);
50 raw_ostream &OS);
53 void EmitOperandInfo(raw_ostream &OS, OperandInfoMapTy &OperandInfoIDs);
59 unsigned Num, raw_ostream &OS) {
60 OS << "static const uint16_t ImplicitList" << Num << "[] = { ";
62 OS << getQualifiedName(Uses[i]) << ", ";
63 OS << "0 };\n";
155 void InstrInfoEmitter::EmitOperandInfo(raw_ostream &OS, argument
161 OS << "\
58 PrintDefList(const std::vector<Record*> &Uses, unsigned Num, raw_ostream &OS) argument
182 run(raw_ostream &OS) argument
296 emitRecord(const CodeGenInstruction &Inst, unsigned Num, Record *InstrInfo, std::map<std::vector<Record*>, unsigned> &EmittedLists, const OperandInfoMapTy &OpInfo, raw_ostream &OS) argument
381 emitEnums(raw_ostream &OS) argument
416 EmitInstrInfo(RecordKeeper &RK, raw_ostream &OS) argument
[all...]
H A DIntrinsicEmitter.cpp34 void run(raw_ostream &OS);
36 void EmitPrefix(raw_ostream &OS);
39 raw_ostream &OS);
42 raw_ostream &OS);
44 raw_ostream &OS);
46 raw_ostream &OS);
48 raw_ostream &OS);
50 raw_ostream &OS);
52 raw_ostream &OS);
54 raw_ostream &OS);
65 run(raw_ostream &OS) argument
102 EmitPrefix(raw_ostream &OS) argument
112 EmitSuffix(raw_ostream &OS) argument
120 EmitEnumInfo(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
134 EmitFnNameRecognizer(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
183 EmitIntrinsicToNameTable(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
194 EmitIntrinsicToOverloadTable(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
379 printIITEntry(raw_ostream &OS, unsigned char X) argument
383 EmitGenerator(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
509 EmitAttributes(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
[all...]
H A DDAGISelMatcherEmitter.cpp55 unsigned StartIdx, formatted_raw_ostream &OS);
57 void EmitPredicateFunctions(formatted_raw_ostream &OS);
59 void EmitHistogram(const Matcher *N, formatted_raw_ostream &OS);
62 formatted_raw_ostream &OS);
115 static uint64_t EmitVBRValue(uint64_t Val, raw_ostream &OS) { argument
117 OS << Val << ", ";
124 OS << (Val&127) << "|128,";
128 OS << Val;
130 OS << "/*" << InVal << "*/";
131 OS << ", ";
138 EmitMatcher(const Matcher *N, unsigned Indent, unsigned CurrentIdx, formatted_raw_ostream &OS) argument
581 EmitMatcherList(const Matcher *N, unsigned Indent, unsigned CurrentIdx, formatted_raw_ostream &OS) argument
598 EmitPredicateFunctions(formatted_raw_ostream &OS) argument
732 EmitHistogram(const Matcher *M, formatted_raw_ostream &OS) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DBranchProbability.cpp21 void BranchProbability::print(raw_ostream &OS) const {
22 OS << N << " / " << D << " = " << format("%g%%", ((double)N / D) * 100.0);
31 raw_ostream &operator<<(raw_ostream &OS, const BranchProbability &Prob) { argument
32 Prob.print(OS);
33 return OS;
H A DTwine.cpp27 raw_svector_ostream OS(Out);
28 print(OS);
58 void Twine::printOneChild(raw_ostream &OS, Child Ptr, argument
64 Ptr.twine->print(OS);
67 OS << Ptr.cString;
70 OS << *Ptr.stdString;
73 OS << *Ptr.stringRef;
76 OS << Ptr.character;
79 OS << Ptr.decUI;
82 OS << Pt
102 printOneChildRepr(raw_ostream &OS, Child Ptr, NodeKind Kind) const argument
[all...]

Completed in 211 milliseconds

1234567891011>>