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

  /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...]
SIPHeaderList.java 322 * @param indentation
326 public String debugDump(int indentation) {
328 String indent = new Indentation(indentation).getIndentation();
  /external/clang/include/clang/AST/
PrettyPrinter.h 38 : LangOpts(LO), Indentation(2), SuppressSpecifiers(false),
49 unsigned Indentation : 8;
DeclBase.h 859 void print(raw_ostream &Out, unsigned Indentation = 0,
862 unsigned Indentation = 0, bool PrintInstantiation = false) const;
865 unsigned Indentation = 0);
    [all...]
Stmt.h 384 unsigned Indentation = 0) const;
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
TraversalChecker.cpp 71 unsigned Indentation = 0;
74 ++Indentation;
79 llvm::outs().indent(Indentation);
  /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...]
StmtPrinter.cpp 43 unsigned Indentation = 0)
44 : OS(os), IndentLevel(Indentation), Helper(helper), Policy(Policy) {}
47 PrintStmt(S, Policy.Indentation);
    [all...]
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 101 unsigned Indentation, unsigned BitWidth,
105 unsigned Indentation) const;
108 unsigned Indentation) const;
438 bool emitPredicateMatch(raw_ostream &o, unsigned &Indentation,
457 void emitBinaryParser(raw_ostream &o, unsigned &Indentation,
460 void emitDecoder(raw_ostream &OS, unsigned Indentation, unsigned Opc) const;
723 unsigned Indentation,
726 OS.indent(Indentation) << "static const uint8_t DecoderTable" << Namespace
729 Indentation += 2;
732 // appropriate indentation levels
    [all...]
  /external/clang/lib/Frontend/
ASTConsumers.cpp 51 D->print(Out, /*Indentation=*/0, /*PrintInstantiation=*/true);
71 D->print(Out, /*Indentation=*/0, /*PrintInstantiation=*/true);
180 void PrintDeclContext(const DeclContext* DC, unsigned Indentation);
185 unsigned Indentation) {
370 for (unsigned i = 0; i < Indentation; ++i)
394 PrintDeclContext(DC, Indentation+2);

Completed in 497 milliseconds