Home
last modified time | relevance | path

Searched refs:indentFactor (Results 1 – 2 of 2) sorted by relevance

/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
DJSONObject.java1358 public String toString(int indentFactor) throws JSONException { in toString() argument
1359 return toString(indentFactor, 0); in toString()
1376 String toString(int indentFactor, int indent) throws JSONException { in toString() argument
1384 int newindent = indent + indentFactor; in toString()
1390 sb.append(valueToString(this.map.get(o), indentFactor, in toString() local
1405 sb.append(valueToString(this.map.get(o), indentFactor, in toString() local
1491 static String valueToString(Object value, int indentFactor, int indent) in valueToString() argument
1513 return ((JSONObject)value).toString(indentFactor, indent); in valueToString()
1516 return ((JSONArray)value).toString(indentFactor, indent); in valueToString()
1519 return new JSONObject((Map)value).toString(indentFactor, indent); in valueToString()
[all …]
DJSONArray.java876 public String toString(int indentFactor) throws JSONException { in toString() argument
877 return toString(indentFactor, 0); in toString()
891 String toString(int indentFactor, int indent) throws JSONException { in toString() argument
900 indentFactor, indent)); in toString()
902 int newindent = indent + indentFactor; in toString()
912 indentFactor, newindent)); in toString() local