| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | DeclPrinter.cpp | 32 unsigned Indentation; member in __anon0d94a5380111::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() 125 void Decl::print(raw_ostream &Out, unsigned Indentation, in print() argument 127 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation); in print() 131 unsigned Indentation, bool PrintInstantiation) const { in print() argument 132 DeclPrinter Printer(Out, Policy, getASTContext(), Indentation, in print() 186 unsigned Indentation) { in printGroup() argument [all …]
|
| H A D | TypePrinter.cpp | 104 unsigned Indentation; member in __anon943befc20111::TypePrinter 109 explicit TypePrinter(const PrintingPolicy &Policy, unsigned Indentation = 0) in TypePrinter() argument 110 : Policy(Policy), Indentation(Indentation) {} in TypePrinter() 1274 D->print(OS, SubPolicy, Indentation); in printTag() 1486 OwnedTagDecl->print(OS, SubPolicy, Indentation); in printElaboratedBefore() 2241 const Twine &PlaceHolder, unsigned Indentation) const { in print() 2243 Indentation); in print() 2248 const Twine &PlaceHolder, unsigned Indentation) { in print() argument 2252 TypePrinter(policy, Indentation).print(ty, qs, OS, PH); in print()
|
| H A D | StmtPrinter.cpp | 76 const PrintingPolicy &Policy, unsigned Indentation = 0, in StmtPrinter() argument 78 : OS(os), IndentLevel(Indentation), Helper(helper), Policy(Policy), in StmtPrinter() 81 void PrintStmt(Stmt *S) { PrintStmt(S, Policy.Indentation); } in PrintStmt() 2555 const PrintingPolicy &Policy, unsigned Indentation, in printPretty() argument 2557 StmtPrinter P(Out, Helper, Policy, Indentation, NL, Context); in printPretty()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| H A D | FixedLenDecoderEmitter.cpp | 144 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 …]
|
| H A D | GlobalISelEmitter.cpp | 581 unsigned Indentation = 4; in emitDeclaration() local 584 OS << std::string(Indentation, ' '); in emitDeclaration() 598 Indentation += 2; in emitDeclaration() 602 OS << std::string(Indentation, ' '); in emitDeclaration() 605 Indentation -= 2; in emitDeclaration()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | TraversalChecker.cpp | 83 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()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | PrettyPrinter.h | 62 : Indentation(2), SuppressSpecifiers(false), in PrintingPolicy() 90 unsigned Indentation : 8; member
|
| H A D | Type.h | 1022 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);
|
| H A D | DeclBase.h | 1163 void print(raw_ostream &Out, unsigned Indentation = 0, 1166 unsigned Indentation = 0, bool PrintInstantiation = false) const; 1169 unsigned Indentation = 0);
|
| H A D | Stmt.h | 1215 const PrintingPolicy &Policy, unsigned Indentation = 0,
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Format/ |
| H A D | WhitespaceManager.cpp | 1040 unsigned Indentation = IndentLevel * Style.IndentWidth; in appendIndentText() local 1041 Spaces = appendTabIndent(Text, Spaces, Indentation); in appendIndentText() 1052 unsigned Indentation = in appendIndentText() local 1054 Spaces = appendTabIndent(Text, Spaces, Indentation); in appendIndentText() 1062 unsigned Indentation) { in appendTabIndent() argument 1065 if (Indentation > Spaces) in appendTabIndent() 1066 Indentation = Spaces; in appendTabIndent() 1068 unsigned Tabs = Indentation / Style.TabWidth; in appendTabIndent()
|
| H A D | WhitespaceManager.h | 223 unsigned Indentation);
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaAvailability.cpp | 828 StringRef Indentation = Lexer::getIndentationForLine(IfInsertionLoc, SM); in DiagnoseDeclAvailability() local 838 << Indentation << ExtraIndentation; in DiagnoseDeclAvailability() 848 << Indentation << "} else {\n" in DiagnoseDeclAvailability() 849 << Indentation << ExtraIndentation in DiagnoseDeclAvailability() 851 << Indentation << "}"; in DiagnoseDeclAvailability()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| H A D | TextDiagnostic.cpp | 616 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()
|
| /netbsd-src/external/gpl2/groff/dist/doc/ |
| H A D | groff | 98 Node: Indentation values in ms91700
|
| H A D | groff-1 | 2363 * Indentation values in ms:: 2557 File: groff, Node: Lists in ms, Next: Indentation values in ms, Prev: Highlighting in ms, Up: m… 2688 Indentation values in ms::, for more information. 2720 File: groff, Node: Indentation values in ms, Next: Tabstops in ms, Prev: Lists in ms, Up: ms Bo… 2722 4.3.5.5 Indentation values 2739 File: groff, Node: Tabstops in ms, Next: ms Displays and Keeps, Prev: Indentation values in ms, … 6018 "Indentation" - this is the distance from the left margin where
|
| H A D | groff.texinfo | 3256 * Indentation values in ms:: 3480 @node Lists in ms, Indentation values in ms, Highlighting in ms, ms Body Text 3628 @xref{Indentation values in ms}, for more information. 3667 @node Indentation values in ms, Tabstops in ms, Lists in ms, ms Body Text 3668 @subsubsection Indentation values 3686 @node Tabstops in ms, ms Displays and Keeps, Indentation values in ms, ms Body Text 7991 @dfn{Indentation} -- this is the distance from the left margin where
|
| H A D | groff-2 | 4595 * RE [ms]: Indentation values in ms. 4603 * RS [ms]: Indentation values in ms.
|
| /netbsd-src/external/gpl2/xcvs/dist/ |
| H A D | HACKING | 53 * Indentation style 269 3.3, they are no longer supported. See the Indentation Style section above for
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/tests/ |
| H A D | mm-viet.pot | 567 msgid "Indentation" 603 msgid "Indentation Rules" 1185 msgid "Automatic Indentation" 1189 msgid "&Indentation mode:" 1201 msgid "Indentation with Spaces" 2074 msgid "&Clean Indentation" 2205 msgid "&Indentation"
|
| H A D | mm-viet.out | 623 msgid "Indentation" 665 msgid "Indentation Rules" 1307 msgid "Automatic Indentation" 1312 msgid "&Indentation mode:" 1325 msgid "Indentation with Spaces" 2277 msgid "&Clean Indentation" 2424 msgid "&Indentation"
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/ |
| H A D | CIndex.cpp | 4940 return P->Indentation; in clang_PrintingPolicy_getProperty() 5006 P->Indentation = Value; in clang_PrintingPolicy_setProperty()
|
| /netbsd-src/external/apache2/llvm/dist/clang/docs/ |
| H A D | ClangFormatStyleOptions.rst | 2101 - Indentation with the continuation indent, not with the block indent.
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
| H A D | CodingStandards.rst | 1484 Namespace Indentation
|
| /netbsd-src/external/gpl3/binutils/dist/gas/ |
| H A D | ChangeLog-2004 | 1535 declarations. Indentation fixup.
|