Home
last modified time | relevance | path

Searched refs:Indentation (Results 1 – 25 of 47) sorted by relevance

12

/external/capstone/contrib/sysz_update/
D0004-capstone-generate-GenDisassemblerTables.inc.patch49 - OS.indent(Indentation) << "MCD::OPC_ExtractField, " << Start << ", "
50 + OS.indent(Indentation)
64 - OS.indent(Indentation) << "MCD::OPC_FilterValue, ";
65 + OS.indent(Indentation)
79 - OS.indent(Indentation) << "MCD::OPC_CheckField, " << Start << ", "
80 + OS.indent(Indentation)
94 - OS.indent(Indentation) << "MCD::OPC_CheckPredicate, ";
95 + OS.indent(Indentation)
109 - OS.indent(Indentation) << "MCD::OPC_" << (IsTry ? "Try" : "")
110 + OS.indent(Indentation)
[all …]
/external/clang/lib/AST/
DDeclPrinter.cpp31 unsigned Indentation; member in __anonb61d32140111::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 …]
DTypePrinter.cpp84 unsigned Indentation; member in __anon3cc47c9e0111::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()
DStmtPrinter.cpp45 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/
DFixedLenDecoderEmitter.cpp100 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/
DTraversalChecker.cpp79 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/arm-trusted-firmware/
D.editorconfig29 # [LCS] Chapter 1: Indentation
33 # [LCS] Chapter 1: Indentation
46 # [LCS] Chapter 1: Indentation
50 # [LCS] Chapter 1: Indentation
65 # [PEP8] Indentation
/external/nist-sip/java/gov/nist/javax/sip/header/
DIndentation.java37 class Indentation { class
44 protected Indentation() { in Indentation() method in Indentation
54 protected Indentation(int initval) { in Indentation() method in Indentation
DSIPHeaderList.java328 String indent = new Indentation(indentation).getIndentation(); in debugDump()
/external/clang/include/clang/AST/
DPrettyPrinter.h41 : Indentation(2), SuppressSpecifiers(false), in PrintingPolicy()
66 unsigned Indentation : 8; member
DType.h936 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 …]
DDeclBase.h1011 void print(raw_ostream &Out, unsigned Indentation = 0,
1014 unsigned Indentation = 0, bool PrintInstantiation = false) const;
1017 unsigned Indentation = 0);
/external/clang/lib/Frontend/
DASTConsumers.cpp193 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()
DTextDiagnostic.cpp617 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/python/pyyaml/tests/data/
Dspec-09-18.data3 - >1 # Indentation indicator
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-09-18.data3 - >1 # Indentation indicator
/external/llvm/test/YAMLParser/
Dspec-09-18.test9 - >1 # Indentation indicator
/external/protobuf/csharp/
D.editorconfig9 # Indentation and spacing
/external/clang/lib/Format/
DWhitespaceManager.cpp550 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/spdx-tools/docs/
Djsonsaver.md27 ### Indentation subsection
/external/python/cpython2/Lib/test/
Dtokenize_tests.txt128 # Indentation
/external/python/cpython3/Lib/test/
Dtokenize_tests.txt136 # Indentation
/external/autotest/docs/
Dcoding-style.md13 ## Indentation & whitespace
17 Indentation is 4 spaces, as opposed to hard tabs (which it used to be).
/external/shflags/
DCONTRIBUTING.md91 ## Indentation section in Coding Standards
/external/gfxstream-protocols/registry/vulkan/
Dstyleguide.txt270 * 2019-08-25 - Add the <<markup-indentation-equations, Indentation of
274 <<markup-minimize-indentation, Minimize Indentation>> section (internal

12