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

1234567891011>>

/external/llvm/lib/MC/
H A DMCSectionELF.cpp33 static void printName(raw_ostream &OS, StringRef Name) { argument
37 OS << Name;
40 OS << '"';
43 OS << "\\\"";
45 OS << *B;
47 OS << "\\\\";
49 OS << B[0] << B[1]; // Quoted character
53 OS << '"';
57 raw_ostream &OS,
61 OS << '\
56 PrintSwitchToSection(const MCAsmInfo &MAI, raw_ostream &OS, const MCExpr *Subsection) const argument
[all...]
H A DMCSectionCOFF.cpp41 raw_ostream &OS,
46 OS << '\t' << getSectionName() << '\n';
50 OS << "\t.section\t" << getSectionName() << ",\"";
52 OS << 'd';
54 OS << 'b';
56 OS << 'x';
58 OS << 'w';
60 OS << 'r';
62 OS << 'y';
64 OS << '
40 PrintSwitchToSection(const MCAsmInfo &MAI, raw_ostream &OS, const MCExpr *Subsection) const argument
[all...]
H A DMCInst.cpp18 void MCOperand::print(raw_ostream &OS) const {
19 OS << "<MCOperand ";
21 OS << "INVALID";
23 OS << "Reg:" << getReg();
25 OS << "Imm:" << getImm();
27 OS << "FPImm:" << getFPImm();
29 OS << "Expr:(" << *getExpr() << ")";
31 OS << "Inst:(" << *getInst() << ")";
33 OS << "UNDEFINED";
34 OS << ">";
53 dump_pretty(raw_ostream &OS, const MCInstPrinter *Printer, StringRef Separator) const argument
[all...]
H A DMCLabel.cpp15 void MCLabel::print(raw_ostream &OS) const {
16 OS << '"' << getInstance() << '"';
H A DMCValue.cpp18 void MCValue::print(raw_ostream &OS) const {
20 OS << getConstant();
27 OS << ':' << getRefKind() << ':';
29 OS << *getSymA();
32 OS << " - ";
33 OS << *getSymB();
37 OS << " + " << getConstant();
/external/llvm/utils/TableGen/
H A DAttributes.cpp26 void emit(raw_ostream &OS);
29 void emitTargetIndependentEnums(raw_ostream &OS);
36 void Attributes::emitTargetIndependentEnums(raw_ostream &OS) { argument
37 OS << "#ifdef GET_ATTR_ENUM\n";
38 OS << "#undef GET_ATTR_ENUM\n";
44 OS << A->getName() << ",\n";
46 OS << "#endif\n";
49 void Attributes::emit(raw_ostream &OS) { argument
50 emitTargetIndependentEnums(OS);
55 void EmitAttributes(RecordKeeper &RK, raw_ostream &OS) { argument
[all...]
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 DTableGenBackends.h21 // EmitFoo(RecordKeeper &RK, raw_ostream &OS /*, anything else you need */ )
42 // that involved a class and an invocation like `FooEmitter(RK).run(OS)`.
65 void EmitIntrinsics(RecordKeeper &RK, raw_ostream &OS, bool TargetOnly = false);
66 void EmitAsmMatcher(RecordKeeper &RK, raw_ostream &OS);
67 void EmitAsmWriter(RecordKeeper &RK, raw_ostream &OS);
68 void EmitCallingConv(RecordKeeper &RK, raw_ostream &OS);
69 void EmitCodeEmitter(RecordKeeper &RK, raw_ostream &OS);
70 void EmitDAGISel(RecordKeeper &RK, raw_ostream &OS);
71 void EmitDFAPacketizer(RecordKeeper &RK, raw_ostream &OS);
72 void EmitDisassembler(RecordKeeper &RK, raw_ostream &OS);
[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 MCPhysReg 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
235 emitOperandNameMappings(raw_ostream &OS, const CodeGenTarget &Target, const std::vector<const CodeGenInstruction*> &NumberedInstructions) argument
309 emitOperandTypesEnum(raw_ostream &OS, const CodeGenTarget &Target) argument
341 run(raw_ostream &OS) argument
462 emitRecord(const CodeGenInstruction &Inst, unsigned Num, Record *InstrInfo, std::map<std::vector<Record*>, unsigned> &EmittedLists, const OperandInfoMapTy &OpInfo, raw_ostream &OS) argument
565 emitEnums(raw_ostream &OS) argument
606 EmitInstrInfo(RecordKeeper &RK, 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,
65 void emitComposeSubRegIndexLaneMask(raw_ostream &OS, CodeGenRegBank &RegBank,
71 void RegisterInfoEmitter::runEnums(raw_ostream &OS, argument
81 emitSourceFileHeader("Target Register Enum Values", OS);
83 OS << "\n#ifdef GET_REGINFO_ENUM\n";
84 OS << "#undef GET_REGINFO_ENUM\n";
86 OS << "namespace llvm {\n\n";
88 OS << "class MCRegisterClass;\n"
93 OS << "namespac
159 printInt(raw_ostream &OS, int Val) argument
173 EmitRegUnitPressure(raw_ostream &OS, const CodeGenRegBank &RegBank, const std::string &ClassName) argument
320 EmitRegMappingTables( raw_ostream &OS, const std::deque<CodeGenRegister> &Regs, bool isCtor) argument
443 EmitRegMapping( raw_ostream &OS, const std::deque<CodeGenRegister> &Regs, bool isCtor) argument
524 printBitVectorAsHex(raw_ostream &OS, const BitVector &Bits, unsigned Width) argument
547 print(raw_ostream &OS) argument
552 printSimpleValueType(raw_ostream &OS, MVT::SimpleValueType VT) argument
556 printSubRegIndex(raw_ostream &OS, const CodeGenSubRegIndex *Idx) argument
600 printDiff16(raw_ostream &OS, uint16_t Val) argument
604 printMask(raw_ostream &OS, unsigned Val) argument
630 emitComposeSubRegIndices(raw_ostream &OS, CodeGenRegBank &RegBank, const std::string &ClName) argument
700 emitComposeSubRegIndexLaneMask(raw_ostream &OS, CodeGenRegBank &RegBank, const std::string &ClName) argument
783 runMCDesc(raw_ostream &OS, CodeGenTarget &Target, CodeGenRegBank &RegBank) argument
1059 runTargetHeader(raw_ostream &OS, CodeGenTarget &Target, CodeGenRegBank &RegBank) argument
1126 runTargetDesc(raw_ostream &OS, CodeGenTarget &Target, CodeGenRegBank &RegBank) argument
1489 run(raw_ostream &OS) argument
1502 EmitRegisterInfo(RecordKeeper &RK, raw_ostream &OS) argument
[all...]
H A DDAGISelMatcherEmitter.cpp60 unsigned StartIdx, formatted_raw_ostream &OS);
62 void EmitPredicateFunctions(formatted_raw_ostream &OS);
64 void EmitHistogram(const Matcher *N, formatted_raw_ostream &OS);
67 formatted_raw_ostream &OS);
133 static uint64_t EmitVBRValue(uint64_t Val, raw_ostream &OS) { argument
135 OS << Val << ", ";
142 OS << (Val&127) << "|128,";
146 OS << Val;
148 OS << "/*" << InVal << "*/";
149 OS << ", ";
156 EmitMatcher(const Matcher *N, unsigned Indent, unsigned CurrentIdx, formatted_raw_ostream &OS) argument
616 EmitMatcherList(const Matcher *N, unsigned Indent, unsigned CurrentIdx, formatted_raw_ostream &OS) argument
633 EmitPredicateFunctions(formatted_raw_ostream &OS) argument
763 EmitHistogram(const Matcher *M, formatted_raw_ostream &OS) argument
[all...]
/external/llvm/lib/ProfileData/
H A DSampleProf.cpp62 void LineLocation::print(raw_ostream &OS) const {
63 OS << LineOffset;
65 OS << "." << Discriminator;
68 raw_ostream &llvm::sampleprof::operator<<(raw_ostream &OS, argument
70 Loc.print(OS);
71 return OS;
76 void CallsiteLocation::print(raw_ostream &OS) const {
77 LineLocation::print(OS);
78 OS << ": inlined callee: " << CalleeName;
83 inline raw_ostream &llvm::sampleprof::operator<<(raw_ostream &OS, argument
90 print(raw_ostream &OS, unsigned Indent) const argument
102 operator <<(raw_ostream &OS, const SampleRecord &Sample) argument
109 print(raw_ostream &OS, unsigned Indent) const argument
143 operator <<(raw_ostream &OS, const FunctionSamples &FS) argument
[all...]
/external/llvm/tools/llvm-cov/
H A DRenderingSupport.h21 ColoredRawOstream(const ColoredRawOstream &OS) = delete; member in class:llvm::ColoredRawOstream
24 raw_ostream &OS; member in class:llvm::ColoredRawOstream
27 ColoredRawOstream(raw_ostream &OS, bool IsColorUsed) argument
28 : OS(OS), IsColorUsed(IsColorUsed) {}
31 : OS(Other.OS), IsColorUsed(Other.IsColorUsed) {
39 OS.resetColor();
44 inline raw_ostream &operator<<(const ColoredRawOstream &OS, T &&Value) { argument
45 return OS
50 colored_ostream(raw_ostream &OS, raw_ostream::Colors Color, bool IsColorUsed = true, bool Bold = false, bool BG = false) argument
[all...]
/external/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp24 raw_ostream &llvm::operator<<(raw_ostream &OS, const PDB_VariantType &Type) { argument
26 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Bool, OS)
27 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Single, OS)
28 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Double, OS)
29 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int8, OS)
30 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int16, OS)
31 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int32, OS)
32 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int64, OS)
33 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt8, OS)
34 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt16, OS)
43 operator <<(raw_ostream &OS, const PDB_CallingConv &Conv) argument
78 operator <<(raw_ostream &OS, const PDB_DataKind &Data) argument
94 operator <<(raw_ostream &OS, const PDB_RegisterId &Reg) argument
149 operator <<(raw_ostream &OS, const PDB_LocType &Loc) argument
167 operator <<(raw_ostream &OS, const PDB_ThunkOrdinal &Thunk) argument
180 operator <<(raw_ostream &OS, const PDB_Checksum &Checksum) argument
189 operator <<(raw_ostream &OS, const PDB_Lang &Lang) argument
212 operator <<(raw_ostream &OS, const PDB_SymType &Tag) argument
250 operator <<(raw_ostream &OS, const PDB_MemberAccess &Access) argument
259 operator <<(raw_ostream &OS, const PDB_UdtType &Type) argument
269 operator <<(raw_ostream &OS, const PDB_UniqueId &Id) argument
288 operator <<(raw_ostream &OS, const Variant &Value) argument
329 operator <<(raw_ostream &OS, const VersionInfo &Version) argument
334 operator <<(raw_ostream &OS, const TagStats &Stats) argument
[all...]
H A DIPDBSourceFile.cpp20 void IPDBSourceFile::dump(raw_ostream &OS, int Indent) const { argument
21 OS.indent(Indent);
23 OS << "[";
25 OS << ChecksumType << ": ";
28 OS << format_hex_no_prefix(c, 2, true);
30 OS << "No checksum";
31 OS << "] " << getFileName() << "\n";
/external/clang/utils/TableGen/
H A DClangAttrEmitter.cpp193 virtual void writeAccessors(raw_ostream &OS) const = 0;
194 virtual void writeAccessorDefinitions(raw_ostream &OS) const {}
195 virtual void writeASTVisitorTraversal(raw_ostream &OS) const {}
196 virtual void writeCloneArgs(raw_ostream &OS) const = 0;
197 virtual void writeTemplateInstantiationArgs(raw_ostream &OS) const = 0;
198 virtual void writeTemplateInstantiation(raw_ostream &OS) const {}
199 virtual void writeCtorBody(raw_ostream &OS) const {}
200 virtual void writeCtorInitializers(raw_ostream &OS) const = 0;
201 virtual void writeCtorDefaultInitializers(raw_ostream &OS) const = 0;
202 virtual void writeCtorParameters(raw_ostream &OS) cons
606 writeValueImpl(OS); variable
1091 writeAvailabilityValue(raw_ostream &OS) argument
1100 writeGetSpellingFunction(Record &R, raw_ostream &OS) argument
1124 writePrettyPrintFunction(Record &R, const std::vector<std::unique_ptr<Argument>> &Args, raw_ostream &OS) argument
1258 writeAttrAccessorDefinition(const Record &R, raw_ostream &OS) argument
1341 WriteSemanticSpellingSwitch(const std::string &VarName, const SemanticSpellingMap &Map, raw_ostream &OS) argument
1352 emitClangAttrLateParsedList(RecordKeeper &Records, raw_ostream &OS) argument
1374 emitClangAttrTypeArgList(RecordKeeper &Records, raw_ostream &OS) argument
1400 emitClangAttrArgContextList(RecordKeeper &Records, raw_ostream &OS) argument
1430 emitClangAttrIdentifierArgList(RecordKeeper &Records, raw_ostream &OS) argument
1454 EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS) argument
1659 EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS) argument
1728 EmitAttrList(raw_ostream &OS, StringRef Class, const std::vector<Record*> &AttrList) argument
[all...]
H A DTableGenBackends.h31 void EmitClangDeclContext(RecordKeeper &RK, raw_ostream &OS);
32 void EmitClangASTNodes(RecordKeeper &RK, raw_ostream &OS,
35 void EmitClangAttrParserStringSwitches(RecordKeeper &Records, raw_ostream &OS);
36 void EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS);
37 void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS);
38 void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS);
39 void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS);
40 void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS);
41 void EmitClangAttrHasAttrImpl(RecordKeeper &Records, raw_ostream &OS);
42 void EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS);
[all...]
/external/llvm/lib/DebugInfo/DWARF/
H A DSyntaxHighlighting.cpp21 WithColor::WithColor(llvm::raw_ostream &OS, enum HighlightColor Type) : OS(OS) { argument
23 if (UseColor == cl::BOU_UNSET ? OS.has_colors() : UseColor == cl::BOU_TRUE) {
25 case Address: OS.changeColor(llvm::raw_ostream::YELLOW); break;
26 case String: OS.changeColor(llvm::raw_ostream::GREEN); break;
27 case Tag: OS.changeColor(llvm::raw_ostream::BLUE); break;
28 case Attribute: OS.changeColor(llvm::raw_ostream::CYAN); break;
29 case Enumerator: OS.changeColor(llvm::raw_ostream::MAGENTA); break;
30 case Macro: OS
[all...]
H A DDWARFCompileUnit.cpp16 void DWARFCompileUnit::dump(raw_ostream &OS) { argument
17 OS << format("0x%08x", getOffset()) << ": Compile Unit:"
26 CU->dump(OS, this, -1U);
28 OS << "<compile unit can't be parsed!>\n\n";
/external/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, bool C99) argument
134 spaceBeforePlaceHolder(raw_ostream &OS) argument
139 print(QualType t, raw_ostream &OS, StringRef PlaceHolder) argument
144 print(const Type *T, Qualifiers Quals, raw_ostream &OS, StringRef PlaceHolder) argument
234 printBefore(QualType T, raw_ostream &OS) argument
249 printBefore(const Type *T,Qualifiers Quals, raw_ostream &OS) argument
295 printAfter(QualType t, raw_ostream &OS) argument
302 printAfter(const Type *T, Qualifiers Quals, raw_ostream &OS) argument
312 printBuiltinBefore(const BuiltinType *T, raw_ostream &OS) argument
316 printBuiltinAfter(const BuiltinType *T, raw_ostream &OS) argument
318 printComplexBefore(const ComplexType *T, raw_ostream &OS) argument
322 printComplexAfter(const ComplexType *T, raw_ostream &OS) argument
326 printPointerBefore(const PointerType *T, raw_ostream &OS) argument
336 printPointerAfter(const PointerType *T, raw_ostream &OS) argument
346 printBlockPointerBefore(const BlockPointerType *T, raw_ostream &OS) argument
352 printBlockPointerAfter(const BlockPointerType *T, raw_ostream &OS) argument
358 printLValueReferenceBefore(const LValueReferenceType *T, raw_ostream &OS) argument
369 printLValueReferenceAfter(const LValueReferenceType *T, raw_ostream &OS) argument
380 printRValueReferenceBefore(const RValueReferenceType *T, raw_ostream &OS) argument
391 printRValueReferenceAfter(const RValueReferenceType *T, raw_ostream &OS) argument
402 printMemberPointerBefore(const MemberPointerType *T, raw_ostream &OS) argument
418 printMemberPointerAfter(const MemberPointerType *T, raw_ostream &OS) argument
429 printConstantArrayBefore(const ConstantArrayType *T, raw_ostream &OS) argument
435 printConstantArrayAfter(const ConstantArrayType *T, raw_ostream &OS) argument
450 printIncompleteArrayBefore(const IncompleteArrayType *T, raw_ostream &OS) argument
456 printIncompleteArrayAfter(const IncompleteArrayType *T, raw_ostream &OS) argument
462 printVariableArrayBefore(const VariableArrayType *T, raw_ostream &OS) argument
468 printVariableArrayAfter(const VariableArrayType *T, raw_ostream &OS) argument
488 printAdjustedBefore(const AdjustedType *T, raw_ostream &OS) argument
493 printAdjustedAfter(const AdjustedType *T, raw_ostream &OS) argument
497 printDecayedBefore(const DecayedType *T, raw_ostream &OS) argument
501 printDecayedAfter(const DecayedType *T, raw_ostream &OS) argument
505 printDependentSizedArrayBefore( const DependentSizedArrayType *T, raw_ostream &OS) argument
512 printDependentSizedArrayAfter( const DependentSizedArrayType *T, raw_ostream &OS) argument
522 printDependentSizedExtVectorBefore( const DependentSizedExtVectorType *T, raw_ostream &OS) argument
527 printDependentSizedExtVectorAfter( const DependentSizedExtVectorType *T, raw_ostream &OS) argument
537 printVectorBefore(const VectorType *T, raw_ostream &OS) argument
573 printVectorAfter(const VectorType *T, raw_ostream &OS) argument
577 printExtVectorBefore(const ExtVectorType *T, raw_ostream &OS) argument
581 printExtVectorAfter(const ExtVectorType *T, raw_ostream &OS) argument
589 printExceptionSpecification(raw_ostream &OS, const PrintingPolicy &Policy) const argument
616 printFunctionProtoBefore(const FunctionProtoType *T, raw_ostream &OS) argument
631 printFunctionProtoAfter(const FunctionProtoType *T, raw_ostream &OS) argument
740 printFunctionNoProtoBefore(const FunctionNoProtoType *T, raw_ostream &OS) argument
748 printFunctionNoProtoAfter(const FunctionNoProtoType *T, raw_ostream &OS) argument
761 printTypeSpec(const NamedDecl *D, raw_ostream &OS) argument
767 printUnresolvedUsingBefore(const UnresolvedUsingType *T, raw_ostream &OS) argument
771 printUnresolvedUsingAfter(const UnresolvedUsingType *T, raw_ostream &OS) argument
774 printTypedefBefore(const TypedefType *T, raw_ostream &OS) argument
777 printTypedefAfter(const TypedefType *T, raw_ostream &OS) argument
779 printTypeOfExprBefore(const TypeOfExprType *T, raw_ostream &OS) argument
786 printTypeOfExprAfter(const TypeOfExprType *T, raw_ostream &OS) argument
789 printTypeOfBefore(const TypeOfType *T, raw_ostream &OS) argument
795 printTypeOfAfter(const TypeOfType *T, raw_ostream &OS) argument
797 printDecltypeBefore(const DecltypeType *T, raw_ostream &OS) argument
804 printDecltypeAfter(const DecltypeType *T, raw_ostream &OS) argument
806 printUnaryTransformBefore(const UnaryTransformType *T, raw_ostream &OS) argument
821 printUnaryTransformAfter(const UnaryTransformType *T, raw_ostream &OS) argument
833 printAutoBefore(const AutoType *T, raw_ostream &OS) argument
846 printAutoAfter(const AutoType *T, raw_ostream &OS) argument
852 printAtomicBefore(const AtomicType *T, raw_ostream &OS) argument
860 printAtomicAfter(const AtomicType *T, raw_ostream &OS) argument
863 AppendScope(DeclContext *DC, raw_ostream &OS) argument
896 printTag(TagDecl *D, raw_ostream &OS) argument
981 printRecordBefore(const RecordType *T, raw_ostream &OS) argument
984 printRecordAfter(const RecordType *T, raw_ostream &OS) argument
986 printEnumBefore(const EnumType *T, raw_ostream &OS) argument
989 printEnumAfter(const EnumType *T, raw_ostream &OS) argument
991 printTemplateTypeParmBefore(const TemplateTypeParmType *T, raw_ostream &OS) argument
999 printTemplateTypeParmAfter(const TemplateTypeParmType *T, raw_ostream &OS) argument
1002 printSubstTemplateTypeParmBefore( const SubstTemplateTypeParmType *T, raw_ostream &OS) argument
1008 printSubstTemplateTypeParmAfter( const SubstTemplateTypeParmType *T, raw_ostream &OS) argument
1015 printSubstTemplateTypeParmPackBefore( const SubstTemplateTypeParmPackType *T, raw_ostream &OS) argument
1021 printSubstTemplateTypeParmPackAfter( const SubstTemplateTypeParmPackType *T, raw_ostream &OS) argument
1028 printTemplateSpecializationBefore( const TemplateSpecializationType *T, raw_ostream &OS) argument
1040 printTemplateSpecializationAfter( const TemplateSpecializationType *T, raw_ostream &OS) argument
1044 printInjectedClassNameBefore(const InjectedClassNameType *T, raw_ostream &OS) argument
1048 printInjectedClassNameAfter(const InjectedClassNameType *T, raw_ostream &OS) argument
1051 printElaboratedBefore(const ElaboratedType *T, raw_ostream &OS) argument
1065 printElaboratedAfter(const ElaboratedType *T, raw_ostream &OS) argument
1071 printParenBefore(const ParenType *T, raw_ostream &OS) argument
1078 printParenAfter(const ParenType *T, raw_ostream &OS) argument
1086 printDependentNameBefore(const DependentNameType *T, raw_ostream &OS) argument
1097 printDependentNameAfter(const DependentNameType *T, raw_ostream &OS) argument
1100 printDependentTemplateSpecializationBefore( const DependentTemplateSpecializationType *T, raw_ostream &OS) argument
1117 printDependentTemplateSpecializationAfter( const DependentTemplateSpecializationType *T, raw_ostream &OS) argument
1120 printPackExpansionBefore(const PackExpansionType *T, raw_ostream &OS) argument
1124 printPackExpansionAfter(const PackExpansionType *T, raw_ostream &OS) argument
1130 printAttributedBefore(const AttributedType *T, raw_ostream &OS) argument
1169 printAttributedAfter(const AttributedType *T, raw_ostream &OS) argument
1318 printObjCInterfaceBefore(const ObjCInterfaceType *T, raw_ostream &OS) argument
1323 printObjCInterfaceAfter(const ObjCInterfaceType *T, raw_ostream &OS) argument
1326 printObjCObjectBefore(const ObjCObjectType *T, raw_ostream &OS) argument
1366 printObjCObjectAfter(const ObjCObjectType *T, raw_ostream &OS) argument
1373 printObjCObjectPointerBefore(const ObjCObjectPointerType *T, raw_ostream &OS) argument
1385 printObjCObjectPointerAfter(const ObjCObjectPointerType *T, raw_ostream &OS) argument
1389 PrintTemplateArgumentList(raw_ostream &OS, const TemplateArgumentListInfo &Args, const PrintingPolicy &Policy) argument
1399 PrintTemplateArgumentList( raw_ostream &OS, const TemplateArgument *Args, unsigned NumArgs, const PrintingPolicy &Policy, bool SkipBrackets) argument
1451 PrintTemplateArgumentList(raw_ostream &OS, const TemplateArgumentLoc *Args, unsigned NumArgs, const PrintingPolicy &Policy) argument
1530 print(raw_ostream &OS, const PrintingPolicy& Policy, bool appendSpaceIfNonEmpty) const argument
1608 print(const Type *ty, Qualifiers qs, raw_ostream &OS, const PrintingPolicy &policy, const Twine &PlaceHolder) argument
[all...]
/external/llvm/tools/llvm-readobj/
H A DStackMapPrinter.h19 void prettyPrintStackMap(OStreamT &OS, const StackMapParserT &SMP) { argument
21 OS << "LLVM StackMap Version: " << SMP.getVersion()
26 OS << "\n Function address: " << F.getFunctionAddress()
30 OS << "\nNum Constants: " << SMP.getNumConstants();
33 OS << "\n #" << ++ConstantIndex << ": " << C.getValue();
36 OS << "\nNum Records: " << SMP.getNumRecords();
38 OS << "\n Record ID: " << R.getID()
44 OS << "\n #" << ++LocationIndex << ": ";
47 OS << "Register R#" << Loc.getDwarfRegNum();
50 OS << "Direc
[all...]
/external/llvm/lib/Support/
H A DTwine.cpp27 raw_svector_ostream OS(Out);
28 print(OS);
51 void Twine::printOneChild(raw_ostream &OS, Child Ptr, argument
57 Ptr.twine->print(OS);
60 OS << Ptr.cString;
63 OS << *Ptr.stdString;
66 OS << *Ptr.stringRef;
69 OS << *Ptr.smallString;
72 OS << Ptr.character;
75 OS << Pt
98 printOneChildRepr(raw_ostream &OS, Child Ptr, NodeKind Kind) const argument
[all...]
/external/llvm/include/llvm/Support/
H A DPrintable.h28 /// return Printable([Register](raw_ostream &OS) {
29 /// OS << getRegisterName(Register);
32 /// ... OS << PrintRegister(Register); ...
40 std::function<void(raw_ostream &OS)> Print;
41 Printable(const std::function<void(raw_ostream &OS)> Print)
45 static inline raw_ostream &operator<<(raw_ostream &OS, const Printable &P) { argument
46 P.Print(OS);
47 return OS;
/external/llvm/include/llvm/DebugInfo/PDB/
H A DPDBExtras.h20 raw_ostream &operator<<(raw_ostream &OS, const PDB_VariantType &Value);
21 raw_ostream &operator<<(raw_ostream &OS, const PDB_CallingConv &Conv);
22 raw_ostream &operator<<(raw_ostream &OS, const PDB_DataKind &Data);
23 raw_ostream &operator<<(raw_ostream &OS, const PDB_RegisterId &Reg);
24 raw_ostream &operator<<(raw_ostream &OS, const PDB_LocType &Loc);
25 raw_ostream &operator<<(raw_ostream &OS, const PDB_ThunkOrdinal &Thunk);
26 raw_ostream &operator<<(raw_ostream &OS, const PDB_Checksum &Checksum);
27 raw_ostream &operator<<(raw_ostream &OS, const PDB_Lang &Lang);
28 raw_ostream &operator<<(raw_ostream &OS, const PDB_SymType &Tag);
29 raw_ostream &operator<<(raw_ostream &OS, cons
[all...]
/external/llvm/lib/TableGen/
H A DTableGenBackend.cpp22 static void printLine(raw_ostream &OS, const Twine &Prefix, char Fill, argument
24 size_t Pos = (size_t)OS.tell();
27 OS << Prefix;
28 for (size_t i = (size_t)OS.tell() - Pos, e = MAX_LINE_LEN - Suffix.size();
30 OS << Fill;
31 OS << Suffix << '\n';
34 void llvm::emitSourceFileHeader(StringRef Desc, raw_ostream &OS) { argument
35 printLine(OS, "/*===- TableGen'erated file ", '-', "*- C++ -*-===*\\");
38 printLine(OS, Prefix, ' ', Suffix);
44 printLine(OS, Prefi
[all...]

Completed in 626 milliseconds

1234567891011>>