HomeSort by relevance Sort by last modified time
    Searched refs:JSON (Results 1 - 25 of 198) sorted by null

1 2 3 4 5 6 7 8

  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
RTCMediaConstraints+JSON.h 13 @interface RTCMediaConstraints (JSON)
RTCICECandidate+JSON.h 13 @interface RTCICECandidate (JSON)
RTCICEServer+JSON.h 13 @interface RTCICEServer (JSON)
16 // CEOD provides different JSON, and this parses that.
RTCSessionDescription+JSON.h 13 @interface RTCSessionDescription (JSON)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/
test_pass1.py 1 from json.tests import PyTest, CTest
4 # from http://json.org/JSON_checker/test/pass1.json
5 JSON = r'''
7 "JSON Test Pattern pass1",
39 "url": "http://www.JSON.org/",
67 res = self.loads(JSON)
test_pass2.py 1 from json.tests import PyTest, CTest
4 # from http://json.org/JSON_checker/test/pass2.json
5 JSON = r'''
12 res = self.loads(JSON)
test_pass3.py 1 from json.tests import PyTest, CTest
4 # from http://json.org/JSON_checker/test/pass3.json
5 JSON = r'''
7 "JSON Test Pattern pass3": {
18 res = self.loads(JSON)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/
test_pass1.py 1 from json.tests import PyTest, CTest
4 # from http://json.org/JSON_checker/test/pass1.json
5 JSON = r'''
7 "JSON Test Pattern pass1",
40 "url": "http://www.JSON.org/",
69 res = self.loads(JSON)
test_pass2.py 1 from json.tests import PyTest, CTest
4 # from http://json.org/JSON_checker/test/pass2.json
5 JSON = r'''
12 res = self.loads(JSON)
test_pass3.py 1 from json.tests import PyTest, CTest
4 # from http://json.org/JSON_checker/test/pass3.json
5 JSON = r'''
7 "JSON Test Pattern pass3": {
18 res = self.loads(JSON)
  /external/python/cpython2/Lib/json/tests/
test_pass1.py 1 from json.tests import PyTest, CTest
4 # from http://json.org/JSON_checker/test/pass1.json
5 JSON = r'''
7 "JSON Test Pattern pass1",
40 "url": "http://www.JSON.org/",
69 res = self.loads(JSON)
test_pass2.py 1 from json.tests import PyTest, CTest
4 # from http://json.org/JSON_checker/test/pass2.json
5 JSON = r'''
12 res = self.loads(JSON)
test_pass3.py 1 from json.tests import PyTest, CTest
4 # from http://json.org/JSON_checker/test/pass3.json
5 JSON = r'''
7 "JSON Test Pattern pass3": {
18 res = self.loads(JSON)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_pass1.py 1 from json.tests import PyTest, CTest
4 # from http://json.org/JSON_checker/test/pass1.json
5 JSON = r'''
7 "JSON Test Pattern pass1",
40 "url": "http://www.JSON.org/",
69 res = self.loads(JSON)
test_pass2.py 1 from json.tests import PyTest, CTest
4 # from http://json.org/JSON_checker/test/pass2.json
5 JSON = r'''
12 res = self.loads(JSON)
test_pass3.py 1 from json.tests import PyTest, CTest
4 # from http://json.org/JSON_checker/test/pass3.json
5 JSON = r'''
7 "JSON Test Pattern pass3": {
18 res = self.loads(JSON)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_pass1.py 1 from json.tests import PyTest, CTest
4 # from http://json.org/JSON_checker/test/pass1.json
5 JSON = r'''
7 "JSON Test Pattern pass1",
40 "url": "http://www.JSON.org/",
69 res = self.loads(JSON)
test_pass2.py 1 from json.tests import PyTest, CTest
4 # from http://json.org/JSON_checker/test/pass2.json
5 JSON = r'''
12 res = self.loads(JSON)
test_pass3.py 1 from json.tests import PyTest, CTest
4 # from http://json.org/JSON_checker/test/pass3.json
5 JSON = r'''
7 "JSON Test Pattern pass3": {
18 res = self.loads(JSON)
  /external/skia/tools/
reformat-json.py 11 Rewrites a JSON file to use Python's standard JSON pretty-print format,
16 Should not modify the JSON contents in any meaningful way.
27 # that directory. That script allows us to parse the actual-results.json file
46 parser = argparse.ArgumentParser(description='Reformat JSON files in-place.')
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/
WireFormat.java 20 import com.google.polo.wire.json.JsonWireAdapter;
29 JSON, // JSON, implemented by JsonWireInterface
42 case JSON:
  /libcore/json/src/main/java/org/json/
JSONArray.java 17 package org.json;
25 // Note: this class was written without inspecting the non-free org.json sourcecode.
96 throw JSON.typeMismatch(object, "JSONArray");
101 * Creates a new {@code JSONArray} with values from the JSON string.
103 * @param json a JSON-encoded string containing an array.
107 public JSONArray(String json) throws JSONException {
108 this(new JSONTokener(json));
150 values.add(JSON.checkDouble(value));
194 JSON.checkDouble(((Number) value).doubleValue())
    [all...]
JSONObject.java 17 package org.json;
27 // Note: this class was written without inspecting the non-free org.json sourcecode.
93 * <li>are included in the encoded JSON string.
163 throw JSON.typeMismatch(object, "JSONObject");
168 * Creates a new {@code JSONObject} with name/value mappings from the JSON
171 * @param json a JSON-encoded string containing an object.
175 public JSONObject(String json) throws JSONException {
176 this(new JSONTokener(json));
221 nameValuePairs.put(checkName(name), JSON.checkDouble(value))
    [all...]
  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
server.go 8 "encoding/json"
18 dec *json.Decoder // for reading JSON values
19 enc *json.Encoder // for writing JSON values
25 // JSON-RPC clients can use arbitrary json values as request IDs.
33 pending map[uint64]*json.RawMessage
36 // NewServerCodec returns a new rpc.ServerCodec using JSON-RPC on conn.
39 dec: json.NewDecoder(conn)
    [all...]
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
server.go 8 "encoding/json"
18 dec *json.Decoder // for reading JSON values
19 enc *json.Encoder // for writing JSON values
25 // JSON-RPC clients can use arbitrary json values as request IDs.
33 pending map[uint64]*json.RawMessage
36 // NewServerCodec returns a new rpc.ServerCodec using JSON-RPC on conn.
39 dec: json.NewDecoder(conn)
    [all...]

Completed in 1733 milliseconds

1 2 3 4 5 6 7 8