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

1234567891011>>

/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DInstructionCost.cpp19 void InstructionCost::print(raw_ostream &OS) const {
21 OS << Value;
23 OS << "Invalid";
H A DOptional.cpp11 llvm::raw_ostream &llvm::operator<<(raw_ostream &OS, std::nullopt_t) { argument
12 return OS << "None";
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmMacro.cpp15 void MCAsmMacroParameter::dump(raw_ostream &OS) const {
16 OS << "\"" << Name << "\"";
18 OS << ":req";
20 OS << ":vararg";
22 OS << " = ";
26 OS << ", ";
28 OS << T.getString();
31 OS << "\n";
34 void MCAsmMacro::dump(raw_ostream &OS) const {
35 OS << "Macr
[all...]
H A DMCSectionWasm.cpp24 static void printName(raw_ostream &OS, StringRef Name) { argument
28 OS << Name;
31 OS << '"';
34 OS << "\\\"";
36 OS << *B;
38 OS << "\\\\";
40 OS << B[0] << B[1]; // Quoted character
44 OS << '"';
48 raw_ostream &OS,
52 OS << '\
47 printSwitchToSection(const MCAsmInfo &MAI, const Triple &T, raw_ostream &OS, const MCExpr *Subsection) const argument
[all...]
H A DMCSectionELF.cpp30 static void printName(raw_ostream &OS, StringRef Name) { argument
34 OS << Name;
37 OS << '"';
40 OS << "\\\"";
42 OS << *B;
44 OS << "\\\\";
46 OS << B[0] << B[1]; // Quoted character
50 OS << '"';
54 raw_ostream &OS,
57 OS << '\
53 printSwitchToSection(const MCAsmInfo &MAI, const Triple &T, raw_ostream &OS, const MCExpr *Subsection) const argument
[all...]
H A DMCSectionCOFF.cpp38 raw_ostream &OS,
42 OS << '\t' << getName() << '\n';
46 OS << "\t.section\t" << getName() << ",\"";
48 OS << 'd';
50 OS << 'b';
52 OS << 'x';
54 OS << 'w';
56 OS << 'r';
58 OS << 'y';
60 OS << '
37 printSwitchToSection(const MCAsmInfo &MAI, const Triple &T, raw_ostream &OS, const MCExpr *Subsection) const argument
[all...]
H A DMCInst.cpp21 void MCOperand::print(raw_ostream &OS, const MCRegisterInfo *RegInfo) const { argument
22 OS << "<MCOperand ";
24 OS << "INVALID";
26 OS << "Reg:";
28 OS << RegInfo->getName(getReg());
30 OS << getReg();
32 OS << "Imm:" << getImm();
34 OS << "SFPImm:" << bit_cast<float>(getSFPImm());
36 OS << "DFPImm:" << bit_cast<double>(getDFPImm());
38 OS << "Exp
72 print(raw_ostream &OS, const MCRegisterInfo *RegInfo) const argument
81 dump_pretty(raw_ostream &OS, const MCInstPrinter *Printer, StringRef Separator, const MCRegisterInfo *RegInfo) const argument
88 dump_pretty(raw_ostream &OS, StringRef Name, StringRef Separator, const MCRegisterInfo *RegInfo) const argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMCAsmLexer.cpp38 void AsmToken::dump(raw_ostream &OS) const {
41 OS << "error";
44 OS << "identifier: " << getString();
47 OS << "int: " << getString();
50 OS << "real: " << getString();
53 OS << "string: " << getString();
56 case AsmToken::Amp: OS << "Amp"; break;
57 case AsmToken::AmpAmp: OS << "AmpAmp"; break;
58 case AsmToken::At: OS << "At"; break;
59 case AsmToken::BackSlash: OS << "BackSlas
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesTypes.cpp14 LLVM_DUMP_METHOD void CommonEntityInfo::dump(llvm::raw_ostream &OS) const {
16 OS << "[Unavailable] (" << UnavailableMsg << ")" << ' ';
18 OS << "[UnavailableInSwift] ";
20 OS << (SwiftPrivate ? "[SwiftPrivate] " : "");
22 OS << "Swift Name: " << SwiftName << ' ';
23 OS << '\n';
26 LLVM_DUMP_METHOD void CommonTypeInfo::dump(llvm::raw_ostream &OS) const {
27 static_cast<const CommonEntityInfo &>(*this).dump(OS);
29 OS << "Swift Briged Type: " << *SwiftBridge << ' ';
31 OS << "NSErro
35 dump(llvm::raw_ostream &OS) argument
84 dump(llvm::raw_ostream &OS) argument
90 dump(llvm::raw_ostream &OS) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DAttributes.cpp21 void run(raw_ostream &OS);
24 void emitTargetIndependentNames(raw_ostream &OS);
25 void emitFnAttrCompatCheck(raw_ostream &OS, bool IsStringAttr);
33 void Attributes::emitTargetIndependentNames(raw_ostream &OS) { argument
34 OS << "#ifdef GET_ATTR_NAMES\n";
35 OS << "#undef GET_ATTR_NAMES\n";
37 OS << "#ifndef ATTRIBUTE_ALL\n";
38 OS << "#define ATTRIBUTE_ALL(FIRST, SECOND)\n";
39 OS << "#endif\n\n";
42 OS << "#ifnde
77 emitFnAttrCompatCheck(raw_ostream &OS, bool IsStringAttr) argument
116 emitAttributeProperties(raw_ostream &OS) argument
132 run(raw_ostream &OS) argument
[all...]
H A DOptParserEmitter.cpp30 static raw_ostream &write_cstring(raw_ostream &OS, llvm::StringRef Str) { argument
31 OS << '"';
32 OS.write_escaped(Str);
33 OS << '"';
34 return OS;
91 void emit(raw_ostream &OS) const {
92 OS << ShouldParse;
93 OS << ", ";
94 OS << ShouldAlwaysEmit;
95 OS << ", ";
132 emitScopedNormalizedValue(raw_ostream &OS, StringRef NormalizedValue) const argument
197 EmitOptParser(RecordKeeper &Records, raw_ostream &OS) argument
[all...]
H A DPredicateExpander.cpp19 void PredicateExpander::expandTrue(raw_ostream &OS) { OS << "true"; } argument
20 void PredicateExpander::expandFalse(raw_ostream &OS) { OS << "false"; } argument
22 void PredicateExpander::expandCheckImmOperand(raw_ostream &OS, int OpIndex, argument
26 OS << FunctionMapper << "(";
27 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex
30 OS << ")";
31 OS << (shouldNegate() ? " != " : " == ") << ImmVal;
34 void PredicateExpander::expandCheckImmOperand(raw_ostream &OS, in argument
49 expandCheckImmOperandSimple(raw_ostream &OS, int OpIndex, StringRef FunctionMapper) argument
62 expandCheckImmOperandLT(raw_ostream &OS, int OpIndex, int ImmVal, StringRef FunctionMapper) argument
74 expandCheckImmOperandGT(raw_ostream &OS, int OpIndex, int ImmVal, StringRef FunctionMapper) argument
86 expandCheckRegOperand(raw_ostream &OS, int OpIndex, const Record *Reg, StringRef FunctionMapper) argument
105 expandCheckRegOperandSimple(raw_ostream &OS, int OpIndex, StringRef FunctionMapper) argument
118 expandCheckInvalidRegOperand(raw_ostream &OS, int OpIndex) argument
124 expandCheckSameRegOperand(raw_ostream &OS, int First, int Second) argument
131 expandCheckNumOperands(raw_ostream &OS, int NumOps) argument
136 expandCheckOpcode(raw_ostream &OS, const Record *Inst) argument
142 expandCheckOpcode(raw_ostream &OS, const RecVec &Opcodes) argument
172 expandCheckPseudo(raw_ostream &OS, const RecVec &Opcodes) argument
180 expandPredicateSequence(raw_ostream &OS, const RecVec &Sequence, bool IsCheckAll) argument
209 expandTIIFunctionCall(raw_ostream &OS, StringRef MethodName) argument
216 expandCheckIsRegOperand(raw_ostream &OS, int OpIndex) argument
221 expandCheckIsVRegOperand(raw_ostream &OS, int OpIndex) argument
226 expandCheckIsImmOperand(raw_ostream &OS, int OpIndex) argument
231 expandCheckFunctionPredicateWithTII( raw_ostream &OS, StringRef MCInstFn, StringRef MachineInstrFn, StringRef TIIPtr) argument
243 expandCheckFunctionPredicate(raw_ostream &OS, StringRef MCInstFn, StringRef MachineInstrFn) argument
250 expandCheckNonPortable(raw_ostream &OS, StringRef Code) argument
258 expandReturnStatement(raw_ostream &OS, const Record *Rec) argument
269 expandOpcodeSwitchCase(raw_ostream &OS, const Record *Rec) argument
284 expandOpcodeSwitchStatement(raw_ostream &OS, const RecVec &Cases, const Record *Default) argument
311 expandStatement(raw_ostream &OS, const Record *Rec) argument
327 expandPredicate(raw_ostream &OS, const Record *Rec) argument
436 expandHeader(raw_ostream &OS, const STIPredicateFunction &Fn) argument
463 expandPrologue(raw_ostream &OS, const STIPredicateFunction &Fn) argument
490 expandOpcodeGroup(raw_ostream &OS, const OpcodeGroup &Group, bool ShouldUpdateOpcodeMask) argument
529 expandBody(raw_ostream &OS, const STIPredicateFunction &Fn) argument
562 expandEpilogue(raw_ostream &OS, const STIPredicateFunction &Fn) argument
576 expandSTIPredicate(raw_ostream &OS, const STIPredicateFunction &Fn) argument
[all...]
H A DIntrinsicEmitter.cpp51 void run(raw_ostream &OS, bool Enums);
53 void EmitEnumInfo(const CodeGenIntrinsicTable &Ints, raw_ostream &OS);
54 void EmitArgKind(raw_ostream &OS);
55 void EmitIITInfo(raw_ostream &OS);
56 void EmitTargetInfo(const CodeGenIntrinsicTable &Ints, raw_ostream &OS);
58 raw_ostream &OS);
60 raw_ostream &OS);
61 void EmitGenerator(const CodeGenIntrinsicTable &Ints, raw_ostream &OS);
62 void EmitAttributes(const CodeGenIntrinsicTable &Ints, raw_ostream &OS);
64 raw_ostream &OS);
72 run(raw_ostream &OS, bool Enums) argument
110 EmitEnumInfo(const CodeGenIntrinsicTable &Ints, raw_ostream &OS) argument
171 EmitArgKind(raw_ostream &OS) argument
185 EmitIITInfo(raw_ostream &OS) argument
206 EmitTargetInfo(const CodeGenIntrinsicTable &Ints, raw_ostream &OS) argument
223 EmitIntrinsicToNameTable( const CodeGenIntrinsicTable &Ints, raw_ostream &OS) argument
233 EmitIntrinsicToOverloadTable( const CodeGenIntrinsicTable &Ints, raw_ostream &OS) argument
264 printIITEntry(raw_ostream &OS, unsigned char X) argument
268 EmitGenerator(const CodeGenIntrinsicTable &Ints, raw_ostream &OS) argument
420 EmitAttributes(const CodeGenIntrinsicTable &Ints, raw_ostream &OS) argument
[all...]
H A DInstrInfoEmitter.cpp60 void run(raw_ostream &OS);
63 void emitEnums(raw_ostream &OS);
81 void emitTIIHelperMethods(raw_ostream &OS, StringRef TargetName,
86 void emitMCIIHelperMethods(raw_ostream &OS, StringRef TargetName);
89 void emitFeatureVerifier(raw_ostream &OS, const CodeGenTarget &Target);
93 const OperandInfoMapTy &OperandInfo, raw_ostream &OS);
95 raw_ostream &OS, const CodeGenTarget &Target,
102 void emitOperandNameMappings(raw_ostream &OS, const CodeGenTarget &Target,
106 raw_ostream &OS, StringRef Namespace,
109 raw_ostream &OS, StringRe
229 EmitOperandInfo(raw_ostream &OS, OperandInfoListTy &OperandInfoList) argument
283 emitOperandNameMappings(raw_ostream &OS, const CodeGenTarget &Target, ArrayRef<const CodeGenInstruction*> NumberedInstructions) argument
355 emitOperandTypeMappings( raw_ostream &OS, const CodeGenTarget &Target, ArrayRef<const CodeGenInstruction *> NumberedInstructions) argument
497 emitLogicalOperandSizeMappings( raw_ostream &OS, StringRef Namespace, ArrayRef<const CodeGenInstruction *> NumberedInstructions) argument
584 emitLogicalOperandTypeMappings( raw_ostream &OS, StringRef Namespace, ArrayRef<const CodeGenInstruction *> NumberedInstructions) argument
673 emitMCIIHelperMethods(raw_ostream &OS, StringRef TargetName) argument
731 emitFeatureVerifier(raw_ostream &OS, const CodeGenTarget &Target) argument
892 emitTIIHelperMethods(raw_ostream &OS, StringRef TargetName, bool ExpandDefinition) argument
925 run(raw_ostream &OS) argument
1176 emitRecord( const CodeGenInstruction &Inst, unsigned Num, Record *InstrInfo, std::map<std::vector<Record *>, unsigned> &EmittedLists, const OperandInfoMapTy &OperandInfoMap, raw_ostream &OS) argument
1269 emitEnums(raw_ostream &OS) argument
1312 EmitInstrInfo(RecordKeeper &RK, raw_ostream &OS) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DInterval.cpp24 void Interval::print(raw_ostream &OS) const {
25 OS << "-------------------------------------------------------------\n"
30 OS << *Node << "\n";
32 OS << "Interval Predecessors:\n";
34 OS << *Predecessor << "\n";
36 OS << "Interval Successors:\n";
38 OS << *Successor << "\n";
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp23 raw_ostream &llvm::pdb::operator<<(raw_ostream &OS, 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_BuiltinType &Type) argument
71 operator <<(raw_ostream &OS, const PDB_CallingConv &Conv) argument
103 operator <<(raw_ostream &OS, const PDB_DataKind &Data) argument
119 operator <<(raw_ostream &OS, const llvm::codeview::CPURegister &CpuReg) argument
168 operator <<(raw_ostream &OS, const PDB_LocType &Loc) argument
188 operator <<(raw_ostream &OS, const codeview::ThunkOrdinal &Thunk) argument
202 operator <<(raw_ostream &OS, const PDB_Checksum &Checksum) argument
213 operator <<(raw_ostream &OS, const PDB_Lang &Lang) argument
241 operator <<(raw_ostream &OS, const PDB_SymType &Tag) argument
291 operator <<(raw_ostream &OS, const PDB_MemberAccess &Access) argument
301 operator <<(raw_ostream &OS, const PDB_UdtType &Type) argument
311 operator <<(raw_ostream &OS, const PDB_Machine &Machine) argument
340 dumpPDBSourceCompression(raw_ostream &OS, uint32_t Compression) argument
355 operator <<(raw_ostream &OS, const Variant &Value) argument
399 operator <<(raw_ostream &OS, const VersionInfo &Version) argument
405 operator <<(raw_ostream &OS, const TagStats &Stats) argument
[all...]
H A DIPDBSourceFile.cpp22 void IPDBSourceFile::dump(raw_ostream &OS, int Indent) const { argument
23 OS.indent(Indent);
25 OS << "[";
27 OS << ChecksumType << ": ";
30 OS << format_hex_no_prefix(c, 2, true);
32 OS << "No checksum";
33 OS << "] " << getFileName() << "\n";
/freebsd-current/contrib/llvm-project/llvm/lib/TableGen/
H A DDetailedRecordsBackend.cpp44 void run(raw_ostream &OS);
45 void printReportHeading(raw_ostream &OS);
46 void printVariables(raw_ostream &OS);
47 void printClasses(raw_ostream &OS);
48 void printRecords(raw_ostream &OS);
49 void printSectionHeading(StringRef Title, int Count, raw_ostream &OS);
50 void printDefms(Record *Rec, raw_ostream &OS);
51 void printTemplateArgs(Record *Rec, raw_ostream &OS);
52 void printSuperclasses(Record *Rec, raw_ostream &OS);
53 void printFields(Record *Rec, raw_ostream &OS);
59 run(raw_ostream &OS) argument
67 printReportHeading(raw_ostream &OS) argument
72 printVariables(raw_ostream &OS) argument
84 printClasses(raw_ostream &OS) argument
100 printRecords(raw_ostream &OS) argument
117 printSectionHeading(StringRef Title, int Count, raw_ostream &OS) argument
124 printDefms(Record *Rec, raw_ostream &OS) argument
137 printTemplateArgs(Record *Rec, raw_ostream &OS) argument
158 printSuperclasses(Record *Rec, raw_ostream &OS) argument
177 printFields(Record *Rec, raw_ostream &OS) argument
198 EmitDetailedRecords(RecordKeeper &RK, raw_ostream &OS) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAddressRange.cpp16 void DWARFAddressRange::dump(raw_ostream &OS, uint32_t AddressSize, argument
20 OS << (DumpOpts.DisplayRawContents ? " " : "[");
21 DWARFFormValue::dumpAddress(OS, AddressSize, LowPC);
22 OS << ", ";
23 DWARFFormValue::dumpAddress(OS, AddressSize, HighPC);
24 OS << (DumpOpts.DisplayRawContents ? "" : ")");
27 DWARFFormValue::dumpAddressSection(*Obj, OS, DumpOpts, SectionIndex);
30 raw_ostream &llvm::operator<<(raw_ostream &OS, const DWARFAddressRange &R) { argument
31 R.dump(OS, /* AddressSize */ 8);
32 return OS;
[all...]
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-cov/
H A DRenderingSupport.h20 ColoredRawOstream(const ColoredRawOstream &OS) = delete; member in class:llvm::ColoredRawOstream
23 raw_ostream &OS; member in class:llvm::ColoredRawOstream
26 ColoredRawOstream(raw_ostream &OS, bool IsColorUsed) argument
27 : OS(OS), IsColorUsed(IsColorUsed) {}
30 : OS(Other.OS), IsColorUsed(Other.IsColorUsed) {
38 OS.resetColor();
43 inline raw_ostream &operator<<(const ColoredRawOstream &OS, T &&Value) { argument
44 return OS
49 colored_ostream(raw_ostream &OS, raw_ostream::Colors Color, bool IsColorUsed = true, bool Bold = false, bool BG = false) argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBPropertyDefEmitter.cpp24 static void emitPropertyEnum(Record *Property, raw_ostream &OS) { argument
25 OS << "eProperty";
26 OS << Property->getName();
27 OS << ",\n";
30 static void emitProperty(Record *Property, raw_ostream &OS) { argument
31 OS << " {";
34 OS << "\"" << Property->getValueAsString("Name") << "\"";
35 OS << ", ";
39 OS << "OptionValue::eType";
40 OS << typ
128 emityProperties(std::string PropertyName, std::vector<Record *> PropertyRecords, raw_ostream &OS) argument
151 emitPropertyEnum(std::string PropertyName, std::vector<Record *> PropertyRecords, raw_ostream &OS) argument
170 EmitPropertyDefs(RecordKeeper &Records, raw_ostream &OS) argument
180 EmitPropertyEnumDefs(RecordKeeper &Records, raw_ostream &OS) argument
[all...]
/freebsd-current/contrib/llvm-project/clang/utils/TableGen/
H A DClangOpcodesEmitter.cpp32 void run(raw_ostream &OS);
37 void EmitEnum(raw_ostream &OS, StringRef N, const Record *R);
40 void EmitInterp(raw_ostream &OS, StringRef N, const Record *R);
43 void EmitDisasm(raw_ostream &OS, StringRef N, const Record *R);
46 void EmitEmitter(raw_ostream &OS, StringRef N, const Record *R);
49 void EmitProto(raw_ostream &OS, StringRef N, const Record *R);
52 void EmitGroup(raw_ostream &OS, StringRef N, const Record *R);
55 void EmitEval(raw_ostream &OS, StringRef N, const Record *R);
57 void PrintTypes(raw_ostream &OS, ArrayRef<const Record *> Types);
87 void ClangOpcodesEmitter::run(raw_ostream &OS) { argument
104 EmitEnum(raw_ostream &OS, StringRef N, const Record *R) argument
113 EmitInterp(raw_ostream &OS, StringRef N, const Record *R) argument
166 EmitDisasm(raw_ostream &OS, StringRef N, const Record *R) argument
185 EmitEmitter(raw_ostream &OS, StringRef N, const Record *R) argument
216 EmitProto(raw_ostream &OS, StringRef N, const Record *R) argument
248 EmitGroup(raw_ostream &OS, StringRef N, const Record *R) argument
336 EmitEval(raw_ostream &OS, StringRef N, const Record *R) argument
365 PrintTypes(raw_ostream &OS, ArrayRef<const Record *> Types) argument
378 EmitClangOpcodes(RecordKeeper &Records, raw_ostream &OS) argument
[all...]
H A DClangDataCollectorsEmitter.cpp7 void clang::EmitClangDataCollectors(RecordKeeper &RK, raw_ostream &OS) { argument
11 OS << "DEF_ADD_DATA(" << R.getName() << ", {\n";
13 OS << Code->getAsUnquotedString() << "}\n)";
14 OS << "\n";
16 OS << "#undef DEF_ADD_DATA\n";
H A DClangAttrEmitter.cpp239 virtual void writeAccessors(raw_ostream &OS) const = 0;
240 virtual void writeAccessorDefinitions(raw_ostream &OS) const {}
241 virtual void writeASTVisitorTraversal(raw_ostream &OS) const {}
242 virtual void writeCloneArgs(raw_ostream &OS) const = 0;
243 virtual void writeTemplateInstantiationArgs(raw_ostream &OS) const = 0;
244 virtual void writeTemplateInstantiation(raw_ostream &OS) const {}
245 virtual void writeCtorBody(raw_ostream &OS) const {}
246 virtual void writeCtorInitializers(raw_ostream &OS) const = 0;
247 virtual void writeCtorDefaultInitializers(raw_ostream &OS) const = 0;
248 virtual void writeCtorParameters(raw_ostream &OS) cons
814 writeValueImpl(OS); variable
821 writeDumpImpl(OS); variable
1002 writeConversion(raw_ostream &OS, bool Header) const argument
1136 writeConversion(raw_ostream &OS, bool Header) const argument
1520 writeAvailabilityValue(raw_ostream &OS) argument
1530 writeDeprecatedAttrValue(raw_ostream &OS, std::string &Variety) argument
1539 writeGetSpellingFunction(const Record &R, raw_ostream &OS) argument
1563 writePrettyPrintFunction(const Record &R, const std::vector<std::unique_ptr<Argument>> &Args, raw_ostream &OS) argument
1720 writeAttrAccessorDefinition(const Record &R, raw_ostream &OS) argument
1814 WriteSemanticSpellingSwitch(const std::string &VarName, const SemanticSpellingMap &Map, raw_ostream &OS) argument
1825 emitClangAttrLateParsedList(RecordKeeper &Records, raw_ostream &OS) argument
2073 emitMatchRuleList(raw_ostream &OS) argument
2156 generateStrictConformsTo(const Record &Attr, raw_ostream &OS) argument
2186 generateParsingHelpers(raw_ostream &OS) argument
2294 emitClangAttrTypeArgList(RecordKeeper &Records, raw_ostream &OS) argument
2317 emitClangAttrArgContextList(RecordKeeper &Records, raw_ostream &OS) argument
2376 emitClangAttrVariadicIdentifierArgList(RecordKeeper &Records, raw_ostream &OS) argument
2398 emitClangAttrUnevaluatedStringLiteralList(RecordKeeper &Records, raw_ostream &OS) argument
2425 emitClangAttrIdentifierArgList(RecordKeeper &Records, raw_ostream &OS) argument
2451 emitClangAttrThisIsaIdentifierArgList(RecordKeeper &Records, raw_ostream &OS) argument
2471 emitClangAttrAcceptsExprPack(RecordKeeper &Records, raw_ostream &OS) argument
2493 emitFormInitializer(raw_ostream &OS, const FlattenedSpelling &Spelling, StringRef SpellingIndex) argument
2505 emitAttributes(RecordKeeper &Records, raw_ostream &OS, bool Header) argument
2988 EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS) argument
3000 EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS) argument
3037 emitAttrList(raw_ostream &OS, StringRef Class, const std::vector<Record*> &AttrList) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextAPIError.cpp21 void TextAPIError::log(raw_ostream &OS) const {
24 OS << "no such architecture";
27 OS << "invalid input format";
33 OS << ": " << Msg;
34 OS << "\n";

Completed in 313 milliseconds

1234567891011>>