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

1234567891011>>

/freebsd-10.0-release/contrib/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsReginfo.cpp43 MipsReginfo::emitMipsReginfoSectionCG(MCStreamer &OS, argument
48 if (OS.hasRawTextSupport())
53 OS.SwitchSection(TLOFELF.getReginfoSection());
57 OS.EmitIntValue(0, 4); // ri_gprmask
58 OS.EmitIntValue(0, 4); // ri_cpr[0]mask
59 OS.EmitIntValue(0, 4); // ri_cpr[1]mask
60 OS.EmitIntValue(0, 4); // ri_cpr[2]mask
61 OS.EmitIntValue(0, 4); // ri_cpr[3]mask
62 OS.EmitIntValue(0, 4); // ri_gp_value
66 OS
[all...]
/freebsd-10.0-release/contrib/llvm/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.cpp36 raw_ostream &OS,
40 OS << '\t' << getSectionName();
42 OS << '\t' << *Subsection;
43 OS << '\n';
51 OS << "\t.section\t" << name;
53 OS << "\t.section\t\"";
56 OS << "\\\"";
58 OS << *b;
60 OS << "\\\\";
62 OS <<
35 PrintSwitchToSection(const MCAsmInfo &MAI, raw_ostream &OS, const MCExpr *Subsection) const argument
[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,
37 OS << '\t' << getSectionName() << '\n';
41 OS << "\t.section\t" << getSectionName() << ",\"";
43 OS << 'x';
45 OS << 'w';
47 OS << 'r';
49 OS << 'n';
50 OS << "\"\n";
55 OS << "\t.linkonce one_only\n";
58 OS << "\
31 PrintSwitchToSection(const MCAsmInfo &MAI, raw_ostream &OS, const MCExpr *Subsection) const argument
[all...]
H A DMCLabel.cpp15 void MCLabel::print(raw_ostream &OS) const {
16 OS << '"' << getInstance() << '"';
/freebsd-10.0-release/contrib/llvm/tools/clang/utils/TableGen/
H A DTableGenBackends.h28 void EmitClangDeclContext(RecordKeeper &RK, raw_ostream &OS);
29 void EmitClangASTNodes(RecordKeeper &RK, raw_ostream &OS,
32 void EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS);
33 void EmitClangAttrExprArgsList(RecordKeeper &Records, raw_ostream &OS);
34 void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS);
35 void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS);
36 void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS);
37 void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS);
38 void EmitClangAttrSpellingList(RecordKeeper &Records, raw_ostream &OS);
39 void EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS);
[all...]
H A DClangAttrEmitter.cpp115 virtual void writeAccessors(raw_ostream &OS) const = 0;
116 virtual void writeAccessorDefinitions(raw_ostream &OS) const {}
117 virtual void writeCloneArgs(raw_ostream &OS) const = 0;
118 virtual void writeTemplateInstantiationArgs(raw_ostream &OS) const = 0;
119 virtual void writeTemplateInstantiation(raw_ostream &OS) const {}
120 virtual void writeCtorBody(raw_ostream &OS) const {}
121 virtual void writeCtorInitializers(raw_ostream &OS) const = 0;
122 virtual void writeCtorParameters(raw_ostream &OS) const = 0;
123 virtual void writeDeclarations(raw_ostream &OS) const = 0;
124 virtual void writePCHReadArgs(raw_ostream &OS) cons
744 writeAvailabilityValue(raw_ostream &OS) argument
753 writePrettyPrintFunction(Record &R, std::vector<Argument*> &Args, raw_ostream &OS) argument
854 writeAttrAccessorDefinition(Record &R, raw_ostream &OS) argument
880 EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS) argument
975 EmitClangAttrExprArgsList(RecordKeeper &Records, raw_ostream &OS) argument
1017 EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS) argument
1053 EmitAttrList(raw_ostream &OS, StringRef Class, const std::vector<Record*> &AttrList) argument
1073 EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS) argument
1141 EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS) argument
1185 EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS) argument
1216 EmitClangAttrSpellingList(RecordKeeper &Records, raw_ostream &OS) argument
1234 EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS) argument
1295 EmitClangAttrLateParsedList(RecordKeeper &Records, raw_ostream &OS) argument
1324 EmitClangAttrTemplateInstantiate(RecordKeeper &Records, raw_ostream &OS) argument
1397 EmitClangAttrParsedAttrList(RecordKeeper &Records, raw_ostream &OS) argument
1435 EmitClangAttrParsedAttrKinds(RecordKeeper &Records, raw_ostream &OS) argument
1486 EmitClangAttrDump(RecordKeeper &Records, raw_ostream &OS) argument
[all...]
H A DOptParserEmitter.cpp92 static raw_ostream &write_cstring(raw_ostream &OS, llvm::StringRef Str) { argument
93 OS << '"';
94 OS.write_escaped(Str);
95 OS << '"';
96 return OS;
103 void EmitOptParser(RecordKeeper &Records, raw_ostream &OS, bool GenDefs) { argument
110 emitSourceFileHeader("Option Parsing Definitions", OS);
112 emitSourceFileHeader("Option Parsing Table", OS);
132 OS << "#ifndef PREFIX\n";
133 OS << "#erro
[all...]
H A DClangCommentHTMLTagsEmitter.cpp23 void EmitClangCommentHTMLTags(RecordKeeper &Records, raw_ostream &OS) { argument
33 emitSourceFileHeader("HTML tag name matcher", OS);
35 OS << "bool isHTMLTagName(StringRef Name) {\n";
36 StringMatcher("Name", Matches, OS).Emit();
37 OS << " return false;\n"
42 raw_ostream &OS) {
57 emitSourceFileHeader("HTML tag properties", OS);
59 OS << "bool isHTMLEndTagOptional(StringRef Name) {\n";
60 StringMatcher("Name", MatchesEndTagOptional, OS).Emit();
61 OS << " retur
41 EmitClangCommentHTMLTagsProperties(RecordKeeper &Records, raw_ostream &OS) argument
[all...]
H A DTableGen.cpp146 bool ClangTableGenMain(raw_ostream &OS, RecordKeeper &Records) { argument
149 EmitClangAttrClass(Records, OS);
152 EmitClangAttrExprArgsList(Records, OS);
155 EmitClangAttrImpl(Records, OS);
158 EmitClangAttrList(Records, OS);
161 EmitClangAttrPCHRead(Records, OS);
164 EmitClangAttrPCHWrite(Records, OS);
167 EmitClangAttrSpellingList(Records, OS);
170 EmitClangAttrSpellingListIndex(Records, OS);
173 EmitClangAttrLateParsedList(Records, OS);
[all...]
/freebsd-10.0-release/contrib/llvm/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...]
H A Draw_os_ostream.cpp27 OS.write(Ptr, Size);
30 uint64_t raw_os_ostream::current_pos() const { return OS.tellp(); }
/freebsd-10.0-release/contrib/llvm/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 DOptParserEmitter.cpp92 static raw_ostream &write_cstring(raw_ostream &OS, llvm::StringRef Str) { argument
93 OS << '"';
94 OS.write_escaped(Str);
95 OS << '"';
96 return OS;
103 void EmitOptParser(RecordKeeper &Records, raw_ostream &OS) { argument
109 emitSourceFileHeader("Option Parsing Definitions", OS);
130 OS << "/////////\n";
131 OS << "// Prefixes\n\n";
132 OS << "#ifde
[all...]
H A DInstrInfoEmitter.cpp42 void run(raw_ostream &OS);
45 void emitEnums(raw_ostream &OS);
52 raw_ostream &OS);
55 void EmitOperandInfo(raw_ostream &OS, OperandInfoMapTy &OperandInfoIDs);
61 unsigned Num, raw_ostream &OS) {
62 OS << "static const uint16_t ImplicitList" << Num << "[] = { ";
64 OS << getQualifiedName(Uses[i]) << ", ";
65 OS << "0 };\n";
157 void InstrInfoEmitter::EmitOperandInfo(raw_ostream &OS, argument
163 OS << "\
60 PrintDefList(const std::vector<Record*> &Uses, unsigned Num, raw_ostream &OS) argument
184 run(raw_ostream &OS) argument
298 emitRecord(const CodeGenInstruction &Inst, unsigned Num, Record *InstrInfo, std::map<std::vector<Record*>, unsigned> &EmittedLists, const OperandInfoMapTy &OpInfo, raw_ostream &OS) argument
384 emitEnums(raw_ostream &OS) argument
419 EmitInstrInfo(RecordKeeper &RK, 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...]
H A DIntrinsicEmitter.cpp35 void run(raw_ostream &OS);
37 void EmitPrefix(raw_ostream &OS);
40 raw_ostream &OS);
43 raw_ostream &OS);
45 raw_ostream &OS);
47 raw_ostream &OS);
49 raw_ostream &OS);
51 raw_ostream &OS);
53 raw_ostream &OS);
55 raw_ostream &OS);
66 run(raw_ostream &OS) argument
103 EmitPrefix(raw_ostream &OS) argument
113 EmitSuffix(raw_ostream &OS) argument
121 EmitEnumInfo(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
135 EmitFnNameRecognizer(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
184 EmitIntrinsicToNameTable(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
195 EmitIntrinsicToOverloadTable(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
382 printIITEntry(raw_ostream &OS, unsigned char X) argument
386 EmitGenerator(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
512 EmitAttributes(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
[all...]
H A DRegisterInfoEmitter.cpp61 void EmitRegClasses(raw_ostream &OS, CodeGenTarget &Target);
63 void EmitRegUnitPressure(raw_ostream &OS, const CodeGenRegBank &RegBank,
65 void emitComposeSubRegIndices(raw_ostream &OS, CodeGenRegBank &RegBank,
71 void RegisterInfoEmitter::runEnums(raw_ostream &OS, argument
80 emitSourceFileHeader("Target Register Enum Values", OS);
82 OS << "\n#ifdef GET_REGINFO_ENUM\n";
83 OS << "#undef GET_REGINFO_ENUM\n";
85 OS << "namespace llvm {\n\n";
87 OS << "class MCRegisterClass;\n"
92 OS << "namespac
162 EmitRegUnitPressure(raw_ostream &OS, const CodeGenRegBank &RegBank, const std::string &ClassName) argument
310 EmitRegMappingTables(raw_ostream &OS, const std::vector<CodeGenRegister*> &Regs, bool isCtor) argument
436 EmitRegMapping(raw_ostream &OS, const std::vector<CodeGenRegister*> &Regs, bool isCtor) argument
518 printBitVectorAsHex(raw_ostream &OS, const BitVector &Bits, unsigned Width) argument
541 print(raw_ostream &OS) argument
546 printSimpleValueType(raw_ostream &OS, MVT::SimpleValueType VT) argument
550 printSubRegIndex(raw_ostream &OS, const CodeGenSubRegIndex *Idx) argument
593 printDiff16(raw_ostream &OS, uint16_t Val) argument
626 emitComposeSubRegIndices(raw_ostream &OS, CodeGenRegBank &RegBank, const std::string &ClName) argument
697 runMCDesc(raw_ostream &OS, CodeGenTarget &Target, CodeGenRegBank &RegBank) argument
945 runTargetHeader(raw_ostream &OS, CodeGenTarget &Target, CodeGenRegBank &RegBank) argument
1004 runTargetDesc(raw_ostream &OS, CodeGenTarget &Target, CodeGenRegBank &RegBank) argument
1317 run(raw_ostream &OS) argument
1330 EmitRegisterInfo(RecordKeeper &RK, raw_ostream &OS) argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCExpr.cpp30 void AArch64MCExpr::PrintImpl(raw_ostream &OS) const {
33 case VK_AARCH64_GOT: OS << ":got:"; break;
34 case VK_AARCH64_GOT_LO12: OS << ":got_lo12:"; break;
35 case VK_AARCH64_LO12: OS << ":lo12:"; break;
36 case VK_AARCH64_ABS_G0: OS << ":abs_g0:"; break;
37 case VK_AARCH64_ABS_G0_NC: OS << ":abs_g0_nc:"; break;
38 case VK_AARCH64_ABS_G1: OS << ":abs_g1:"; break;
39 case VK_AARCH64_ABS_G1_NC: OS << ":abs_g1_nc:"; break;
40 case VK_AARCH64_ABS_G2: OS << ":abs_g2:"; break;
41 case VK_AARCH64_ABS_G2_NC: OS << "
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DTypePrinter.cpp89 void print(const Type *ty, Qualifiers qs, raw_ostream &OS,
91 void print(QualType T, raw_ostream &OS, StringRef PlaceHolder);
94 void spaceBeforePlaceHolder(raw_ostream &OS);
95 void printTypeSpec(const NamedDecl *D, raw_ostream &OS);
97 void printBefore(const Type *ty, Qualifiers qs, raw_ostream &OS);
98 void printBefore(QualType T, raw_ostream &OS);
99 void printAfter(const Type *ty, Qualifiers qs, raw_ostream &OS);
100 void printAfter(QualType T, raw_ostream &OS);
101 void AppendScope(DeclContext *DC, raw_ostream &OS);
102 void printTag(TagDecl *T, raw_ostream &OS);
111 AppendTypeQualList(raw_ostream &OS, unsigned TypeQuals) argument
128 spaceBeforePlaceHolder(raw_ostream &OS) argument
133 print(QualType t, raw_ostream &OS, StringRef PlaceHolder) argument
138 print(const Type *T, Qualifiers Quals, raw_ostream &OS, StringRef PlaceHolder) argument
226 printBefore(QualType T, raw_ostream &OS) argument
241 printBefore(const Type *T,Qualifiers Quals, raw_ostream &OS) argument
287 printAfter(QualType t, raw_ostream &OS) argument
294 printAfter(const Type *T, Qualifiers Quals, raw_ostream &OS) argument
304 printBuiltinBefore(const BuiltinType *T, raw_ostream &OS) argument
308 printBuiltinAfter(const BuiltinType *T, raw_ostream &OS) argument
310 printComplexBefore(const ComplexType *T, raw_ostream &OS) argument
314 printComplexAfter(const ComplexType *T, raw_ostream &OS) argument
318 printPointerBefore(const PointerType *T, raw_ostream &OS) argument
328 printPointerAfter(const PointerType *T, raw_ostream &OS) argument
338 printBlockPointerBefore(const BlockPointerType *T, raw_ostream &OS) argument
344 printBlockPointerAfter(const BlockPointerType *T, raw_ostream &OS) argument
350 printLValueReferenceBefore(const LValueReferenceType *T, raw_ostream &OS) argument
361 printLValueReferenceAfter(const LValueReferenceType *T, raw_ostream &OS) argument
372 printRValueReferenceBefore(const RValueReferenceType *T, raw_ostream &OS) argument
383 printRValueReferenceAfter(const RValueReferenceType *T, raw_ostream &OS) argument
394 printMemberPointerBefore(const MemberPointerType *T, raw_ostream &OS) argument
410 printMemberPointerAfter(const MemberPointerType *T, raw_ostream &OS) argument
421 printConstantArrayBefore(const ConstantArrayType *T, raw_ostream &OS) argument
427 printConstantArrayAfter(const ConstantArrayType *T, raw_ostream &OS) argument
433 printIncompleteArrayBefore(const IncompleteArrayType *T, raw_ostream &OS) argument
439 printIncompleteArrayAfter(const IncompleteArrayType *T, raw_ostream &OS) argument
445 printVariableArrayBefore(const VariableArrayType *T, raw_ostream &OS) argument
451 printVariableArrayAfter(const VariableArrayType *T, raw_ostream &OS) argument
471 printDependentSizedArrayBefore( const DependentSizedArrayType *T, raw_ostream &OS) argument
478 printDependentSizedArrayAfter( const DependentSizedArrayType *T, raw_ostream &OS) argument
488 printDependentSizedExtVectorBefore( const DependentSizedExtVectorType *T, raw_ostream &OS) argument
493 printDependentSizedExtVectorAfter( const DependentSizedExtVectorType *T, raw_ostream &OS) argument
503 printVectorBefore(const VectorType *T, raw_ostream &OS) argument
539 printVectorAfter(const VectorType *T, raw_ostream &OS) argument
543 printExtVectorBefore(const ExtVectorType *T, raw_ostream &OS) argument
547 printExtVectorAfter(const ExtVectorType *T, raw_ostream &OS) argument
555 printExceptionSpecification(raw_ostream &OS, const PrintingPolicy &Policy) const argument
581 printFunctionProtoBefore(const FunctionProtoType *T, raw_ostream &OS) argument
596 printFunctionProtoAfter(const FunctionProtoType *T, raw_ostream &OS) argument
692 printFunctionNoProtoBefore(const FunctionNoProtoType *T, raw_ostream &OS) argument
700 printFunctionNoProtoAfter(const FunctionNoProtoType *T, raw_ostream &OS) argument
713 printTypeSpec(const NamedDecl *D, raw_ostream &OS) argument
719 printUnresolvedUsingBefore(const UnresolvedUsingType *T, raw_ostream &OS) argument
723 printUnresolvedUsingAfter(const UnresolvedUsingType *T, raw_ostream &OS) argument
726 printTypedefBefore(const TypedefType *T, raw_ostream &OS) argument
729 printTypedefAfter(const TypedefType *T, raw_ostream &OS) argument
731 printTypeOfExprBefore(const TypeOfExprType *T, raw_ostream &OS) argument
737 printTypeOfExprAfter(const TypeOfExprType *T, raw_ostream &OS) argument
740 printTypeOfBefore(const TypeOfType *T, raw_ostream &OS) argument
746 printTypeOfAfter(const TypeOfType *T, raw_ostream &OS) argument
748 printDecltypeBefore(const DecltypeType *T, raw_ostream &OS) argument
754 printDecltypeAfter(const DecltypeType *T, raw_ostream &OS) argument
756 printUnaryTransformBefore(const UnaryTransformType *T, raw_ostream &OS) argument
771 printUnaryTransformAfter(const UnaryTransformType *T, raw_ostream &OS) argument
783 printAutoBefore(const AutoType *T, raw_ostream &OS) argument
792 printAutoAfter(const AutoType *T, raw_ostream &OS) argument
798 printAtomicBefore(const AtomicType *T, raw_ostream &OS) argument
806 printAtomicAfter(const AtomicType *T, raw_ostream &OS) argument
809 AppendScope(DeclContext *DC, raw_ostream &OS) argument
842 printTag(TagDecl *D, raw_ostream &OS) argument
926 printRecordBefore(const RecordType *T, raw_ostream &OS) argument
929 printRecordAfter(const RecordType *T, raw_ostream &OS) argument
931 printEnumBefore(const EnumType *T, raw_ostream &OS) argument
934 printEnumAfter(const EnumType *T, raw_ostream &OS) argument
936 printTemplateTypeParmBefore(const TemplateTypeParmType *T, raw_ostream &OS) argument
944 printTemplateTypeParmAfter(const TemplateTypeParmType *T, raw_ostream &OS) argument
947 printSubstTemplateTypeParmBefore( const SubstTemplateTypeParmType *T, raw_ostream &OS) argument
953 printSubstTemplateTypeParmAfter( const SubstTemplateTypeParmType *T, raw_ostream &OS) argument
960 printSubstTemplateTypeParmPackBefore( const SubstTemplateTypeParmPackType *T, raw_ostream &OS) argument
966 printSubstTemplateTypeParmPackAfter( const SubstTemplateTypeParmPackType *T, raw_ostream &OS) argument
973 printTemplateSpecializationBefore( const TemplateSpecializationType *T, raw_ostream &OS) argument
985 printTemplateSpecializationAfter( const TemplateSpecializationType *T, raw_ostream &OS) argument
989 printInjectedClassNameBefore(const InjectedClassNameType *T, raw_ostream &OS) argument
993 printInjectedClassNameAfter(const InjectedClassNameType *T, raw_ostream &OS) argument
996 printElaboratedBefore(const ElaboratedType *T, raw_ostream &OS) argument
1008 printElaboratedAfter(const ElaboratedType *T, raw_ostream &OS) argument
1014 printParenBefore(const ParenType *T, raw_ostream &OS) argument
1021 printParenAfter(const ParenType *T, raw_ostream &OS) argument
1029 printDependentNameBefore(const DependentNameType *T, raw_ostream &OS) argument
1040 printDependentNameAfter(const DependentNameType *T, raw_ostream &OS) argument
1043 printDependentTemplateSpecializationBefore( const DependentTemplateSpecializationType *T, raw_ostream &OS) argument
1060 printDependentTemplateSpecializationAfter( const DependentTemplateSpecializationType *T, raw_ostream &OS) argument
1063 printPackExpansionBefore(const PackExpansionType *T, raw_ostream &OS) argument
1067 printPackExpansionAfter(const PackExpansionType *T, raw_ostream &OS) argument
1073 printAttributedBefore(const AttributedType *T, raw_ostream &OS) argument
1083 printAttributedAfter(const AttributedType *T, raw_ostream &OS) argument
1187 printObjCInterfaceBefore(const ObjCInterfaceType *T, raw_ostream &OS) argument
1192 printObjCInterfaceAfter(const ObjCInterfaceType *T, raw_ostream &OS) argument
1195 printObjCObjectBefore(const ObjCObjectType *T, raw_ostream &OS) argument
1214 printObjCObjectAfter(const ObjCObjectType *T, raw_ostream &OS) argument
1220 printObjCObjectPointerBefore(const ObjCObjectPointerType *T, raw_ostream &OS) argument
1252 printObjCObjectPointerAfter(const ObjCObjectPointerType *T, raw_ostream &OS) argument
1256 PrintTemplateArgumentList(raw_ostream &OS, const TemplateArgumentListInfo &Args, const PrintingPolicy &Policy) argument
1266 PrintTemplateArgumentList( raw_ostream &OS, const TemplateArgument *Args, unsigned NumArgs, const PrintingPolicy &Policy, bool SkipBrackets) argument
1316 PrintTemplateArgumentList(raw_ostream &OS, const TemplateArgumentLoc *Args, unsigned NumArgs, const PrintingPolicy &Policy) argument
1409 print(raw_ostream &OS, const PrintingPolicy& Policy, bool appendSpaceIfNonEmpty) const argument
1484 print(const Type *ty, Qualifiers qs, raw_ostream &OS, const PrintingPolicy &policy, const Twine &PlaceHolder) argument
[all...]
H A DStmtPrinter.cpp35 raw_ostream &OS; member in class:__anon2990::StmtPrinter
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>>";
115 OS << "{\n";
124 D->print(OS, Polic
747 PrintFloatingLiteral(raw_ostream &OS, FloatingLiteral *Node, bool PrintSuffix) argument
1893 printPretty(raw_ostream &OS, PrinterHelper *Helper, const PrintingPolicy &Policy, unsigned Indentation) const argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/TableGen/
H A DTableGenBackend.cpp23 static void printLine(raw_ostream &OS, const Twine &Prefix, char Fill, argument
25 size_t Pos = (size_t)OS.tell();
28 OS << Prefix;
30 for (size_t i = (size_t)OS.tell() - Pos; i < e; ++i)
31 OS << Fill;
32 OS << Suffix << '\n';
35 void llvm::emitSourceFileHeader(StringRef Desc, raw_ostream &OS) { argument
36 printLine(OS, "/*===- TableGen'erated file ", '-', "*- C++ -*-===*\\");
37 printLine(OS, "|*", ' ', "*|");
47 printLine(OS, Prefi
[all...]
/freebsd-10.0-release/contrib/llvm/tools/llvm-readobj/
H A DStreamWriter.cpp10 raw_ostream &operator<<(raw_ostream &OS, const HexNumber& Value) { argument
14 return OS << "0x0";
26 OS << "0x";
27 return OS.write(CurPtr, EndPtr - CurPtr);
38 OS << ": " << Str;
39 OS << " (\n";
45 OS << ' ';
47 OS << hexdigit((Data[addr + i] >> 4) & 0xF, false)
50 OS << " ";
53 OS << " |";
[all...]

Completed in 142 milliseconds

1234567891011>>