Searched refs:IndentLevel (Results 1 - 25 of 29) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DLinePrinter.h96 explicit PrintScope(LinePrinter &P, uint32_t IndentLevel) argument
97 : P(P), IndentLevel(IndentLevel) {}
99 : P(Other.P), IndentLevel(Other.IndentLevel), LabelWidth(LabelWidth) {}
102 uint32_t IndentLevel; member in struct:llvm::pdb::PrintScope
121 Amount = Scope->IndentLevel;
H A DFormatUtil.h56 uint32_t IndentLevel, uint32_t C, uint32_t FlagsPerLine,
60 std::string typesetItemList(ArrayRef<std::string> Opts, uint32_t IndentLevel,
63 std::string typesetStringList(uint32_t IndentLevel,
H A DFormatUtil.cpp74 uint32_t IndentLevel, uint32_t GroupSize,
85 Result += std::string(formatv("{0}", fmt_repeat(' ', IndentLevel)));
91 std::string llvm::pdb::typesetStringList(uint32_t IndentLevel, argument
95 Result += std::string(formatv("\n{0}{1}", fmt_repeat(' ', IndentLevel), S));
188 std::string llvm::pdb::formatSectionCharacteristics(uint32_t IndentLevel, argument
257 return typesetItemList(Opts, IndentLevel, FlagsPerLine, Separator);
73 typesetItemList(ArrayRef<std::string> Opts, uint32_t IndentLevel, uint32_t GroupSize, StringRef Sep) argument
H A DMinimalSymbolDumper.cpp28 static std::string formatLocalSymFlags(uint32_t IndentLevel, argument
45 return typesetItemList(Opts, 4, IndentLevel, " | ");
48 static std::string formatExportFlags(uint32_t IndentLevel, ExportFlags Flags) { argument
60 return typesetItemList(Opts, 4, IndentLevel, " | ");
63 static std::string formatCompileSym2Flags(uint32_t IndentLevel, argument
79 return typesetItemList(Opts, 4, IndentLevel, " | ");
82 static std::string formatCompileSym3Flags(uint32_t IndentLevel, argument
102 return typesetItemList(Opts, 4, IndentLevel, " | ");
105 static std::string formatFrameProcedureOptions(uint32_t IndentLevel, argument
135 return typesetItemList(Opts, 4, IndentLevel, " | ");
138 formatPublicSymFlags(uint32_t IndentLevel, PublicSymFlags Flags) argument
151 formatProcSymFlags(uint32_t IndentLevel, ProcSymFlags Flags) argument
343 formatGaps(uint32_t IndentLevel, ArrayRef<LocalVariableAddrGap> Gaps) argument
[all...]
H A DBytesOutputStyle.cpp325 uint32_t Digits, uint32_t IndentLevel,
339 AutoIndent Indent2(P, IndentLevel);
354 static void iterateModules(PDBFile &File, LinePrinter &P, uint32_t IndentLevel, argument
369 iterateOneModule(File, P, Modules, opts::bytes::ModuleIndex, 1, IndentLevel,
375 iterateOneModule(File, P, Modules, I, Digits, IndentLevel, Callback);
323 iterateOneModule(PDBFile &File, LinePrinter &P, const DbiModuleList &Modules, uint32_t I, uint32_t Digits, uint32_t IndentLevel, CallbackT Callback) argument
H A DMinimalTypeDumper.cpp31 static std::string formatClassOptions(uint32_t IndentLevel, argument
74 return typesetItemList(Opts, 4, IndentLevel, " | ");
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DPredicateExpander.h31 unsigned IndentLevel; member in class:llvm::PredicateExpander
40 IndentLevel(1U), TargetName(Target) {}
44 unsigned getIndentLevel() const { return IndentLevel; }
51 void setIndentLevel(unsigned Level) { IndentLevel = Level; }
52 void increaseIndentLevel() { ++IndentLevel; }
53 void decreaseIndentLevel() { --IndentLevel; }
H A DPredicateExpander.cpp429 unsigned IndentLevel = getIndentLevel(); local
431 OS.indent(IndentLevel * 2);
438 OS.indent((1 + IndentLevel) * 2);
445 OS.indent(IndentLevel * 2);
493 unsigned IndentLevel = getIndentLevel(); local
494 OS.indent(IndentLevel * 2);
496 OS.indent(IndentLevel * 2);
498 OS.indent(IndentLevel * 2);
504 OS.indent(IndentLevel * 2);
517 OS.indent(IndentLevel *
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DScopedPrinter.cpp35 (IndentLevel + 1) * 2, true)
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DFormat.h220 uint32_t IndentLevel; // Number of characters to indent each line. member in class:llvm::FormattedBytes
230 : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL),
241 uint32_t IndentLevel = 0, bool Upper = false) {
242 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine,
250 uint32_t IndentLevel = 0, bool Upper = false) {
251 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine,
H A DScopedPrinter.h71 ScopedPrinter(raw_ostream &OS) : OS(OS), IndentLevel(0) {}
75 void indent(int Levels = 1) { IndentLevel += Levels; }
78 IndentLevel = std::max(0, IndentLevel - Levels);
81 void resetIndent() { IndentLevel = 0; }
83 int getIndentLevel() { return IndentLevel; }
89 for (int i = 0; i < IndentLevel; ++i)
340 int IndentLevel; member in class:llvm::ScopedPrinter
/netbsd-current/external/apache2/llvm/dist/clang/lib/Format/
H A DWhitespaceManager.h170 return std::make_tuple(Tok->IndentLevel, Tok->NestingLevel,
219 void appendIndentText(std::string &Text, unsigned IndentLevel,
H A DWhitespaceManager.cpp964 ReplacementText, C.Tok->IndentLevel, std::max(0, C.Spaces),
1010 unsigned IndentLevel, unsigned Spaces,
1040 unsigned Indentation = IndentLevel * Style.IndentWidth;
1053 IsAligned ? IndentLevel * Style.IndentWidth : Spaces;
1009 appendIndentText(std::string &Text, unsigned IndentLevel, unsigned Spaces, unsigned WhitespaceStartColumn, bool IsAligned) argument
H A DTokenAnnotator.cpp2562 unsigned IndentLevel = Line.Level; local
2568 assert(IndentLevel > 0);
2569 --IndentLevel;
2571 Current->IndentLevel = IndentLevel;
2573 ++IndentLevel;
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
H A DBitcodeAnalyzer.h94 Error parseBlock(unsigned BlockID, unsigned IndentLevel,
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp494 unsigned IndentLevel = InputIndentLevel; local
496 Indent(o, IndentLevel) << "<key>ExecutedLines</key>\n";
497 Indent(o, IndentLevel) << "<dict>\n";
498 IndentLevel++;
504 Indent(o, IndentLevel) << "<key>" << FileKey << "</key>\n";
505 Indent(o, IndentLevel) << "<array>\n";
506 IndentLevel++;
508 Indent(o, IndentLevel);
511 IndentLevel--;
512 Indent(o, IndentLevel) << "</arra
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-cov/
H A DSourceCoverageViewText.h79 unsigned IndentLevel) override;
H A DSourceCoverageViewHTML.h88 unsigned IndentLevel) override;
H A DSourceCoverageView.h242 unsigned IndentLevel) = 0;
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DRecordLayoutBuilder.cpp3459 CharUnits Offset, unsigned IndentLevel) {
3461 OS.indent(IndentLevel * 2);
3466 unsigned IndentLevel) {
3479 OS.indent(IndentLevel * 2);
3482 static void PrintIndentNoOffset(raw_ostream &OS, unsigned IndentLevel) { argument
3484 OS.indent(IndentLevel * 2);
3490 unsigned IndentLevel,
3497 PrintOffset(OS, Offset, IndentLevel);
3505 IndentLevel++;
3515 PrintOffset(OS, Offset, IndentLevel);
3458 PrintOffset(raw_ostream &OS, CharUnits Offset, unsigned IndentLevel) argument
3464 PrintBitFieldOffset(raw_ostream &OS, CharUnits Offset, unsigned Begin, unsigned Width, unsigned IndentLevel) argument
3487 DumpRecordLayout(raw_ostream &OS, const RecordDecl *RD, const ASTContext &C, CharUnits Offset, unsigned IndentLevel, const char* Description, bool PrintSizeInfo, bool IncludeVirtualBases) argument
[all...]
H A DStmtPrinter.cpp68 unsigned IndentLevel; member in class:__anon339::StmtPrinter
78 : OS(os), IndentLevel(Indentation), Helper(helper), Policy(Policy),
84 IndentLevel += SubIndent;
95 IndentLevel -= SubIndent;
100 IndentLevel += (PrefixWidth + 1) / 2;
106 IndentLevel -= (PrefixWidth + 1) / 2;
139 for (int i = 0, e = IndentLevel+Delta; i < e; ++i)
183 D->print(OS, Policy, IndentLevel);
188 Decl::printGroup(Decls.data(), Decls.size(), OS, Policy, IndentLevel);
352 Node->getLoopVariable()->print(OS, SubPolicy, IndentLevel);
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugFrame.h286 /// \param IndentLevel specify the indent level as an integer. The UnwindRow
287 /// will be output to the stream preceded by 2 * IndentLevel number of spaces.
289 unsigned IndentLevel = 0) const;
331 /// \param IndentLevel specify the indent level as an integer. The UnwindRow
332 /// will be output to the stream preceded by 2 * IndentLevel number of spaces.
334 unsigned IndentLevel = 0) const;
439 bool IsEH, unsigned IndentLevel = 1) const;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp169 unsigned IndentLevel) const {
170 OS.indent(2 * IndentLevel);
188 unsigned IndentLevel) const {
190 Row.dump(OS, MRI, IsEH, IndentLevel);
873 unsigned IndentLevel) const {
876 OS.indent(2 * IndentLevel);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeAnalyzer.cpp733 Error BitcodeAnalyzer::parseBlock(unsigned BlockID, unsigned IndentLevel, argument
736 std::string Indent(IndentLevel * 2, ' ');
823 if (Error E = parseBlock(Entry.ID, IndentLevel + 1, O, CheckHash))
/netbsd-current/external/apache2/llvm/dist/clang/tools/c-index-test/
H A Dc-index-test.c456 int IndentLevel; member in struct:CommentASTDumpingContext
465 Ctx->IndentLevel++;
466 for (i = 0, e = Ctx->IndentLevel; i != e; ++i)
634 Ctx->IndentLevel--;
639 Ctx.IndentLevel = 1;

Completed in 209 milliseconds

12