Searched refs:Indent (Results 1 - 25 of 146) sorted by relevance

123456

/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeVTShape.cpp15 void NativeTypeVTShape::dump(raw_ostream &OS, int Indent, argument
18 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields);
20 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session,
23 dumpSymbolField(OS, "count", getCount(), Indent);
24 dumpSymbolField(OS, "constType", isConstType(), Indent);
25 dumpSymbolField(OS, "unalignedType", isUnalignedType(), Indent);
26 dumpSymbolField(OS, "volatileType", isVolatileType(), Indent);
H A DNativeTypeArray.cpp26 void NativeTypeArray::dump(raw_ostream &OS, int Indent, argument
29 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields);
31 dumpSymbolField(OS, "arrayIndexTypeId", getArrayIndexTypeId(), Indent);
32 dumpSymbolIdField(OS, "elementTypeId", getTypeId(), Indent, Session,
35 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session,
38 dumpSymbolField(OS, "length", getLength(), Indent);
39 dumpSymbolField(OS, "count", getCount(), Indent);
40 dumpSymbolField(OS, "constType", isConstType(), Indent);
41 dumpSymbolField(OS, "unalignedType", isUnalignedType(), Indent);
42 dumpSymbolField(OS, "volatileType", isVolatileType(), Indent);
[all...]
H A DNativeCompilandSymbol.cpp26 void NativeCompilandSymbol::dump(raw_ostream &OS, int Indent, argument
29 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields);
31 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session,
34 dumpSymbolField(OS, "libraryName", getLibraryName(), Indent);
35 dumpSymbolField(OS, "name", getName(), Indent);
37 Indent);
H A DNativeSymbolEnumerator.cpp27 void NativeSymbolEnumerator::dump(raw_ostream &OS, int Indent, argument
30 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields);
31 dumpSymbolIdField(OS, "classParentId", getClassParentId(), Indent, Session,
34 dumpSymbolIdField(OS, "lexicalParentId", getLexicalParentId(), Indent,
37 dumpSymbolField(OS, "name", getName(), Indent);
38 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session,
40 dumpSymbolField(OS, "dataKind", getDataKind(), Indent);
41 dumpSymbolField(OS, "locationType", getLocationType(), Indent);
42 dumpSymbolField(OS, "constType", isConstType(), Indent);
43 dumpSymbolField(OS, "unalignedType", isUnalignedType(), Indent);
[all...]
H A DNativeTypePointer.cpp34 void NativeTypePointer::dump(raw_ostream &OS, int Indent, argument
37 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields);
40 dumpSymbolIdField(OS, "classParentId", getClassParentId(), Indent, Session,
44 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session,
47 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session,
49 dumpSymbolField(OS, "length", getLength(), Indent);
50 dumpSymbolField(OS, "constType", isConstType(), Indent);
51 dumpSymbolField(OS, "isPointerToDataMember", isPointerToDataMember(), Indent);
53 Indent);
54 dumpSymbolField(OS, "RValueReference", isRValueReference(), Indent);
[all...]
H A DNativeTypeTypedef.cpp14 void NativeTypeTypedef::dump(raw_ostream &OS, int Indent, argument
17 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields);
18 dumpSymbolField(OS, "name", getName(), Indent);
19 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session,
H A DNativeTypeUDT.cpp37 void NativeTypeUDT::dump(raw_ostream &OS, int Indent, argument
41 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields);
43 dumpSymbolField(OS, "name", getName(), Indent);
44 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session,
48 dumpSymbolIdField(OS, "unmodifiedTypeId", getUnmodifiedTypeId(), Indent,
53 Indent);
54 dumpSymbolField(OS, "length", getLength(), Indent);
55 dumpSymbolField(OS, "udtKind", getUdtKind(), Indent);
56 dumpSymbolField(OS, "constructor", hasConstructor(), Indent);
57 dumpSymbolField(OS, "constType", isConstType(), Indent);
[all...]
H A DNativeTypeFunctionSig.cpp33 void dump(raw_ostream &OS, int Indent, PdbSymbolIdField ShowIdFields,
35 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields);
37 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session,
108 void NativeTypeFunctionSig::dump(raw_ostream &OS, int Indent, argument
112 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields);
114 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session,
118 dumpSymbolField(OS, "callingConvention", getCallingConvention(), Indent);
119 dumpSymbolField(OS, "count", getCount(), Indent);
120 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session,
123 dumpSymbolField(OS, "thisAdjust", getThisAdjust(), Indent);
[all...]
H A DNativeTypeEnum.cpp128 void NativeTypeEnum::dump(raw_ostream &OS, int Indent, argument
131 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields);
134 Indent);
135 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session,
138 dumpSymbolField(OS, "name", getName(), Indent);
139 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session,
142 dumpSymbolIdField(OS, "unmodifiedTypeId", getUnmodifiedTypeId(), Indent,
145 dumpSymbolField(OS, "length", getLength(), Indent);
146 dumpSymbolField(OS, "constructor", hasConstructor(), Indent);
147 dumpSymbolField(OS, "constType", isConstType(), Indent);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DCodeExpander.h37 StringRef Indent; member in class:llvm::CodeExpander
42 StringRef Indent = " ")
44 ShowExpansions(ShowExpansions), Indent(Indent) {}
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DStringMatcher.cpp52 std::string Indent(IndentCount * 2 + 4, ' ');
64 OS << Indent << Split.first << "\t // \"" << Matches[0]->first << "\"\n";
69 OS << Indent << Split.first << "\n";
92 OS << Indent << "if (" << StrVariableName << "[" << CharNo << "] != '"
94 OS << Indent << " break;\n"; local
98 OS << Indent << "if (memcmp(" << StrVariableName << ".data()+" << CharNo
101 OS << Indent << " break;\n"; local
110 OS << Indent << "switch (" << StrVariableName << "[" << CharNo << "]) {\n";
111 OS << Indent << "default: break;\n"; local
116 OS << Indent << "cas
122 OS << Indent << " break;\\n"; local
125 OS << Indent << "}\\n"; local
131 Emit(unsigned Indent, bool IgnoreDuplicates) const argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DIPDBSourceFile.cpp22 void IPDBSourceFile::dump(raw_ostream &OS, int Indent) const {
23 OS.indent(Indent);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DStmtPrinter.cpp91 Indent();
97 Indent() << "<<<NULL STATEMENT>>>" << NL;
142 raw_ostream &Indent(int Delta = 0) { function in class:__anon269::StmtPrinter
155 Indent() << "<<unknown stmt type>>" << NL;
183 Indent() << "}";
196 Indent() << ";" << NL;
200 Indent();
206 Indent();
212 Indent(-1) << "case ";
224 Indent(
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DIPDBSourceFile.h27 void dump(raw_ostream &OS, int Indent) const;
H A DPDBSymbolExe.h39 int Indent) const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeTypeTypedef.h28 void dump(raw_ostream &OS, int Indent, PdbSymbolIdField ShowIdFields,
H A DNativeCompilandSymbol.h23 void dump(raw_ostream &OS, int Indent, PdbSymbolIdField ShowIdFields,
H A DNativeTypeVTShape.h29 void dump(raw_ostream &OS, int Indent, PdbSymbolIdField ShowIdFields,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointName.cpp43 s->Indent();
65 s->Indent();
74 s->Indent();
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp196 Indent(o, indent) << "<key>ranges</key>\n";
197 Indent(o, indent) << "<array>\n";
208 Indent(o, indent) << "</array>\n";
215 Indent(o, indent) << "<key>extended_message</key>\n";
216 Indent(o, indent);
221 Indent(o, indent) << "<key>message</key>\n";
222 Indent(o, indent);
234 Indent(o, indent) << "<key>fixits</key>\n";
235 Indent(o, indent) << "<array>\n";
241 Indent(
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DContinuationIndenter.h202 ParenState(const FormatToken *Tok, unsigned Indent, unsigned LastSpace, argument
204 : Tok(Tok), Indent(Indent), LastSpace(LastSpace),
205 NestedBlockIndent(Indent), BreakBeforeClosingBrace(false),
222 unsigned Indent; member in struct:clang::format::ParenState
333 if (Indent != Other.Indent)
334 return Indent < Other.Indent;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLoc.h68 unsigned Indent) const;
79 unsigned Indent, DIDumpOptions DumpOpts,
116 unsigned Indent, DIDumpOptions DumpOpts,
136 unsigned Indent, DIDumpOptions DumpOpts,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProf.cpp106 /// Print the sample record to the stream \p OS indented by \p Indent.
107 void SampleRecord::print(raw_ostream &OS, unsigned Indent) const {
128 void FunctionSamples::print(raw_ostream &OS, unsigned Indent) const {
132 OS.indent(Indent);
137 OS.indent(Indent + 2);
140 OS.indent(Indent);
146 OS.indent(Indent);
153 OS.indent(Indent + 2);
155 FS.second.print(OS, Indent + 4);
158 OS.indent(Indent);
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DModule.cpp419 void Module::print(raw_ostream &OS, unsigned Indent) const {
420 OS.indent(Indent);
429 OS.indent(Indent + 2);
439 OS.indent(Indent + 2);
452 OS.indent(Indent + 2);
457 OS.indent(Indent + 2);
464 OS.indent(Indent + 2);
488 OS.indent(Indent + 2);
497 OS.indent(Indent + 2);
514 OS.indent(Indent
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.cpp355 void VPInstruction::print(raw_ostream &O, const Twine &Indent) const {
356 O << " +\n" << Indent << "\"EMIT "; local
572 OS << Indent << getUID(Tail) << " -> " << getUID(Head);
598 OS << Indent << getUID(BasicBlock) << " [label =\n";
600 OS << Indent << "\"" << DOT::EscapeString(BasicBlock->getName()) << ":\\n\"";
606 OS << " +\n" << Indent << " \"BlockPredicate: "; local
616 Recipe.print(OS, Indent);
621 OS << " +\n" << Indent << " \"CondBit: "; local
632 OS << "\n" << Indent << "]\n"; local
637 OS << Indent << "subgrap
648 OS << Indent << "}\\n"; local
674 O << " +\\n" << Indent << "\\"WIDEN\\\\l\\""; local
681 O << " +\\n" << Indent << "\\"WIDEN-INDUCTION"; local
691 O << " +\\n" << Indent << "\\"WIDEN-GEP "; local
705 O << " +\\n" << Indent << "\\"BLEND "; local
[all...]

Completed in 145 milliseconds

123456