Searched refs:indent (Results 1 – 10 of 10) sorted by relevance
/tools/metalava/src/main/java/com/android/tools/metalava/apilevels/ |
D | ApiElement.java | 127 public void print(String tag, ApiElement parentElement, String indent, PrintStream stream) { in print() argument 128 print(tag, true, parentElement, indent, stream); in print() 143 protected void print(String tag, boolean closeTag, ApiElement parentElement, String indent, in print() argument 145 stream.print(indent); in print() 178 …protected void print(Collection<? extends ApiElement> elements, String tag, String indent, PrintSt… in print() argument 180 element.print(tag, this, indent, stream); in print() 197 protected static void printClosingTag(String tag, String indent, PrintStream stream) { in printClosingTag() argument 198 stream.print(indent); in printClosingTag()
|
D | ApiClass.java | 95 public void print(String tag, ApiElement parentElement, String indent, PrintStream stream) { in print() argument 96 super.print(tag, false, parentElement, indent, stream); in print() 97 String innerIndent = indent + '\t'; in print() 102 printClosingTag(tag, indent, stream); in print()
|
/tools/acloud/public/ |
D | report.py | 161 logger.info("Report: %s", json.dumps(result, indent=2)) 166 json.dump(result, f, indent=2)
|
/tools/test/connectivity/tools/lab/reporters/ |
D | json_reporter.py | 51 metric_responses, indent=4, cls=AutoJsonEncoder, fp=outfile)
|
/tools/test/connectivity/acts/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/ |
D | records.py | 340 json_str = json.dumps(d, indent=4, sort_keys=True)
|
/tools/repohooks/tools/ |
D | pylintrc | 230 indent-string=' ' 232 # Number of spaces of indent required inside a hanging or continued line. 233 indent-after-paren=4
|
D | cpplint.py | 1773 indent = Match(r'^( *)\S', line) 1774 if indent: 1775 return len(indent.group(1)) 2316 indent = Match(r'^( *)\}', clean_lines.elided[linenum]) 2317 if indent and len(indent.group(1)) != self.class_indent: 2688 indent = access_match.group(1) 2689 if (len(indent) != classinfo.class_indent + 1 and 2690 Match(r'^\s*$', indent)):
|
/tools/test/connectivity/acts/tests/google/wifi/ |
D | WifiRvrTest.py | 218 json.dump(rvr_result, results_file, indent=4)
|
/tools/test/connectivity/acts/tests/google/tel/live/ |
D | TelLiveStressTest.py | 394 json_str = json.dumps(self.perf_data, indent=4, sort_keys=True)
|