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

1234

/freebsd-11.0-release/contrib/llvm/lib/TableGen/
H A DStringMatcher.cpp47 std::string Indent(IndentCount*2+4, ' ');
58 OS << Indent << Split.first << "\t // \"" << Matches[0]->first << "\"\n";
63 OS << Indent << Split.first << "\n";
86 OS << Indent << "if (" << StrVariableName << "[" << CharNo << "] != '"
88 OS << Indent << " break;\n"; local
92 OS << Indent << "if (memcmp(" << StrVariableName << ".data()+" << CharNo
95 OS << Indent << " break;\n"; local
103 OS << Indent << "switch (" << StrVariableName << "[" << CharNo << "]) {\n";
104 OS << Indent << "default: break;\n"; local
109 OS << Indent << "cas
114 OS << Indent << " break;\\n"; local
117 OS << Indent << "}\\n"; local
[all...]
/freebsd-11.0-release/contrib/llvm/lib/DebugInfo/PDB/
H A DIPDBSourceFile.cpp20 void IPDBSourceFile::dump(raw_ostream &OS, int Indent) const {
21 OS.indent(Indent);
H A DPDBSymbol.cpp106 Dumper.dump(OS, Indent, *DerivedThis);
110 void PDBSymbol::defaultDump(raw_ostream &OS, int Indent) const {
111 RawSymbol->dump(OS, Indent);
/freebsd-11.0-release/contrib/llvm/lib/ProfileData/
H A DSampleProf.cpp89 /// \brief Print the sample record to the stream \p OS indented by \p Indent.
90 void SampleRecord::print(raw_ostream &OS, unsigned Indent) const {
109 void FunctionSamples::print(raw_ostream &OS, unsigned Indent) const {
113 OS.indent(Indent);
118 OS.indent(Indent + 2);
121 OS.indent(Indent);
127 OS.indent(Indent);
133 OS.indent(Indent + 2);
135 CS->second.print(OS, Indent + 4);
H A DSampleProfWriter.cpp45 if (Indent == 0)
53 OS.indent(Indent + 1);
68 Indent += 1;
72 OS.indent(Indent);
80 Indent -= 1;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Format/
H A DContinuationIndenter.h148 ParenState(unsigned Indent, unsigned IndentLevel, unsigned LastSpace, argument
150 : Indent(Indent), IndentLevel(IndentLevel), LastSpace(LastSpace),
151 NestedBlockIndent(Indent), BreakBeforeClosingBrace(false),
160 unsigned Indent; member in struct:clang::format::ParenState
266 if (Indent != Other.Indent)
267 return Indent < Other.Indent;
H A DUnwrappedLineFormatter.h51 unsigned Indent, bool InPPDirective);
H A DUnwrappedLineFormatter.cpp48 unsigned getIndent() const { return Indent; }
59 Indent = Line.Level * Style.IndentWidth + AdditionalIndent;
62 Indent = getIndent(IndentForLevel, Line.Level);
64 if (static_cast<int>(Indent) + Offset >= 0)
65 Indent += Offset;
126 unsigned Indent = 0; member in class:clang::format::__anon3865::LevelIndentTracker
161 tryFitMultipleLinesInOne(unsigned Indent, argument
177 if (Style.ColumnLimit > 0 && Indent > Style.ColumnLimit)
181 Style.ColumnLimit == 0 ? UINT_MAX : Style.ColumnLimit - Indent;
465 llvm::dbgs() << P.Indent << "|" <<
823 unsigned Indent = IndentTracker.getIndent(); local
902 formatFirstToken(FormatToken &RootToken, const AnnotatedLine *PreviousLine, unsigned IndentLevel, unsigned Indent, bool InPPDirective) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp90 Indent(o, indent) << "<dict>\n";
93 Indent(o, indent) << "<key>kind</key><string>control</string>\n";
96 Indent(o, indent) << "<key>edges</key>\n";
98 Indent(o, indent) << "<array>\n";
102 Indent(o, indent) << "<dict>\n";
108 Indent(o, indent) << "<key>start</key>\n";
114 Indent(o, indent) << "<key>end</key>\n";
120 Indent(o, indent) << "</dict>\n";
123 Indent(o, indent) << "</array>\n";
129 Indent(
[all...]
/freebsd-11.0-release/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLoc.cpp21 const unsigned Indent = 12; local
24 OS.indent(Indent);
27 OS.indent(Indent) << " Ending address offset: "
29 OS.indent(Indent) << " Location description: ";
114 const unsigned Indent = 12; local
117 OS.indent(Indent);
119 OS.indent(Indent) << " Length: " << E.Length << '\n';
120 OS.indent(Indent) << " Location description: ";
/freebsd-11.0-release/contrib/llvm/include/llvm/DebugInfo/PDB/
H A DIPDBSourceFile.h27 void dump(raw_ostream &OS, int Indent) const;
H A DPDBSymbolExe.h42 int Indent) const;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DStmtPrinter.cpp55 Indent();
61 Indent() << "<<<NULL STATEMENT>>>\n";
83 raw_ostream &Indent(int Delta = 0) { function in class:__anon3689::StmtPrinter
96 Indent() << "<<unknown stmt type>>\n";
121 Indent() << "}";
134 Indent() << ";\n";
138 Indent();
144 Indent();
150 Indent(-1) << "case ";
162 Indent(
[all...]
/freebsd-11.0-release/contrib/llvm/tools/llvm-pdbdump/
H A DTypeDumper.cpp35 Printer.Indent();
44 Printer.Indent();
53 Printer.Indent();
H A DLinePrinter.cpp42 LinePrinter::LinePrinter(int Indent, llvm::raw_ostream &Stream) argument
43 : OS(Stream), IndentSpaces(Indent), CurrentIndent(0) {
59 void LinePrinter::Indent() { CurrentIndent += IndentSpaces; } function in class:LinePrinter
H A DEnumDumper.cpp36 Printer.Indent();
H A DLinePrinter.h26 LinePrinter(int Indent, raw_ostream &Stream);
28 void Indent();
/freebsd-11.0-release/contrib/llvm/include/llvm/TableGen/
H A DStringMatcher.h45 void Emit(unsigned Indent = 0) const;
/freebsd-11.0-release/contrib/llvm/tools/llvm-diff/
H A DDiffConsumer.h71 unsigned Indent; member in class:llvm::DiffConsumer
79 : out(errs()), Differences(false), Indent(0) {}
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DModule.cpp321 void Module::print(raw_ostream &OS, unsigned Indent) const {
322 OS.indent(Indent);
330 OS.indent(Indent + 2);
340 OS.indent(Indent + 2);
353 OS.indent(Indent + 2);
358 OS.indent(Indent + 2);
365 OS.indent(Indent + 2);
388 OS.indent(Indent + 2);
402 (*MI)->print(OS, Indent + 2);
405 OS.indent(Indent
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp589 s->Indent();
619 s->Indent("module = ");
626 s->Indent("compile unit = ");
632 s->Indent("function = ");
639 s->Indent("location = ");
651 s->Indent ("re-exported target = ");
653 s->Indent("symbol = ");
663 s->Indent();
694 s->Indent();
703 s->Indent();
[all...]
H A DWatchpointOptions.cpp185 s->Indent();
188 s->Indent();
219 s->Indent("watchpoint commands:\n");
227 s->Indent(data->user_source.GetStringAtIndex(i));
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DSymbolContext.cpp215 s->Indent();
275 s->Indent(" Module: file = \"");
285 s->Indent("CompileUnit: ");
292 s->Indent(" Function: ");
299 s->Indent(" FuncType: ");
322 s->Indent(" Blocks: ");
324 s->Indent(" ");
332 s->Indent(" LineEntry: ");
339 s->Indent(" Symbol: ");
346 s->Indent(" Variabl
[all...]
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DLexicalScopes.cpp316 void LexicalScope::dump(unsigned Indent) const {
319 err.indent(Indent);
322 err.indent(Indent);
325 err << std::string(Indent, ' ') << "Abstract Scope\n";
328 err << std::string(Indent + 2, ' ') << "Children ...\n";
331 Children[i]->dump(Indent + 2);
/freebsd-11.0-release/contrib/llvm/include/llvm/ProfileData/
H A DSampleProfWriter.h87 : SampleProfileWriter(OS), Indent(0) {}
95 /// Indent level to use when writing.
98 unsigned Indent; member in class:llvm::sampleprof::SampleProfileWriterText

Completed in 265 milliseconds

1234