HomeSort by relevance Sort by last modified time
    Searched defs:json (Results 1 - 25 of 476) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/encoding/json/
tags_test.go 5 package json package
number_test.go 5 package json package
tables.go 5 package json package
10 // position can be represented inside a JSON string without any further
115 // array position can be safely represented inside a JSON string, embedded
tags.go 5 package json package
11 // tagOptions is the string following a comma in a struct field's "json"
15 // parseTag splits a struct field's json tag into its name and
fold_test.go 5 package json package
indent.go 5 package json package
9 // Compact appends to dst the JSON-encoded src with
68 // Indent appends to dst an indented form of the JSON-encoded src.
69 // Each element in a JSON object or array begins on a new,
73 // any indentation, to make it easier to embed inside other formatted JSON data.
  /prebuilts/go/linux-x86/src/encoding/json/
tags_test.go 5 package json package
number_test.go 5 package json package
tables.go 5 package json package
10 // position can be represented inside a JSON string without any further
115 // array position can be safely represented inside a JSON string, embedded
tags.go 5 package json package
11 // tagOptions is the string following a comma in a struct field's "json"
15 // parseTag splits a struct field's json tag into its name and
fold_test.go 5 package json package
indent.go 5 package json package
9 // Compact appends to dst the JSON-encoded src with
68 // Indent appends to dst an indented form of the JSON-encoded src.
69 // Each element in a JSON object or array begins on a new,
73 // any indentation, to make it easier to embed inside other formatted JSON data.
  /libcore/json/src/main/java/org/json/
JSONException.java 17 package org.json;
19 // Note: this class was written without inspecting the non-free org.json sourcecode.
22 * Thrown to indicate a problem with the JSON API. Such problems include:
26 * <li>Use of numeric types not available to JSON, such as {@link
  /external/caliper/caliper/src/main/java/com/google/caliper/json/
AnnotationExclusionStrategy.java 17 package com.google.caliper.json;
InstantTypeAdapter.java 17 package com.google.caliper.json;
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONString.java 1 package com.google.polo.json;
12 * The <code>toJSONString</code> method allows a class to produce its own JSON
15 * @return A strictly syntactically correct JSON text.
JSONStringer.java 1 package com.google.polo.json;
4 Copyright (c) 2006 JSON.org
30 * JSONStringer provides a quick and convenient way of producing JSON text.
31 * The texts produced strictly conform to JSON syntax rules. No whitespace is
33 * JSONStringer can produce one JSON text.
45 * .key("JSON")
49 * {"JSON":"Hello, World!"}</pre>
56 * @author JSON.org
61 * Make a fresh JSONStringer. It can be used to build one JSON text.
68 * Return the JSON text. This method is used to obtain the product of th
    [all...]
HTTPTokener.java 1 package com.google.polo.json;
4 Copyright (c) 2002 JSON.org
30 * @author JSON.org
JSONException.java 1 package com.google.polo.json;
4 * The JSONException is thrown by the JSON.org classes then things are amiss.
5 * @author JSON.org
  /external/libbrillo/brillo/errors/
error_codes.h 20 namespace json { namespace in namespace:brillo::errors
24 } // namespace json
  /external/skia/tools/
skp_parser.cpp 39 Json::Value json = debugCanvas.toJSON( local
56 Json::StyledStreamWriter(" ").write(std::cout, json);
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/simpledom/
simpledom.cpp 0 // JSON simple example
12 // 1. Parse a JSON string into DOM.
13 const char* json = "{\"project\":\"rapidjson\",\"stars\":10}"; local
15 d.Parse(json);
  /external/libchrome/base/trace_event/
trace_event_argument_unittest.cc 24 std::string json = "PREFIX"; local
25 value->AppendAsTraceFormat(&json);
28 json);
37 std::string json; local
38 value->AppendAsTraceFormat(&json);
41 json);
64 std::string json; local
65 value->AppendAsTraceFormat(&json);
70 json);
92 std::string json; local
125 std::string json; local
146 std::string json; local
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
JsonRpcResult.java 19 import org.json.JSONException;
20 import org.json.JSONObject;
23 * Represents a JSON RPC result.
25 * @see http://json-rpc.org/wiki/specification
35 JSONObject json = new JSONObject(); local
36 json.put("id", id);
37 json.put("result", JSONObject.NULL);
38 json.put("error", JSONObject.NULL);
39 return json;
43 JSONObject json = new JSONObject() local
51 JSONObject json = new JSONObject(); local
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
jsoncheckertest.cpp 44 char* json = (char*)malloc(length + 1); local
45 size_t readLength = fread(json, 1, length, fp);
46 json[readLength] = '\0';
48 return json;
54 // jsonchecker/failXX.json
56 if (i == 1) // fail1.json is valid in rapidjson, which has no limitation on type of root element (RFC 7159).
58 if (i == 18) // fail18.json is valid in rapidjson, which has no limitation on depth of nesting.
61 sprintf(filename, "fail%d.json", i);
63 char* json = ReadFile(filename, length); local
64 if (!json) {
84 char* json = ReadFile(filename, length); local
    [all...]

Completed in 591 milliseconds

1 2 3 4 5 6 7 8 91011>>