/tools/metalava/src/main/java/com/android/tools/metalava/apilevels/ |
D | ApiElement.java | 131 void print(String tag, ApiElement parentElement, String indent, PrintStream stream) { in print() argument 132 print(tag, true, parentElement, indent, stream); in print() 147 void print(String tag, boolean closeTag, ApiElement parentElement, String indent, in print() argument 149 stream.print(indent); in print() 182 …void print(Collection<? extends ApiElement> elements, String tag, String indent, PrintStream strea… in print() argument 184 element.print(tag, this, indent, stream); in print() 201 static void printClosingTag(String tag, String indent, PrintStream stream) { in printClosingTag() argument 202 stream.print(indent); in printClosingTag()
|
D | ApiClass.java | 141 public void print(String tag, ApiElement parentElement, String indent, PrintStream stream) { in print() argument 145 super.print(tag, false, parentElement, indent, stream); in print() 146 String innerIndent = indent + '\t'; in print() 151 printClosingTag(tag, indent, stream); in print()
|
/tools/repohooks/tools/ |
D | checkpatch.pl | 2230 my $indent; 2412 ($length, $indent) = line_stats($rawline); 2416 ($previndent, $stashindent) = ($stashindent, $indent); 3080 my $indent = length($1); 3081 if ($indent % 8) { 3085 $fixed[$fixlinenr] =~ s@(^\+\t+) +@$1 . "\t" x ($indent/8)@e; 3424 $indent != $cindent) { 3476 if ($nindent > $indent) { 3576 ($sindent < $indent) || 3577 ($sindent == $indent && [all …]
|
D | cpplint.py | 1779 indent = Match(r'^( *)\S', line) 1780 if indent: 1781 return len(indent.group(1)) 2322 indent = Match(r'^( *)\}', clean_lines.elided[linenum]) 2323 if indent and len(indent.group(1)) != self.class_indent: 2694 indent = access_match.group(1) 2695 if (len(indent) != classinfo.class_indent + 1 and 2696 Match(r'^\s*$', indent)):
|
D | pylintrc | 305 indent-string=' ' 307 # Number of spaces of indent required inside a hanging or continued line. 308 indent-after-paren=4
|
/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/ |
D | PsiItem.kt | 191 val indent: String in addUniqueTag() constant 196 indent = "\n * " in addUniqueTag() 206 indent = documentation.substring(indentStart, indentEnd) in addUniqueTag() 212 …nd) + (if (insertNewLine) "\n" else "") + indent + linePrefix + tagSection + " " + commentLine + "… in addUniqueTag()
|
/tools/asuite/aidegen/lib/ |
D | common_util.py | 588 json.dump(data, json_file, indent=4) 689 def to_pretty_xml(root, indent=" "): argument 699 ElementTree.tostring(root)).toprettyxml(indent)
|
D | config.py | 165 json.dump(self._config, cfg_file, indent=4)
|
/tools/test/connectivity/acts/tests/google/wifi/ |
D | WifiPingTest.py | 135 json.dump(testclass_summary, results_file, indent=4) 253 json.dump(ping_range_result, results_file, indent=4) 659 json.dump(range_vs_angle, results_file, indent=4)
|
D | WifiRoamingPerformanceTest.py | 199 json.dump(wputils.serialize_dict(result), results_file, indent=4) 248 json.dump(wputils.serialize_dict(result), results_file, indent=4)
|
D | WifiIOTTwPkg1Test.py | 226 json.dump(iot_result, results_file, indent=4)
|
/tools/metalava/src/main/java/com/android/tools/metalava/ |
D | Options.kt | 2487 for (indent in 0 until INDENT_WIDTH) { in <lambda>() constant 2490 val indent = sb.toString() in <lambda>() constant 2514 MAX_LINE_WIDTH + invisibleChars, MAX_LINE_WIDTH, indent in <lambda>() 2519 MAX_LINE_WIDTH, indent in <lambda>()
|
/tools/acloud/public/ |
D | report.py | 210 logger.info("Report: %s", json.dumps(result, indent=2, sort_keys=True)) 215 json.dump(result, f, indent=2, sort_keys=True)
|
/tools/test/connectivity/acts_tests/tests/google/tel/etc/ |
D | manage_sim.py | 127 json.dump(simconf, f, indent=4, sort_keys=True) 161 json.dump(simconf, f, indent=4, sort_keys=True)
|
/tools/test/connectivity/acts/framework/acts/libs/ |
D | yaml_writer.py | 37 _DUMP_KWARGS = dict(explicit_start=True, allow_unicode=True, indent=4)
|
/tools/tradefederation/core/atest/ |
D | bug_detector.py | 136 json.dump(self.history, outfile, indent=0)
|
D | bug_detector_unittest.py | 73 json.dump(temp_history, outfile, indent=0)
|
D | atest_utils.py | 450 json.dump(full_result_content, outfile, indent=0)
|
/tools/asuite/atest/ |
D | bug_detector.py | 136 json.dump(self.history, outfile, indent=0)
|
D | bug_detector_unittest.py | 76 json.dump(temp_history, outfile, indent=0)
|
/tools/external_updater/ |
D | notifier.py | 155 json.dump(history, f, sort_keys=True, indent=4)
|
D | external_updater.py | 193 json.dump(results, res_file, sort_keys=True, indent=4)
|
/tools/test/connectivity/acts/framework/acts/ |
D | records.py | 216 json_str = json.dumps(d, indent=4)
|
D | test_runner.py | 335 indent=4)
|
/tools/test/connectivity/acts/framework/acts/test_utils/coex/ |
D | CoexBaseTest.py | 139 json.dump(self.result, results_file, indent=4, sort_keys=True)
|