/external/swiftshader/third_party/LLVM/utils/TableGen/ |
D | ARMDecoderEmitter.cpp | 321 void emit(raw_ostream &o, unsigned &Indentation); 416 void emitTop(raw_ostream &o, unsigned &Indentation); 420 void emitBot(raw_ostream &o, unsigned &Indentation); 503 bool emitSingletonDecoder(raw_ostream &o, unsigned &Indentation,unsigned Opc); 506 void emitSingletonDecoder(raw_ostream &o, unsigned &Indentation, 531 bool emit(raw_ostream &o, unsigned &Indentation); 659 void ARMFilter::emit(raw_ostream &o, unsigned &Indentation) { in emit() argument 660 o.indent(Indentation) << "// Check Inst{"; in emit() 667 o.indent(Indentation) << "switch (fieldFromInstruction(insn, " in emit() 682 o.indent(Indentation) << "default:\n"; in emit() [all …]
|
D | FixedLenDecoderEmitter.cpp | 180 void emit(raw_ostream &o, unsigned &Indentation); 281 void emitTop(raw_ostream &o, unsigned Indentation, std::string Namespace); 335 bool emitPredicateMatch(raw_ostream &o, unsigned &Indentation,unsigned Opc); 339 bool emitSingletonDecoder(raw_ostream &o, unsigned &Indentation,unsigned Opc); 342 void emitSingletonDecoder(raw_ostream &o, unsigned &Indentation,Filter &Best); 344 void emitBinaryParser(raw_ostream &o , unsigned &Indentation, 369 bool emit(raw_ostream &o, unsigned &Indentation); 498 void Filter::emit(raw_ostream &o, unsigned &Indentation) { in emit() argument 499 o.indent(Indentation) << "// Check Inst{"; in emit() 506 o.indent(Indentation) << "switch (fieldFromInstruction" << Owner->BitWidth in emit() [all …]
|
/external/clang/lib/AST/ |
D | DeclPrinter.cpp | 31 unsigned Indentation; member in __anon784f2d4c0111::DeclPrinter 34 raw_ostream& Indent() { return Indent(Indentation); } in Indent() 35 raw_ostream& Indent(unsigned Indentation); 51 unsigned Indentation = 0, bool PrintInstantiation = false) in DeclPrinter() argument 52 : Out(Out), Policy(Policy), Indentation(Indentation), in DeclPrinter() 106 void Decl::print(raw_ostream &Out, unsigned Indentation, in print() argument 108 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation); in print() 112 unsigned Indentation, bool PrintInstantiation) const { in print() argument 113 DeclPrinter Printer(Out, Policy, Indentation, PrintInstantiation); in print() 153 unsigned Indentation) { in printGroup() argument [all …]
|
D | TypePrinter.cpp | 84 unsigned Indentation; member in __anonfef677d60111::TypePrinter 89 explicit TypePrinter(const PrintingPolicy &Policy, unsigned Indentation = 0) in TypePrinter() argument 90 : Policy(Policy), Indentation(Indentation), in TypePrinter() 943 D->print(OS, SubPolicy, Indentation); in printTag() 1658 const Twine &PlaceHolder, unsigned Indentation) { in print() argument 1662 TypePrinter(policy, Indentation).print(ty, qs, OS, PH); in print()
|
D | StmtPrinter.cpp | 45 unsigned Indentation = 0) in StmtPrinter() argument 46 : OS(os), IndentLevel(Indentation), Helper(helper), Policy(Policy) {} in StmtPrinter() 49 PrintStmt(S, Policy.Indentation); in PrintStmt() 2573 unsigned Indentation) const { in printPretty() 2574 StmtPrinter P(OS, Helper, Policy, Indentation); in printPretty()
|
/external/llvm/utils/TableGen/ |
D | FixedLenDecoderEmitter.cpp | 100 unsigned Indentation, unsigned BitWidth, 104 unsigned Indentation) const; 107 unsigned Indentation) const; 428 bool emitPredicateMatch(raw_ostream &o, unsigned &Indentation, 447 void emitBinaryParser(raw_ostream &o, unsigned &Indentation, 451 void emitDecoder(raw_ostream &OS, unsigned Indentation, unsigned Opc, 693 unsigned Indentation, in emitTable() argument 696 OS.indent(Indentation) << "static const uint8_t DecoderTable" << Namespace in emitTable() 699 Indentation += 2; in emitTable() 719 OS.indent(Indentation) << "MCD::OPC_ExtractField, " << Start << ", " in emitTable() [all …]
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | TraversalChecker.cpp | 79 unsigned Indentation = 0; in checkPreCall() local 82 ++Indentation; in checkPreCall() 87 llvm::outs().indent(Indentation); in checkPreCall() 96 unsigned Indentation = 0; in checkPostCall() local 99 ++Indentation; in checkPostCall() 104 llvm::outs().indent(Indentation); in checkPostCall()
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | Indentation.java | 37 class Indentation { class 44 protected Indentation() { in Indentation() method in Indentation 54 protected Indentation(int initval) { in Indentation() method in Indentation
|
D | SIPHeaderList.java | 328 String indent = new Indentation(indentation).getIndentation(); in debugDump()
|
/external/clang/include/clang/AST/ |
D | PrettyPrinter.h | 41 : Indentation(2), SuppressSpecifiers(false), in PrintingPolicy() 66 unsigned Indentation : 8; member
|
D | Type.h | 936 unsigned Indentation = 0) const { 937 print(split(), OS, Policy, PlaceHolder, Indentation); 941 unsigned Indentation = 0) { 942 return print(split.Ty, split.Quals, OS, policy, PlaceHolder, Indentation); 947 unsigned Indentation = 0); 965 unsigned Indentation; 968 const Twine &PlaceHolder, unsigned Indentation) 970 Indentation(Indentation) { } 974 SQT.T.print(OS, SQT.Policy, SQT.PlaceHolder, SQT.Indentation); 981 unsigned Indentation = 0) const { [all …]
|
D | DeclBase.h | 1011 void print(raw_ostream &Out, unsigned Indentation = 0, 1014 unsigned Indentation = 0, bool PrintInstantiation = false) const; 1017 unsigned Indentation = 0);
|
/external/clang/lib/Frontend/ |
D | ASTConsumers.cpp | 193 void PrintDeclContext(const DeclContext* DC, unsigned Indentation); 198 unsigned Indentation) { in PrintDeclContext() argument 379 for (unsigned i = 0; i < Indentation; ++i) in PrintDeclContext() 403 PrintDeclContext(DC, Indentation+2); in PrintDeclContext()
|
D | TextDiagnostic.cpp | 617 unsigned Indentation = WordWrapIndentation) { in printWordWrapped() argument 623 IndentStr.assign(Indentation, ' '); in printWordWrapped() 652 OS.write(&IndentStr[0], Indentation); in printWordWrapped() 655 Column = Indentation + WordLength; in printWordWrapped()
|
/external/snakeyaml/src/test/resources/pyyaml/ |
D | spec-09-18.data | 3 - >1 # Indentation indicator
|
/external/llvm/test/YAMLParser/ |
D | spec-09-18.test | 9 - >1 # Indentation indicator
|
/external/clang/lib/Format/ |
D | WhitespaceManager.cpp | 550 unsigned Indentation = IndentLevel * Style.IndentWidth; in appendIndentText() local 553 if (Indentation > Spaces) in appendIndentText() 554 Indentation = Spaces; in appendIndentText() 555 unsigned Tabs = Indentation / Style.TabWidth; in appendIndentText()
|
/external/python/cpython2/Lib/test/ |
D | tokenize_tests.txt | 128 # Indentation
|
/external/python/cpython3/Lib/test/ |
D | tokenize_tests.txt | 136 # Indentation
|
/external/autotest/docs/ |
D | coding-style.md | 13 ## Indentation & whitespace 17 Indentation is 4 spaces, as opposed to hard tabs (which it used to be).
|
/external/honggfuzz/ |
D | CHANGELOG | 19 - Indentation fixes, now clang-format is used
|
/external/shflags/doc/ |
D | coding_standards.txt | 90 Indentation
|
/external/python/cpython3/Doc/reference/ |
D | lexical_analysis.rst | 170 Indentation section in Line structure 183 indentation. Indentation cannot be split over multiple physical lines using 187 Indentation is rejected as inconsistent if a source file mixes tabs and spaces
|
/external/python/cpython2/Doc/reference/ |
D | lexical_analysis.rst | 202 Indentation section in Line structure 222 line's indentation. Indentation cannot be split over multiple physical lines
|
/external/ltp/doc/ |
D | style-guide.txt | 204 13. Indentation
|