HomeSort by relevance Sort by last modified time
    Searched defs:Indentation (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/StaticAnalyzer/Checkers/
TraversalChecker.cpp 71 unsigned Indentation = 0;
74 ++Indentation;
79 llvm::outs().indent(Indentation);
  /external/clang/include/clang/AST/
PrettyPrinter.h 38 : LangOpts(LO), Indentation(2), SuppressSpecifiers(false),
49 unsigned Indentation : 8;
  /external/nist-sip/java/gov/nist/javax/sip/header/
Indentation.java 37 class Indentation {
39 private int indentation; field in class:Indentation
44 protected Indentation() {
45 indentation = 0;
54 protected Indentation(int initval) {
55 indentation = initval;
59 * set the indentation field
65 indentation = initval;
69 * get the number of indentation.
74 return indentation;
    [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 31 unsigned Indentation;
34 raw_ostream& Indent() { return Indent(Indentation); }
35 raw_ostream& Indent(unsigned Indentation);
42 unsigned Indentation = 0, bool PrintInstantiation = false)
43 : Out(Out), Policy(Policy), Indentation(Indentation),
92 void Decl::print(raw_ostream &Out, unsigned Indentation,
94 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation);
98 unsigned Indentation, bool PrintInstantiation) const {
99 DeclPrinter Printer(Out, Policy, Indentation, PrintInstantiation)
    [all...]

Completed in 86 milliseconds