Home
last modified time | relevance | path

Searched refs:indent (Results 1 – 10 of 10) sorted by relevance

/tools/metalava/src/main/java/com/android/tools/metalava/apilevels/
DApiElement.java127 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()
DApiClass.java95 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/
Dreport.py161 logger.info("Report: %s", json.dumps(result, indent=2))
166 json.dump(result, f, indent=2)
/tools/test/connectivity/tools/lab/reporters/
Djson_reporter.py51 metric_responses, indent=4, cls=AutoJsonEncoder, fp=outfile)
/tools/test/connectivity/acts/tests/google/tel/etc/
Dmanage_sim.py127 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/
Drecords.py340 json_str = json.dumps(d, indent=4, sort_keys=True)
/tools/repohooks/tools/
Dpylintrc230 indent-string=' '
232 # Number of spaces of indent required inside a hanging or continued line.
233 indent-after-paren=4
Dcpplint.py1773 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/
DWifiRvrTest.py218 json.dump(rvr_result, results_file, indent=4)
/tools/test/connectivity/acts/tests/google/tel/live/
DTelLiveStressTest.py394 json_str = json.dumps(self.perf_data, indent=4, sort_keys=True)