/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/llvm/utils/TableGen/ |
ARMDecoderEmitter.cpp | 320 void emit(raw_ostream &o, unsigned &Indentation); 415 void emitTop(raw_ostream &o, unsigned &Indentation); 419 void emitBot(raw_ostream &o, unsigned &Indentation); 502 bool emitSingletonDecoder(raw_ostream &o, unsigned &Indentation,unsigned Opc); 505 void emitSingletonDecoder(raw_ostream &o, unsigned &Indentation, 530 bool emit(raw_ostream &o, unsigned &Indentation); 658 void ARMFilter::emit(raw_ostream &o, unsigned &Indentation) { 659 o.indent(Indentation) << "// Check Inst{"; 666 o.indent(Indentation) << "switch (fieldFromInstruction(insn, " 681 o.indent(Indentation) << "default:\n" [all...] |
FixedLenDecoderEmitter.cpp | 180 void emit(raw_ostream &o, unsigned &Indentation); 275 void emitTop(raw_ostream &o, unsigned Indentation, std::string Namespace); 329 bool emitSingletonDecoder(raw_ostream &o, unsigned &Indentation,unsigned Opc); 332 void emitSingletonDecoder(raw_ostream &o, unsigned &Indentation,Filter &Best); 356 bool emit(raw_ostream &o, unsigned &Indentation); 485 void Filter::emit(raw_ostream &o, unsigned &Indentation) { 486 o.indent(Indentation) << "// Check Inst{"; 493 o.indent(Indentation) << "switch (fieldFromInstruction" << Owner->BitWidth 509 o.indent(Indentation) << "default:\n"; 510 o.indent(Indentation) << " break; // fallthrough\n" [all...] |
/external/clang/include/clang/AST/ |
PrettyPrinter.h | 40 : Indentation(2), LangOpts(LO), SuppressSpecifiers(false), 47 unsigned Indentation : 8;
|
DeclBase.h | 737 void print(llvm::raw_ostream &Out, unsigned Indentation = 0) const; 739 unsigned Indentation = 0) const; 742 unsigned Indentation = 0); [all...] |
Stmt.h | 283 unsigned Indentation = 0) const { 284 printPretty(OS, *(ASTContext*)0, Helper, Policy, Indentation); 289 unsigned Indentation = 0) const; [all...] |
/external/clang/lib/AST/ |
DeclPrinter.cpp | 30 unsigned Indentation; 32 llvm::raw_ostream& Indent() { return Indent(Indentation); } 33 llvm::raw_ostream& Indent(unsigned Indentation); 41 unsigned Indentation = 0) 42 : Out(Out), Context(Context), Policy(Policy), Indentation(Indentation) { } 83 void Decl::print(llvm::raw_ostream &Out, unsigned Indentation) const { 84 print(Out, getASTContext().PrintingPolicy, Indentation); 88 unsigned Indentation) const { 89 DeclPrinter Printer(Out, getASTContext(), Policy, Indentation); [all...] |
StmtPrinter.cpp | 40 unsigned Indentation = 0) 41 : OS(os), Context(C), IndentLevel(Indentation), Helper(helper), 45 PrintStmt(S, Policy.Indentation); [all...] |
/external/clang/lib/Frontend/ |
ASTConsumers.cpp | 106 void PrintDeclContext(const DeclContext* DC, unsigned Indentation); 111 unsigned Indentation) { 296 for (unsigned i = 0; i < Indentation; ++i) 320 PrintDeclContext(DC, Indentation+2);
|