/external/tensorflow/tensorflow/python/framework/ |
D | python_op_gen.cc | 54 void AddInferredAttr(const string& indentation, const string& attr_name, in AddInferredAttr() argument 57 strings::StrAppend(result, indentation, in AddInferredAttr() 121 void ExpectListArg(const string& indentation, const string& arg_name, 123 bool GetEagerFunctionSetup(const string& indentation, string* function_setup); 127 void AddEagerFunctionTeardown(const string& indentation, 140 void AddEagerInferredAttrs(const string& indentation); 141 void AddEagerInputCasts(const string& indentation); 142 void AddEagerAttrs(const string& indentation); 143 void AddEagerExecute(const string& indentation, 432 void GenEagerPythonOp::ExpectListArg(const string& indentation, in ExpectListArg() argument [all …]
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | Indentation.java | 39 private int indentation; field in Indentation 45 indentation = 0; in Indentation() 55 indentation = initval; in Indentation() 65 indentation = initval; in setIndentation() 74 return indentation; in getCount() 81 indentation++; in increment() 88 indentation--; in decrement() 97 char[] chars = new char[indentation]; in getIndentation()
|
D | SIPObject.java | 344 indentation + 1)); in debugDump() 354 indentation + 1)); in debugDump() 390 int save = indentation; in debugDump() 391 indentation = indent; in debugDump() 393 indentation = save; in debugDump()
|
/external/autotest/client/bin/result_tools/ |
D | view.py | 324 def _get_dirs_html(dirs, parent_path, total_bytes, indentation): argument 353 INDENTATION_KEY: indentation + 2*INDENTATION} 367 INDENTATION_KEY: indentation} 374 sub_indentation = indentation + INDENTATION 380 INDENTATION_KEY: indentation}) 384 INDENTATION_KEY: indentation} 413 indentation = INDENTATION 415 summary.files, '..', size_original, indentation + INDENTATION) 417 INDENTATION_KEY: indentation}
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/ |
D | SourcePrinter.java | 29 private final String indentation; field in SourcePrinter 37 SourcePrinter(final String indentation, final String endOfLineCharacter) { in SourcePrinter() argument 38 this.indentation = indentation; in SourcePrinter() 39 this.indentationLength = indentation.length(); in SourcePrinter() 55 buf.append(indentation); in makeIndent()
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/ |
D | IndentingAppendable.java | 23 private final String indentation; field in IndentingAppendable 31 IndentingAppendable(String indentation, Appendable delegate) { in IndentingAppendable() argument 32 this.indentation = indentation; in IndentingAppendable() 67 delegate.append(indentation); in maybeIndent()
|
/external/mesa3d/src/compiler/glsl/ |
D | ir_print_visitor.cpp | 91 indentation = 0; in ir_print_visitor() 107 for (int i = 0; i < indentation; i++) in indent() 234 indentation++; in visit() 241 indentation++; in visit() 248 indentation--; in visit() 256 indentation++; in visit() 263 indentation--; in visit() 266 indentation--; in visit() 274 indentation++; in visit() 280 indentation--; in visit() [all …]
|
D | ir_builder_print_visitor.cpp | 82 int indentation; member in ir_builder_print_visitor 141 : next_ir_index(1), f(f), indentation(0) in ir_builder_print_visitor() 154 for (int i = 0; i < indentation; i++) in indent() 285 indentation++; in visit_enter() 306 indentation--; in visit_leave() 635 indentation++; in visit_enter() 662 indentation--; in visit_enter() 735 indentation++; in visit_enter() 749 indentation--; in visit_leave()
|
/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()
|
/external/nist-sip/java/gov/nist/javax/sip/message/ |
D | MessageObject.java | 115 this.indentation + 1)); in debugDump() 125 indentation + 1)); in debugDump() 164 int save = indentation; in dbgPrint() 165 indentation = indent; in dbgPrint() 167 indentation = save; in dbgPrint()
|
/external/tensorflow/tensorflow/python/autograph/pyct/ |
D | compiler.py | 36 def ast_to_source(node, indentation=' '): argument 49 generator = astor.code_gen.SourceGenerator(indentation, False, 92 indentation=' ', argument 120 source = ast_to_source(nodes, indentation=indentation)
|
/external/nist-sip/java/gov/nist/core/ |
D | GenericObjectList.java | 94 protected int indentation; field in GenericObjectList 107 char[] chars = new char[indentation]; in getIndentation() 260 indentation--; in sprint() 266 indentation++; in sprint() 284 sprint(((GenericObject) obj).debugDump(this.indentation)); in debugDump() 298 int save = indentation; in debugDump() 299 indentation = indent; in debugDump() 301 indentation = save; in debugDump()
|
D | GenericObject.java | 80 protected int indentation; field in GenericObject 293 indentation = 0; in GenericObject() 298 char [] chars = new char [indentation]; in getIndentation() 314 indentation--; in sprint() 320 indentation++; in sprint() 647 indentation + 1)); in debugDump() 657 indentation + 1)); in debugDump() 693 indentation = indent; in debugDump() 695 indentation = 0; in debugDump()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/javadoc/ |
D | Javadoc.java | 108 public JavadocComment toComment(String indentation) { in toComment() argument 109 for (char c : indentation.toCharArray()) { in toComment() 119 sb.append(indentation); in toComment() 125 sb.append(indentation); in toComment()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_value.cc | 98 string indentation(indent, ' '); in ToString() local 99 string out = StrCat(indentation, ToShortString(), ", positions:\n"); in ToString() 101 StrAppend(&out, indentation, " ", position.ToString(), "\n"); in ToString() 103 StrAppend(&out, indentation, " uses:\n"); in ToString() 105 StrAppend(&out, indentation, " ", use.ToString(), "\n"); in ToString()
|
/external/vboot_reference/ |
D | PRESUBMIT.cfg | 3 # We are using Linux style indentation with tabs 4 # The indentation is checked by checkpatch not the python script
|
/external/deqp/external/vulkancts/modules/vulkan/tessellation/ |
D | vktTessellationUserDefinedIO.cpp | 126 const std::string indentation = std::string(indentationDepth, '\t'); in glslTraverseBasicTypes() local 129 …return indentation + "for (int " + loopIndexName + " = 0; " + loopIndexName + " < " + de::toString… in glslTraverseBasicTypes() 130 indentation + "{\n" + in glslTraverseBasicTypes() 132 indentation + "}\n"; in glslTraverseBasicTypes() 159 const std::string indentation = std::string(indentationDepth, '\t'); in glslAssignBasicTypeObject() local 162 result << indentation << name << " = "; in glslAssignBasicTypeObject() 171 << indentation << "v += 0.4;\n"; in glslAssignBasicTypeObject() 179 const std::string indentation = std::string(indentationDepth, '\t'); in glslCheckBasicTypeObject() local 182 …result << indentation << "allOk = allOk && compare_" << glu::getDataTypeName(type) << "(" << name … in glslCheckBasicTypeObject() 191 << indentation << "v += 0.4;\n" in glslCheckBasicTypeObject() [all …]
|
/external/tensorflow/tensorflow/tools/ci_build/ |
D | pep8 | 4 # E111 indentation is not a multiple of four 5 # E114 indentation is not a multiple of four (comment)
|
/external/nist-sip/java/gov/nist/javax/sip/address/ |
D | NetObject.java | 337 indentation + 1)); in debugDump() 347 indentation + 1)); in debugDump() 386 int save = indentation; in debugDump() 387 indentation = indent; in debugDump() 389 indentation = save; in debugDump()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/ |
D | Difference.java | 408 …private List<TextElement> processIndentation(List<TokenTextElement> indentation, List<TextElement>… in processIndentation() argument 410 res.addAll(indentation); in processIndentation() 488 List<TokenTextElement> indentation = LexicalPreservingPrinter.findIndentation(node); in apply() local 530 … indentation.add(new TokenTextElement(GeneratedJavaParserConstants.SPACE)); in apply() 537 for (int i=0;i<STANDARD_INDENTATION_SIZE && !indentation.isEmpty();i++){ in apply() 538 indentation.remove(indentation.size() - 1); in apply() 547 …for (TextElement e : processIndentation(indentation, nodeText.getElements().subList(0, nodeTextInd… in apply() 559 …for (TextElement e : processIndentation(indentation, nodeText.getElements().subList(0, nodeTextInd… in apply() 581 …nodeTextIndex = adjustIndentation(indentation, nodeText, nodeTextIndex, followedByUnindent/* && !a… in apply() 828 …private int adjustIndentation(List<TokenTextElement> indentation, NodeText nodeText, int nodeTextI… in adjustIndentation() argument [all …]
|
/external/snakeyaml/src/test/resources/pyyaml/ |
D | spec-06-01.data | 2 # neither content nor indentation. 14 ] # indentation.
|
D | sloppy-indentation.data | 3 indentation should be kept: { 17 may not adhere indentation'
|
/external/llvm/test/YAMLParser/ |
D | spec-06-01.test | 4 # neither content nor indentation. 16 ] # indentation.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/YAMLParser/ |
D | spec-06-01.test | 4 # neither content nor indentation. 16 ] # indentation.
|
D | sloppy-indentation.test | 5 indentation should be kept: { 19 may not adhere indentation'
|