Home
last modified time | relevance | path

Searched refs:Indentation (Results 1 – 19 of 19) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DDeclPrinter.cpp32 unsigned Indentation; member in __anon88795d050111::DeclPrinter
35 raw_ostream& Indent() { return Indent(Indentation); } in Indent()
36 raw_ostream& Indent(unsigned Indentation);
54 const ASTContext &Context, unsigned Indentation = 0, in DeclPrinter() argument
56 : Out(Out), Policy(Policy), Context(Context), Indentation(Indentation), in DeclPrinter()
126 void Decl::print(raw_ostream &Out, unsigned Indentation, in print() argument
128 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation); in print()
132 unsigned Indentation, bool PrintInstantiation) const { in print() argument
133 DeclPrinter Printer(Out, Policy, getASTContext(), Indentation, in print()
187 unsigned Indentation) { in printGroup() argument
[all …]
DTypePrinter.cpp104 unsigned Indentation; member in __anon0f20a78f0111::TypePrinter
109 explicit TypePrinter(const PrintingPolicy &Policy, unsigned Indentation = 0) in TypePrinter() argument
110 : Policy(Policy), Indentation(Indentation) {} in TypePrinter()
1279 D->print(OS, SubPolicy, Indentation); in printTag()
1490 OwnedTagDecl->print(OS, SubPolicy, Indentation); in printElaboratedBefore()
2246 const Twine &PlaceHolder, unsigned Indentation) const { in print()
2248 Indentation); in print()
2253 const Twine &PlaceHolder, unsigned Indentation) { in print() argument
2257 TypePrinter(policy, Indentation).print(ty, qs, OS, PH); in print()
DStmtPrinter.cpp77 const PrintingPolicy &Policy, unsigned Indentation = 0, in StmtPrinter() argument
79 : OS(os), IndentLevel(Indentation), Helper(helper), Policy(Policy), in StmtPrinter()
82 void PrintStmt(Stmt *S) { PrintStmt(S, Policy.Indentation); } in PrintStmt()
2568 const PrintingPolicy &Policy, unsigned Indentation, in printPretty() argument
2570 StmtPrinter P(Out, Helper, Policy, Indentation, NL, Context); in printPretty()
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
DFixedLenDecoderEmitter.cpp144 unsigned Indentation, unsigned BitWidth,
148 unsigned Indentation) const;
151 unsigned Indentation) const;
487 bool emitPredicateMatch(raw_ostream &o, unsigned &Indentation,
506 void emitBinaryParser(raw_ostream &o, unsigned &Indentation,
510 void emitDecoder(raw_ostream &OS, unsigned Indentation, unsigned Opc,
752 unsigned Indentation, in emitTable() argument
755 OS.indent(Indentation) << "static const uint8_t DecoderTable" << Namespace in emitTable()
758 Indentation += 2; in emitTable()
778 OS.indent(Indentation) << "MCD::OPC_ExtractField, " << Start << ", " in emitTable()
[all …]
DGlobalISelEmitter.cpp594 unsigned Indentation = 4; in emitDeclaration() local
597 OS << std::string(Indentation, ' '); in emitDeclaration()
611 Indentation += 2; in emitDeclaration()
615 OS << std::string(Indentation, ' '); in emitDeclaration()
618 Indentation -= 2; in emitDeclaration()
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DTraversalChecker.cpp83 unsigned Indentation = 0; in checkPreCall() local
86 ++Indentation; in checkPreCall()
91 llvm::outs().indent(Indentation); in checkPreCall()
100 unsigned Indentation = 0; in checkPostCall() local
103 ++Indentation; in checkPostCall()
108 llvm::outs().indent(Indentation); in checkPostCall()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DPrettyPrinter.h62 : Indentation(2), SuppressSpecifiers(false), in PrintingPolicy()
90 unsigned Indentation : 8; member
DType.h1022 unsigned Indentation = 0) const;
1026 unsigned Indentation = 0) {
1027 return print(split.Ty, split.Quals, OS, policy, PlaceHolder, Indentation);
1033 unsigned Indentation = 0);
1051 unsigned Indentation;
1055 const Twine &PlaceHolder, unsigned Indentation)
1057 Indentation(Indentation) {}
1061 SQT.T.print(OS, SQT.Policy, SQT.PlaceHolder, SQT.Indentation);
1068 unsigned Indentation = 0) const {
1069 return StreamedQualTypeHelper(*this, Policy, PlaceHolder, Indentation);
DDeclBase.h1163 void print(raw_ostream &Out, unsigned Indentation = 0,
1166 unsigned Indentation = 0, bool PrintInstantiation = false) const;
1169 unsigned Indentation = 0);
DStmt.h1215 const PrintingPolicy &Policy, unsigned Indentation = 0, in alignas()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Format/
DWhitespaceManager.cpp1351 unsigned Indentation = IndentLevel * Style.IndentWidth; in appendIndentText() local
1352 Spaces = appendTabIndent(Text, Spaces, Indentation); in appendIndentText()
1363 unsigned Indentation = in appendIndentText() local
1365 Spaces = appendTabIndent(Text, Spaces, Indentation); in appendIndentText()
1373 unsigned Indentation) { in appendTabIndent() argument
1376 if (Indentation > Spaces) in appendTabIndent()
1377 Indentation = Spaces; in appendTabIndent()
1379 unsigned Tabs = Indentation / Style.TabWidth; in appendTabIndent()
DWhitespaceManager.h330 unsigned Indentation);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaAvailability.cpp815 StringRef Indentation = Lexer::getIndentationForLine(IfInsertionLoc, SM); in DiagnoseDeclAvailability() local
825 << Indentation << ExtraIndentation; in DiagnoseDeclAvailability()
835 << Indentation << "} else {\n" in DiagnoseDeclAvailability()
836 << Indentation << ExtraIndentation in DiagnoseDeclAvailability()
838 << Indentation << "}"; in DiagnoseDeclAvailability()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
DTextDiagnostic.cpp616 unsigned Indentation = WordWrapIndentation) { in printWordWrapped() argument
622 IndentStr.assign(Indentation, ' '); in printWordWrapped()
651 OS.write(&IndentStr[0], Indentation); in printWordWrapped()
654 Column = Indentation + WordLength; in printWordWrapped()
/freebsd-12-stable/contrib/binutils/gas/
DChangeLog-9899822 * config/tc-i386.c: Indentation and white space changes.
/freebsd-12-stable/contrib/ntp/
DCommitLog-4.1.04787 * ntpd/ntp_config.c (getconfig): Indentation cleanup
/freebsd-12-stable/contrib/tzdata/
DNEWS5096 4. Indentation in one section of zic.c has been fixed.
/freebsd-12-stable/contrib/binutils/bfd/
DChangeLog-9193987 * reloc16.c: Indentation change.
/freebsd-12-stable/contrib/unbound/doc/
DChangelog2547 - Fix Bad Indentation, in dnscrypt.c,