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 70 unsigned Indentation = 0;
73 ++Indentation;
78 llvm::outs().indent(Indentation);
  /external/clang/include/clang/AST/
PrettyPrinter.h 37 : LangOpts(LO), Indentation(2), SuppressSpecifiers(false),
48 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 30 unsigned Indentation;
33 raw_ostream& Indent() { return Indent(Indentation); }
34 raw_ostream& Indent(unsigned Indentation);
41 unsigned Indentation = 0, bool PrintInstantiation = false)
42 : Out(Out), Policy(Policy), Indentation(Indentation),
89 void Decl::print(raw_ostream &Out, unsigned Indentation,
91 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation);
95 unsigned Indentation, bool PrintInstantiation) const {
96 DeclPrinter Printer(Out, Policy, Indentation, PrintInstantiation)
    [all...]

Completed in 232 milliseconds