Home
last modified time | relevance | path

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

/libcore/xml/src/main/java/com/android/org/kxml2/io/
DKXmlSerializer.java47 private boolean[] indent = new boolean[4]; field in KXmlSerializer
93 if (indent.length <= depth) { in check()
95 System.arraycopy(indent, 0, hlp, 0, depth); in check()
96 indent = hlp; in check()
98 indent[depth] = indent[depth - 1]; in check()
219 ? indent[depth] in getFeature()
298 indent[depth] = value; in setFeature()
403 if (indent[depth]) { in startTag()
531 if (indent[depth + 1]) { in endTag()
565 indent[depth] = false; in text()
/libcore/json/src/main/java/org/json/
DJSONStringer.java124 private final String indent; field in JSONStringer
127 indent = null; in JSONStringer()
134 indent = new String(indentChars); in JSONStringer()
365 if (indent == null) { in newline()
371 out.append(indent); in newline()
425 out.append(indent == null ? ":" : ": "); in beforeValue()
/libcore/ojluni/src/main/java/java/lang/
DThreadGroup.java1004 void list(PrintStream out, int indent) { in list() argument
1008 for (int j = 0 ; j < indent ; j++) { in list()
1012 indent += 4; in list()
1014 for (int j = 0 ; j < indent ; j++) { in list()
1027 groupsSnapshot[i].list(out, indent); in list()
/libcore/tools/docs/crypto/
Dupdate_crypto_support.py273 new_data, f, indent=2, sort_keys=True, separators=(',', ': '))
277 new_data, indent=2, sort_keys=True, separators=(',', ': '))
/libcore/ojluni/annotations/hiddenapi/java/lang/
DThreadGroup.java184 void list(java.io.PrintStream out, int indent) { in list() argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
DDocumentBuilderFactoryTest.java861 private void goThroughDocument(Node node, String indent) { in goThroughDocument() argument
913 goThroughDocument(list.item(i), indent + " "); in goThroughDocument() local