OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JSONStringer
(Results
1 - 23
of
23
) sorted by null
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONStringer.java
30
*
JSONStringer
provides a quick and convenient way of producing JSON text.
33
*
JSONStringer
can produce one JSON text.
35
* A
JSONStringer
instance provides a <code>value</code> method for appending
43
* myString = new
JSONStringer
()
52
* There are no methods for adding commas or colons.
JSONStringer
adds them for
59
public class
JSONStringer
extends JSONWriter {
61
* Make a fresh
JSONStringer
. It can be used to build one JSON text.
63
public
JSONStringer
() {
69
*
JSONStringer
instance. It will return <code>null</code> if there was a
Test.java
22
JSONStringer
jj;
121
jj = new
JSONStringer
();
143
System.out.println(new
JSONStringer
()
156
jj = new
JSONStringer
();
393
System.out.println(new
JSONStringer
().array().value(a).value(j).endArray());
608
jj = new
JSONStringer
();
/libcore/json/src/test/java/org/json/
JSONStringerTest.java
28
assertNull(new
JSONStringer
().toString());
32
JSONStringer
stringer = new
JSONStringer
();
40
JSONStringer
stringer = new
JSONStringer
();
47
JSONStringer
stringer = new
JSONStringer
();
54
JSONStringer
stringer = new
JSONStringer
();
66
JSONStringer
stringer = new JSONStringer()
[
all
...]
/libcore/json/src/main/java/org/json/
JSONStringer.java
61
public class
JSONStringer
{
104
* A special bracketless array needed by
JSONStringer
.join() and
122
public
JSONStringer
() {
126
JSONStringer
(int indentSpaces) {
138
public
JSONStringer
array() throws JSONException {
147
public
JSONStringer
endArray() throws JSONException {
157
public
JSONStringer
object() throws JSONException {
166
public
JSONStringer
endObject() throws JSONException {
174
JSONStringer
open(Scope empty, String openBracket) throws JSONException {
188
JSONStringer
close(Scope empty, Scope nonempty, String closeBracket) throws JSONException
[
all
...]
JSONArray.java
566
JSONStringer
stringer = new
JSONStringer
();
567
stringer.open(
JSONStringer
.Scope.NULL, "");
574
stringer.close(
JSONStringer
.Scope.NULL,
JSONStringer
.Scope.NULL, "");
584
JSONStringer
stringer = new
JSONStringer
();
605
JSONStringer
stringer = new
JSONStringer
(indentSpaces);
610
void writeTo(
JSONStringer
stringer) throws JSONException
[
all
...]
JSONObject.java
688
JSONStringer
stringer = new
JSONStringer
();
712
JSONStringer
stringer = new
JSONStringer
(indentSpaces);
717
void writeTo(
JSONStringer
stringer) throws JSONException {
764
JSONStringer
stringer = new
JSONStringer
();
765
stringer.open(
JSONStringer
.Scope.NULL, "");
767
stringer.close(
JSONStringer
.Scope.NULL,
JSONStringer
.Scope.NULL, "")
[
all
...]
/packages/apps/Launcher3/src/com/android/launcher3/compat/
PackageInstallerCompatV16.java
28
import org.json.
JSONStringer
;
159
JSONStringer
json = new
JSONStringer
()
/prebuilts/misc/common/json/
json-prebuilt.jar
/packages/apps/Launcher3/src/com/android/launcher3/
InstallShortcutReceiver.java
38
import org.json.
JSONStringer
;
302
return new
JSONStringer
()
333
JSONStringer
json = new
JSONStringer
()
/packages/apps/Launcher2/src/com/android/launcher2/
InstallShortcutReceiver.java
84
JSONStringer
json = new
JSONStringer
()
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/
json-20090211.jar
/external/robolectric/lib/main/
json-20080701.jar
/prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/12/
android.jar
/prebuilts/sdk/13/
android.jar
/prebuilts/sdk/15/
android.jar
/prebuilts/sdk/16/
android.jar
/prebuilts/sdk/17/
android.jar
/prebuilts/sdk/4/
android.jar
/prebuilts/sdk/7/
android.jar
/prebuilts/sdk/8/
android.jar
/prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar
Completed in 398 milliseconds