| /external/capstone/contrib/sysz_update/ |
| D | 0004-capstone-generate-GenDisassemblerTables.inc.patch | 49 - 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/autotest/client/bin/result_tools/ |
| D | view.py | 37 INDENTATION_KEY = 'indentation' 277 %(indentation)s<span class="%(size_percent_class)s">%(size_percent)s</span> 278 %(indentation)s<span class="size_original">%(size_original)s</span> 279 %(indentation)s<span class="size_trimmed">%(size_trimmed)s</span> """ 282 %(indentation)s<li> 283 %(indentation)s\t<div> 285 %(indentation)s\t\t<a class="file" href="javascript:openFile('%(path)s');" > 286 %(indentation)s\t\t\t%(name)s 287 %(indentation)s\t\t</a> 288 %(indentation)s\t</div> [all …]
|
| /external/nist-sip/java/gov/nist/javax/sip/header/ |
| D | Indentation.java | 37 class Indentation { class 39 private int indentation; field in Indentation 44 protected Indentation() { in Indentation() method in Indentation 45 indentation = 0; in Indentation() 54 protected Indentation(int initval) { in Indentation() method in Indentation 55 indentation = initval; in Indentation() 59 * set the indentation field 65 indentation = initval; in setIndentation() 69 * get the number of indentation. 74 return indentation; in getCount() [all …]
|
| /external/skia/bazel/ |
| D | remove_indentation.bzl | 4 """Removes indentation from a multiline string. 7 indentation, for example inside a macro. It discards the first and last lines if they only 8 contain spaces or tabs. Then, it computes an indentation prefix based on the first remaining 38 The input string minus any indentation. 42 indentation = "" 45 indentation += char 51 return indentation 59 # Compute indentation based on the first remaining line, and remove indentation from all lines. 60 indentation = get_indentation(lines[0]) 61 lines = [line.removeprefix(indentation) for line in lines]
|
| /external/python/cpython2/Tools/bgen/bgen/ |
| D | bgenOutput.py | 43 _Level = 0 # Indentation level 46 """Return the current indentation level.""" 50 """Set the current indentation level. 64 to the proper indentation level -- even if the result of the 80 """Increment the indentation level by one. 82 When called with an argument, adds it to the indentation level. 86 raise Error, "indentation underflow (internal error)" 90 """Decrement the indentation level by one. 92 When called with an argument, subtracts it from the indentation level. 113 """Like Output, but add a '{' and increase the indentation level. [all …]
|
| /external/clang/lib/AST/ |
| D | DeclPrinter.cpp | 31 unsigned Indentation; member in __anon2367ef630111::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 …]
|
| /external/tensorflow/tensorflow/python/framework/ |
| D | python_op_gen.cc | 82 void AddInferredAttr(const string& indentation, const string& attr_name, in AddInferredAttr() argument 85 strings::StrAppend(result, indentation, in AddInferredAttr() 151 void ExpectListArg(const string& indentation, const string& arg_name, 153 bool GetEagerFunctionSetup(const string& indentation, string* function_setup); 157 void AddEagerFunctionTeardown(const string& indentation, 171 void AddEagerInferredAttrs(const string& indentation); 172 void AddEagerInputCasts(const string& indentation); 173 void AddEagerAttrs(const string& indentation); 174 void AddEagerExecute(const string& indentation, 644 void GenEagerPythonOp::ExpectListArg(const string& indentation, in ExpectListArg() argument [all …]
|
| /external/accompanist/spotless/ |
| D | greclipse.properties | 17 #Whether to use 'space', 'tab' or 'mixed' (both) characters for indentation. 21 #Number of spaces used for indentation in case 'space' characters 25 #Number of spaces used for indentation in case 'mixed' characters 27 org.eclipse.jdt.core.formatter.indentation.size=4 29 #Whether or not indentation characters are inserted into empty lines. 33 #Number of spaces used for multiline indentation. 35 groovy.formatter.multiline.indentation=2
|
| /external/trusty/arm-trusted-firmware/ |
| D | .editorconfig | 29 # [LCS] Chapter 1: Indentation 33 # [LCS] Chapter 1: Indentation 34 # "Outside of comments,...spaces are never used for indentation" 46 # [LCS] Chapter 1: Indentation 50 # [LCS] Chapter 1: Indentation 65 # [PEP8] Indentation 66 # "Use 4 spaces per indentation level."
|
| /external/arm-trusted-firmware/ |
| D | .editorconfig | 29 # [LCS] Chapter 1: Indentation 33 # [LCS] Chapter 1: Indentation 34 # "Outside of comments,...spaces are never used for indentation" 46 # [LCS] Chapter 1: Indentation 50 # [LCS] Chapter 1: Indentation 65 # [PEP8] Indentation 66 # "Use 4 spaces per indentation level."
|
| /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/ |
| D | SourcePrinter.java | 38 private final String indentation; field in SourcePrinter 54 indentation = configuration.getIndent(); in SourcePrinter() 62 * Add the default indentation to the current indentation and push it on the indentation stack. 70 indents.push(currentIndent + indentation); in indent() 74 indents.push(indentation + currentIndent); in indent() 84 …* Add to the current indentation until it is reaches "column" and push it on the indentation stack. 136 * Pop the last indentation of the indentation stack. 156 * If this is being appended at the beginning of a line, performs indentation first. 179 * If this is being appended at the beginning of a line, performs indentation first.
|
| /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/ |
| D | Difference.java | 36 private final List<TokenTextElement> indentation; field in Difference 49 this.indentation = LexicalPreservingPrinter.findIndentation(node); in Difference() 52 …private List<TextElement> processIndentation(List<TokenTextElement> indentation, List<TextElement>… in processIndentation() argument 53 List<TextElement> res = new LinkedList<>(indentation); in processIndentation() 91 * the same as the indentation. 408 …* Cleans the line of left over space if there is unnecessary indentation and the element will not … 420 Optional<Integer> indentation = removedGroup.getIndentation(); in cleanTheLineOfLeftOverSpace() local 422 if (indentation.isPresent() && !isReplaced(lastElementIndex)) { in cleanTheLineOfLeftOverSpace() 423 for (int i = 0; i < indentation.get(); i++) { in cleanTheLineOfLeftOverSpace() 478 // Nothing to do, beside considering indentation in applyKeptDiffElement() [all …]
|
| /external/python/pyyaml/examples/pygments-lexer/ |
| D | yaml.py | 22 """Indentation context for the YAML lexer.""" 43 """Reset the indentation levels.""" 55 """Save a possible indentation level.""" 77 """Set the previously saved indentation level.""" 90 """Set an explicit indentation level for a block scalar.""" 115 indentation = text[:context.block_scalar_indent] 117 yield match.start(), IndentTokenClass, indentation 124 """Process indentation spaces in a block scalar.""" 144 """Process indentation spaces in a plain scalar.""" 184 # indentation spaces [all …]
|
| /external/selinux/scripts/ |
| D | run-flake8 | 19 IGNORE_LIST="$IGNORE_LIST,W191" # indentation contains tabs 21 IGNORE_LIST="$IGNORE_LIST,E101" # indentation contains mixed spaces and tabs 37 IGNORE_LIST="$IGNORE_LIST,E111" # indentation is not a multiple of four 38 IGNORE_LIST="$IGNORE_LIST,E114" # indentation is not a multiple of four (comment) 40 IGNORE_LIST="$IGNORE_LIST,E116" # unexpected indentation (comment) 41 IGNORE_LIST="$IGNORE_LIST,E122" # continuation line missing indentation or outdented 42 IGNORE_LIST="$IGNORE_LIST,E123" # closing bracket does not match indentation of opening bracket's l…
|
| /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/javadoc/ |
| D | Javadoc.java | 99 …* Create a JavadocComment, by formatting the text of the Javadoc using no indentation (expecting t… 106 * Create a JavadocComment, by formatting the text of the Javadoc using the given indentation. 108 public JavadocComment toComment(String indentation) { in toComment() argument 109 for (char c : indentation.toCharArray()) { in toComment() 111 …throw new IllegalArgumentException("The indentation string should be composed only by whitespace c… in toComment() 119 sb.append(indentation); in toComment() 125 sb.append(indentation); in toComment()
|
| /external/python/mako/mako/ |
| D | pygen.py | 16 # indentation counter 20 # the indentation counter, to help us determine if we 67 """print a line or lines of python which already contain indentation. 69 The indentation of the total block of lines will be adjusted to that of 87 this also adjusts the indentation counter according to the 107 # see if this line should decrease the indentation level 129 # see if this line should increase the indentation level. 131 # then increase (after printing) the indentation level. 134 # increment indentation count, and also 164 # no indentation detail has been pushed on; return False
|
| /external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/ |
| D | ASTBlock.java | 89 * set indentation prefix 98 * get indentation prefix 99 * @return indentation prefix 112 * set indentation postfix 121 * get indentation postfix 122 * @return indentation prefix
|
| /external/toybox/toys/other/ |
| D | fmt.c | 8 * treats all UTF8 chars as non-whitespace), preserves indentation but squashes 21 indentation level, writing to stdout. 50 // Measure indentation in fmt_line() 57 // Blank lines (even with same indentation) flush line in fmt_line() 65 // Did indentation change? in fmt_line()
|
| /external/nist-sip/java/gov/nist/javax/sip/message/ |
| D | MessageObject.java | 77 if (fieldName.compareTo("indentation") == 0) { in debugDump() 115 this.indentation + 1)); in debugDump() 125 indentation + 1)); in debugDump() 161 * Formatter with a given starting indentation (for nested structs). 164 int save = indentation; in dbgPrint() 165 indentation = indent; in dbgPrint() 167 indentation = save; in dbgPrint()
|
| /external/openthread/tools/tcat_ble_client/cli/ |
| D | command.py | 69 indentation = ' ' * indent_width * indent 70 print(f'{indentation}{self.get_help_string()}') 73 print(f'{indentation}"help" command available.') 75 print(f'{indentation}Subcommands:') 77 print(f'{indentation}{" " * indent_width}{name}\t- ', end='')
|
| /external/tensorflow/tensorflow/python/autograph/pyct/ |
| D | loader.py | 68 indentation=' ', argument 79 indentation: Text, the string to use for indentation. 93 source = parser.unparse(nodes, indentation=indentation)
|
| /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/mesa3d/src/compiler/glsl/ |
| D | ir_print_visitor.cpp | 106 indentation = 0; in ir_print_visitor() 121 for (int i = 0; i < indentation; i++) in indent() 247 indentation++; in visit() 254 indentation++; in visit() 261 indentation--; in visit() 269 indentation++; in visit() 276 indentation--; in visit() 279 indentation--; in visit() 287 indentation++; in visit() 293 indentation--; in visit() [all …]
|
| /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() 702 // appropriate indentation levels. in emitTable() [all …]
|
| /external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/ |
| D | Profiler.java | 227 …String buildProfilerString(DurationUnit du, String firstPrefix, String label, String indentation) { in buildProfilerString() argument 237 buildStopWatchString(buf, du, ELAPSED_TIME, indentation, (StopWatch) child); in buildProfilerString() 240 …iler.buildProfilerString(du, NESTED_PROFILER_FIRST_PREFIX, SUBTOTAL_ELAPSED, indentation + " "); in buildProfilerString() 242 buildStopWatchString(buf, du, ELAPSED_TIME, indentation, profiler.globalStopWatch); in buildProfilerString() 245 buildStopWatchString(buf, du, label, indentation, globalStopWatch); in buildProfilerString() 249 …pWatchString(StringBuilder buf, DurationUnit du, String prefix, String indentation, StopWatch sw) { in buildStopWatchString() argument 251 buf.append(indentation); in buildStopWatchString()
|