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

1234567891011>>

/freebsd-10-stable/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...]
H A DMipsTargetStreamer.cpp29 MipsTargetAsmStreamer::MipsTargetAsmStreamer(formatted_raw_ostream &OS) argument
30 : OS(OS) {}
36 OS << "\t.mips_hack_elf_flags 0x";
37 OS.write_hex(Flags);
38 OS << '\n';
44 OS << "\t.mips_hack_stocg ";
45 OS << Sym->getName();
46 OS << ", ";
47 OS << Va
[all...]
/freebsd-10-stable/contrib/llvm/lib/MC/
H A DMCSectionELF.cpp35 static void printName(raw_ostream &OS, StringRef Name) { argument
39 OS << Name;
42 OS << '"';
45 OS << "\\\"";
47 OS << *B;
49 OS << "\\\\";
51 OS << B[0] << B[1]; // Quoted character
55 OS << '"';
59 raw_ostream &OS,
63 OS << '\
58 PrintSwitchToSection(const MCAsmInfo &MAI, raw_ostream &OS, const MCExpr *Subsection) const argument
[all...]
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 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 DMCLabel.cpp15 void MCLabel::print(raw_ostream &OS) const {
16 OS << '"' << getInstance() << '"';
H A DMCSectionCOFF.cpp43 raw_ostream &OS,
48 OS << '\t' << getSectionName() << '\n';
52 OS << "\t.section\t" << getSectionName() << ",\"";
54 OS << 'x';
56 OS << 'w';
58 OS << 'r';
60 OS << 'n';
61 OS << "\"\n";
66 OS << "\t.linkonce one_only\n";
69 OS << "\
42 PrintSwitchToSection(const MCAsmInfo &MAI, raw_ostream &OS, const MCExpr *Subsection) const argument
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/utils/TableGen/
H A DClangAttrEmitter.cpp121 virtual void writeAccessors(raw_ostream &OS) const = 0;
122 virtual void writeAccessorDefinitions(raw_ostream &OS) const {}
123 virtual void writeCloneArgs(raw_ostream &OS) const = 0;
124 virtual void writeTemplateInstantiationArgs(raw_ostream &OS) const = 0;
125 virtual void writeTemplateInstantiation(raw_ostream &OS) const {}
126 virtual void writeCtorBody(raw_ostream &OS) const {}
127 virtual void writeCtorInitializers(raw_ostream &OS) const = 0;
128 virtual void writeCtorDefaultInitializers(raw_ostream &OS) const = 0;
129 virtual void writeCtorParameters(raw_ostream &OS) const = 0;
130 virtual void writeDeclarations(raw_ostream &OS) cons
906 writeAvailabilityValue(raw_ostream &OS) argument
915 writePrettyPrintFunction(Record &R, std::vector<Argument*> &Args, raw_ostream &OS) argument
1016 writeAttrAccessorDefinition(Record &R, raw_ostream &OS) argument
1042 EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS) argument
1199 EmitClangAttrTypeArgList(RecordKeeper &Records, raw_ostream &OS) argument
1230 EmitClangAttrIdentifierArgList(RecordKeeper &Records, raw_ostream &OS) argument
1258 EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS) argument
1294 EmitAttrList(raw_ostream &OS, StringRef Class, const std::vector<Record*> &AttrList) argument
1314 EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS) argument
1382 EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS) argument
1426 EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS) argument
1457 EmitClangAttrSpellingList(RecordKeeper &Records, raw_ostream &OS) argument
1475 EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS) argument
1536 EmitClangAttrLateParsedList(RecordKeeper &Records, raw_ostream &OS) argument
1565 EmitClangAttrTemplateInstantiate(RecordKeeper &Records, raw_ostream &OS) argument
1671 EmitClangAttrParsedAttrList(RecordKeeper &Records, raw_ostream &OS) argument
1685 emitArgInfo(const Record &R, raw_ostream &OS) argument
1700 EmitClangAttrParsedAttrImpl(RecordKeeper &Records, raw_ostream &OS) argument
1724 EmitClangAttrParsedAttrKinds(RecordKeeper &Records, raw_ostream &OS) argument
1775 EmitClangAttrDump(RecordKeeper &Records, raw_ostream &OS) argument
[all...]
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 EmitClangAttrIdentifierArgList(RecordKeeper &Records, raw_ostream &OS);
34 void EmitClangAttrTypeArgList(RecordKeeper &Records, raw_ostream &OS);
35 void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS);
36 void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS);
37 void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS);
38 void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS);
39 void EmitClangAttrSpellingList(RecordKeeper &Records, raw_ostream &OS);
[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...]
/freebsd-10-stable/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...]
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcTargetStreamer.cpp23 SparcTargetAsmStreamer::SparcTargetAsmStreamer(formatted_raw_ostream &OS) argument
24 : OS(OS) {}
27 OS << "\t.register "
33 OS << "\t.register "
/freebsd-10-stable/contrib/llvm/utils/TableGen/
H A DOptParserEmitter.cpp97 static raw_ostream &write_cstring(raw_ostream &OS, llvm::StringRef Str) { argument
98 OS << '"';
99 OS.write_escaped(Str);
100 OS << '"';
101 return OS;
108 void EmitOptParser(RecordKeeper &Records, raw_ostream &OS) { argument
114 emitSourceFileHeader("Option Parsing Definitions", OS);
135 OS << "/////////\n";
136 OS << "// Prefixes\n\n";
137 OS << "#ifde
[all...]
H A DInstrInfoEmitter.cpp42 void run(raw_ostream &OS);
45 void emitEnums(raw_ostream &OS);
59 raw_ostream &OS);
60 void emitOperandTypesEnum(raw_ostream &OS, const CodeGenTarget &Target);
66 void emitOperandNameMappings(raw_ostream &OS, const CodeGenTarget &Target,
70 void EmitOperandInfo(raw_ostream &OS, OperandInfoMapTy &OperandInfoIDs);
76 unsigned Num, raw_ostream &OS) {
77 OS << "static const uint16_t ImplicitList" << Num << "[] = { ";
79 OS << getQualifiedName(Uses[i]) << ", ";
80 OS << "
75 PrintDefList(const std::vector<Record*> &Uses, unsigned Num, raw_ostream &OS) argument
172 EmitOperandInfo(raw_ostream &OS, OperandInfoMapTy &OperandInfoIDs) argument
240 emitOperandNameMappings(raw_ostream &OS, const CodeGenTarget &Target, const std::vector<const CodeGenInstruction*> &NumberedInstructions) argument
318 emitOperandTypesEnum(raw_ostream &OS, const CodeGenTarget &Target) argument
348 run(raw_ostream &OS) argument
468 emitRecord(const CodeGenInstruction &Inst, unsigned Num, Record *InstrInfo, std::map<std::vector<Record*>, unsigned> &EmittedLists, const OperandInfoMapTy &OpInfo, raw_ostream &OS) argument
567 emitEnums(raw_ostream &OS) argument
610 EmitInstrInfo(RecordKeeper &RK, raw_ostream &OS) argument
[all...]
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 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
149 EmitFnNameRecognizer(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
202 EmitIntrinsicToNameTable(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
213 EmitIntrinsicToOverloadTable(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
405 printIITEntry(raw_ostream &OS, unsigned char X) argument
409 EmitGenerator(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) argument
535 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
591 EmitMatcherList(const Matcher *N, unsigned Indent, unsigned CurrentIdx, formatted_raw_ostream &OS) argument
608 EmitPredicateFunctions(formatted_raw_ostream &OS) argument
742 EmitHistogram(const Matcher *M, formatted_raw_ostream &OS) argument
[all...]
H A DRegisterInfoEmitter.cpp61 void EmitRegUnitPressure(raw_ostream &OS, const CodeGenRegBank &RegBank,
63 void emitComposeSubRegIndices(raw_ostream &OS, CodeGenRegBank &RegBank,
69 void RegisterInfoEmitter::runEnums(raw_ostream &OS, argument
78 emitSourceFileHeader("Target Register Enum Values", OS);
80 OS << "\n#ifdef GET_REGINFO_ENUM\n";
81 OS << "#undef GET_REGINFO_ENUM\n";
83 OS << "namespace llvm {\n\n";
85 OS << "class MCRegisterClass;\n"
90 OS << "namespace " << Namespace << " {\n";
91 OS << "enu
160 EmitRegUnitPressure(raw_ostream &OS, const CodeGenRegBank &RegBank, const std::string &ClassName) argument
314 EmitRegMappingTables(raw_ostream &OS, const std::vector<CodeGenRegister*> &Regs, bool isCtor) argument
440 EmitRegMapping(raw_ostream &OS, const std::vector<CodeGenRegister*> &Regs, bool isCtor) argument
522 printBitVectorAsHex(raw_ostream &OS, const BitVector &Bits, unsigned Width) argument
545 print(raw_ostream &OS) argument
550 printSimpleValueType(raw_ostream &OS, MVT::SimpleValueType VT) argument
554 printSubRegIndex(raw_ostream &OS, const CodeGenSubRegIndex *Idx) argument
597 printDiff16(raw_ostream &OS, uint16_t Val) argument
630 emitComposeSubRegIndices(raw_ostream &OS, CodeGenRegBank &RegBank, const std::string &ClName) argument
701 runMCDesc(raw_ostream &OS, CodeGenTarget &Target, CodeGenRegBank &RegBank) argument
951 runTargetHeader(raw_ostream &OS, CodeGenTarget &Target, CodeGenRegBank &RegBank) argument
1010 runTargetDesc(raw_ostream &OS, CodeGenTarget &Target, CodeGenRegBank &RegBank) argument
1340 run(raw_ostream &OS) argument
1353 EmitRegisterInfo(RecordKeeper &RK, raw_ostream &OS) argument
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
H A DTypePrinter.cpp91 void print(const Type *ty, Qualifiers qs, raw_ostream &OS,
93 void print(QualType T, raw_ostream &OS, StringRef PlaceHolder);
96 void spaceBeforePlaceHolder(raw_ostream &OS);
97 void printTypeSpec(const NamedDecl *D, raw_ostream &OS);
99 void printBefore(const Type *ty, Qualifiers qs, raw_ostream &OS);
100 void printBefore(QualType T, raw_ostream &OS);
101 void printAfter(const Type *ty, Qualifiers qs, raw_ostream &OS);
102 void printAfter(QualType T, raw_ostream &OS);
103 void AppendScope(DeclContext *DC, raw_ostream &OS);
104 void printTag(TagDecl *T, raw_ostream &OS);
113 AppendTypeQualList(raw_ostream &OS, unsigned TypeQuals) argument
130 spaceBeforePlaceHolder(raw_ostream &OS) argument
135 print(QualType t, raw_ostream &OS, StringRef PlaceHolder) argument
140 print(const Type *T, Qualifiers Quals, raw_ostream &OS, StringRef PlaceHolder) argument
229 printBefore(QualType T, raw_ostream &OS) argument
244 printBefore(const Type *T,Qualifiers Quals, raw_ostream &OS) argument
290 printAfter(QualType t, raw_ostream &OS) argument
297 printAfter(const Type *T, Qualifiers Quals, raw_ostream &OS) argument
307 printBuiltinBefore(const BuiltinType *T, raw_ostream &OS) argument
311 printBuiltinAfter(const BuiltinType *T, raw_ostream &OS) argument
313 printComplexBefore(const ComplexType *T, raw_ostream &OS) argument
317 printComplexAfter(const ComplexType *T, raw_ostream &OS) argument
321 printPointerBefore(const PointerType *T, raw_ostream &OS) argument
331 printPointerAfter(const PointerType *T, raw_ostream &OS) argument
341 printBlockPointerBefore(const BlockPointerType *T, raw_ostream &OS) argument
347 printBlockPointerAfter(const BlockPointerType *T, raw_ostream &OS) argument
353 printLValueReferenceBefore(const LValueReferenceType *T, raw_ostream &OS) argument
364 printLValueReferenceAfter(const LValueReferenceType *T, raw_ostream &OS) argument
375 printRValueReferenceBefore(const RValueReferenceType *T, raw_ostream &OS) argument
386 printRValueReferenceAfter(const RValueReferenceType *T, raw_ostream &OS) argument
397 printMemberPointerBefore(const MemberPointerType *T, raw_ostream &OS) argument
413 printMemberPointerAfter(const MemberPointerType *T, raw_ostream &OS) argument
424 printConstantArrayBefore(const ConstantArrayType *T, raw_ostream &OS) argument
430 printConstantArrayAfter(const ConstantArrayType *T, raw_ostream &OS) argument
436 printIncompleteArrayBefore(const IncompleteArrayType *T, raw_ostream &OS) argument
442 printIncompleteArrayAfter(const IncompleteArrayType *T, raw_ostream &OS) argument
448 printVariableArrayBefore(const VariableArrayType *T, raw_ostream &OS) argument
454 printVariableArrayAfter(const VariableArrayType *T, raw_ostream &OS) argument
474 printDecayedBefore(const DecayedType *T, raw_ostream &OS) argument
478 printDecayedAfter(const DecayedType *T, raw_ostream &OS) argument
482 printDependentSizedArrayBefore( const DependentSizedArrayType *T, raw_ostream &OS) argument
489 printDependentSizedArrayAfter( const DependentSizedArrayType *T, raw_ostream &OS) argument
499 printDependentSizedExtVectorBefore( const DependentSizedExtVectorType *T, raw_ostream &OS) argument
504 printDependentSizedExtVectorAfter( const DependentSizedExtVectorType *T, raw_ostream &OS) argument
514 printVectorBefore(const VectorType *T, raw_ostream &OS) argument
550 printVectorAfter(const VectorType *T, raw_ostream &OS) argument
554 printExtVectorBefore(const ExtVectorType *T, raw_ostream &OS) argument
558 printExtVectorAfter(const ExtVectorType *T, raw_ostream &OS) argument
566 printExceptionSpecification(raw_ostream &OS, const PrintingPolicy &Policy) const argument
592 printFunctionProtoBefore(const FunctionProtoType *T, raw_ostream &OS) argument
607 printFunctionProtoAfter(const FunctionProtoType *T, raw_ostream &OS) argument
712 printFunctionNoProtoBefore(const FunctionNoProtoType *T, raw_ostream &OS) argument
720 printFunctionNoProtoAfter(const FunctionNoProtoType *T, raw_ostream &OS) argument
733 printTypeSpec(const NamedDecl *D, raw_ostream &OS) argument
739 printUnresolvedUsingBefore(const UnresolvedUsingType *T, raw_ostream &OS) argument
743 printUnresolvedUsingAfter(const UnresolvedUsingType *T, raw_ostream &OS) argument
746 printTypedefBefore(const TypedefType *T, raw_ostream &OS) argument
749 printTypedefAfter(const TypedefType *T, raw_ostream &OS) argument
751 printTypeOfExprBefore(const TypeOfExprType *T, raw_ostream &OS) argument
757 printTypeOfExprAfter(const TypeOfExprType *T, raw_ostream &OS) argument
760 printTypeOfBefore(const TypeOfType *T, raw_ostream &OS) argument
766 printTypeOfAfter(const TypeOfType *T, raw_ostream &OS) argument
768 printDecltypeBefore(const DecltypeType *T, raw_ostream &OS) argument
774 printDecltypeAfter(const DecltypeType *T, raw_ostream &OS) argument
776 printUnaryTransformBefore(const UnaryTransformType *T, raw_ostream &OS) argument
791 printUnaryTransformAfter(const UnaryTransformType *T, raw_ostream &OS) argument
803 printAutoBefore(const AutoType *T, raw_ostream &OS) argument
812 printAutoAfter(const AutoType *T, raw_ostream &OS) argument
818 printAtomicBefore(const AtomicType *T, raw_ostream &OS) argument
826 printAtomicAfter(const AtomicType *T, raw_ostream &OS) argument
829 AppendScope(DeclContext *DC, raw_ostream &OS) argument
862 printTag(TagDecl *D, raw_ostream &OS) argument
946 printRecordBefore(const RecordType *T, raw_ostream &OS) argument
949 printRecordAfter(const RecordType *T, raw_ostream &OS) argument
951 printEnumBefore(const EnumType *T, raw_ostream &OS) argument
954 printEnumAfter(const EnumType *T, raw_ostream &OS) argument
956 printTemplateTypeParmBefore(const TemplateTypeParmType *T, raw_ostream &OS) argument
964 printTemplateTypeParmAfter(const TemplateTypeParmType *T, raw_ostream &OS) argument
967 printSubstTemplateTypeParmBefore( const SubstTemplateTypeParmType *T, raw_ostream &OS) argument
973 printSubstTemplateTypeParmAfter( const SubstTemplateTypeParmType *T, raw_ostream &OS) argument
980 printSubstTemplateTypeParmPackBefore( const SubstTemplateTypeParmPackType *T, raw_ostream &OS) argument
986 printSubstTemplateTypeParmPackAfter( const SubstTemplateTypeParmPackType *T, raw_ostream &OS) argument
993 printTemplateSpecializationBefore( const TemplateSpecializationType *T, raw_ostream &OS) argument
1005 printTemplateSpecializationAfter( const TemplateSpecializationType *T, raw_ostream &OS) argument
1009 printInjectedClassNameBefore(const InjectedClassNameType *T, raw_ostream &OS) argument
1013 printInjectedClassNameAfter(const InjectedClassNameType *T, raw_ostream &OS) argument
1016 printElaboratedBefore(const ElaboratedType *T, raw_ostream &OS) argument
1030 printElaboratedAfter(const ElaboratedType *T, raw_ostream &OS) argument
1036 printParenBefore(const ParenType *T, raw_ostream &OS) argument
1043 printParenAfter(const ParenType *T, raw_ostream &OS) argument
1051 printDependentNameBefore(const DependentNameType *T, raw_ostream &OS) argument
1062 printDependentNameAfter(const DependentNameType *T, raw_ostream &OS) argument
1065 printDependentTemplateSpecializationBefore( const DependentTemplateSpecializationType *T, raw_ostream &OS) argument
1082 printDependentTemplateSpecializationAfter( const DependentTemplateSpecializationType *T, raw_ostream &OS) argument
1085 printPackExpansionBefore(const PackExpansionType *T, raw_ostream &OS) argument
1089 printPackExpansionAfter(const PackExpansionType *T, raw_ostream &OS) argument
1095 printAttributedBefore(const AttributedType *T, raw_ostream &OS) argument
1116 printAttributedAfter(const AttributedType *T, raw_ostream &OS) argument
1236 printObjCInterfaceBefore(const ObjCInterfaceType *T, raw_ostream &OS) argument
1241 printObjCInterfaceAfter(const ObjCInterfaceType *T, raw_ostream &OS) argument
1244 printObjCObjectBefore(const ObjCObjectType *T, raw_ostream &OS) argument
1263 printObjCObjectAfter(const ObjCObjectType *T, raw_ostream &OS) argument
1269 printObjCObjectPointerBefore(const ObjCObjectPointerType *T, raw_ostream &OS) argument
1301 printObjCObjectPointerAfter(const ObjCObjectPointerType *T, raw_ostream &OS) argument
1305 PrintTemplateArgumentList(raw_ostream &OS, const TemplateArgumentListInfo &Args, const PrintingPolicy &Policy) argument
1315 PrintTemplateArgumentList( raw_ostream &OS, const TemplateArgument *Args, unsigned NumArgs, const PrintingPolicy &Policy, bool SkipBrackets) argument
1366 PrintTemplateArgumentList(raw_ostream &OS, const TemplateArgumentLoc *Args, unsigned NumArgs, const PrintingPolicy &Policy) argument
1459 print(raw_ostream &OS, const PrintingPolicy& Policy, bool appendSpaceIfNonEmpty) const argument
1534 print(const Type *ty, Qualifiers qs, raw_ostream &OS, const PrintingPolicy &policy, const Twine &PlaceHolder) argument
[all...]
/freebsd-10-stable/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-stable/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-stable/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...]
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Index/
H A DUSRGeneration.h30 void generateUSRForObjCClass(StringRef Cls, raw_ostream &OS);
33 void generateUSRForObjCCategory(StringRef Cls, StringRef Cat, raw_ostream &OS);
38 void generateUSRForObjCIvar(StringRef Ivar, raw_ostream &OS);
42 raw_ostream &OS);
45 void generateUSRForObjCProperty(StringRef Prop, raw_ostream &OS);
48 void generateUSRForObjCProtocol(StringRef Prot, raw_ostream &OS);
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/
H A DModule.cpp188 static void printModuleId(raw_ostream &OS, const ModuleId &Id) { argument
191 OS << ".";
192 OS << Id[I].first;
276 void Module::print(raw_ostream &OS, unsigned Indent) const { argument
277 OS.indent(Indent);
279 OS << "framework ";
281 OS << "explicit ";
282 OS << "module " << Name;
285 OS.indent(Indent + 2);
286 OS << " [syste
[all...]

Completed in 285 milliseconds

1234567891011>>