HomeSort by: relevance | last modified time | path
    Searched defs:Indentation (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
TraversalChecker.cpp 83 unsigned Indentation = 0;
86 ++Indentation;
91 llvm::outs().indent(Indentation);
100 unsigned Indentation = 0;
103 ++Indentation;
108 llvm::outs().indent(Indentation);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
PrettyPrinter.h 62 : Indentation(2), SuppressSpecifiers(false),
90 unsigned Indentation : 8;
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
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Format/
WhitespaceManager.cpp 1040 unsigned Indentation = IndentLevel * Style.IndentWidth;
1041 Spaces = appendTabIndent(Text, Spaces, Indentation);
1052 unsigned Indentation =
1054 Spaces = appendTabIndent(Text, Spaces, Indentation);
1062 unsigned Indentation) {
1065 if (Indentation > Spaces)
1066 Indentation = Spaces;
1068 unsigned Tabs = Indentation / Style.TabWidth;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAvailability.cpp 828 StringRef Indentation = Lexer::getIndentationForLine(IfInsertionLoc, SM);
838 << Indentation << ExtraIndentation;
848 << Indentation << "} else {\n"
849 << Indentation << ExtraIndentation
851 << Indentation << "}";
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclPrinter.cpp 32 unsigned Indentation;
35 raw_ostream& Indent() { return Indent(Indentation); }
36 raw_ostream& Indent(unsigned Indentation);
54 const ASTContext &Context, unsigned Indentation = 0,
56 : Out(Out), Policy(Policy), Context(Context), Indentation(Indentation),
125 void Decl::print(raw_ostream &Out, unsigned Indentation,
127 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation);
131 unsigned Indentation, bool PrintInstantiation) const {
132 DeclPrinter Printer(Out, Policy, getASTContext(), Indentation,
    [all...]
TypePrinter.cpp 104 unsigned Indentation;
109 explicit TypePrinter(const PrintingPolicy &Policy, unsigned Indentation = 0)
110 : Policy(Policy), Indentation(Indentation) {}
1274 D->print(OS, SubPolicy, Indentation);
1486 OwnedTagDecl->print(OS, SubPolicy, Indentation);
2241 const Twine &PlaceHolder, unsigned Indentation) const {
2243 Indentation);
2248 const Twine &PlaceHolder, unsigned Indentation) {
2252 TypePrinter(policy, Indentation).print(ty, qs, OS, PH)
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
GlobalISelEmitter.cpp 425 /// Causes the formatter to add a level of indentation before emitting the
428 /// Causes the formatter to remove a level of indentation after emitting the
581 unsigned Indentation = 4;
584 OS << std::string(Indentation, ' ');
598 Indentation += 2;
602 OS << std::string(Indentation, ' ');
605 Indentation -= 2;

Completed in 23 milliseconds