HomeSort by relevance Sort by last modified time
    Searched refs:json (Results 801 - 825 of 1526) sorted by null

<<31323334353637383940>>

  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONWriter.java 1 package com.google.polo.json;
7 Copyright (c) 2006 JSON.org
31 * JSONWriter provides a quick and convenient way of producing JSON text.
32 * The texts produced strictly conform to JSON syntax rules. No whitespace is
34 * JSONWriter can produce one JSON text.
46 * .key("JSON")
49 * {"JSON":"Hello, World!"}</pre>
56 * @author JSON.org
94 * Make a fresh JSONWriter. It can be used to build one JSON text.
XMLTokener.java 1 package com.google.polo.json;
4 Copyright (c) 2002 JSON.org
30 * @author JSON.org
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
Base64.java 28 package com.google.polo.wire.json;
JsonMessageBuilder.java 17 package com.google.polo.wire.json;
23 import com.google.polo.json.JSONArray;
24 import com.google.polo.json.JSONException;
25 import com.google.polo.json.JSONObject;
43 * A collection of methods to convert {@link PoloMessage}s to and from JSON
64 * Key names for JSON versions of messages.
67 // OuterMessage JSON key names
73 // PairingRequestMessage JSON key names
79 // PairingRequestAckMessage JSON key names
83 // OptionsMessage JSON key name
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
XmlMessageBuilder.java 21 import com.google.polo.json.JSONArray;
22 import com.google.polo.json.JSONException;
23 import com.google.polo.json.JSONObject;
24 import com.google.polo.json.XML;
200 * Generates a new {@link PairingRequestMessage} from a JSON payload.
202 * @param body the JSON payload
224 * Generates a new {@link PairingRequestAckMessage} from a JSON payload.
226 * @param body the JSON payload
246 * Generates a new {@link OptionsMessage} from a JSON payload.
248 * @param body the JSON payloa
    [all...]
  /external/skia/include/private/
GrAuditTrail.h 18 * to json.
122 static void JsonifyTArray(SkString* json, const char* name, const FrameArray& array,
  /external/sl4a/Common/src/com/googlecode/android_scripting/event/
EventServer.java 31 import org.json.JSONException;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/json/
JsonTest.java 16 package org.yaml.snakeyaml.json;
  /external/v8/test/mjsunit/es6/
mirror-promises.js 21 // Create mirror and JSON representation.
24 var json = JSON.stringify(serializer.serializeValue(mirror));
26 JSON.stringify(serializer.serializeReferencedObjects()));
45 // Parse JSON representation and check.
46 var fromJSON = eval('(' + json + ')');
  /external/v8/test/mjsunit/
mirror-date.js 32 // Create mirror and JSON representation.
35 var json = JSON.stringify(serializer.serializeValue(mirror));
51 // Parse JSON representation and check.
52 var fromJSON = eval('(' + json + ')');
mirror-error.js 44 // Create mirror and JSON representation.
47 var json = JSON.stringify(serializer.serializeValue(mirror));
49 JSON.stringify(serializer.serializeReferencedObjects()));
63 // Parse JSON representation and check.
64 var fromJSON = eval('(' + json + ')');
mirror-function.js 44 // Create mirror and JSON representation.
47 var json = JSON.stringify(serializer.serializeValue(mirror));
49 JSON.stringify(serializer.serializeReferencedObjects()));
72 // Parse JSON representation and check.
73 var fromJSON = eval('(' + json + ')');
mirror-number.js 32 // Create mirror and JSON representation.
35 var json = JSON.stringify(serializer.serializeValue(mirror));
50 // Parse JSON representation and check.
51 var fromJSON = eval('(' + json + ')');
mirror-regexp.js 54 // Create mirror and JSON representation.
57 var json = JSON.stringify(serializer.serializeValue(mirror));
59 JSON.stringify(serializer.serializeReferencedObjects()));
83 // Parse JSON representation and check.
84 var fromJSON = eval('(' + json + ')');
mirror-string.js 34 // Create mirror and JSON representation.
37 var json = JSON.stringify(serializer.serializeValue(mirror));
57 // Parse JSON representation and check.
58 var fromJSON = eval('(' + json + ')');
  /external/webrtc/webrtc/base/
json.h 18 #include "json/json.h"
20 #include "third_party/jsoncpp/json.h"
26 // JSON Helpers
30 bool GetIntFromJson(const Json::Value& in, int* out);
31 bool GetUIntFromJson(const Json::Value& in, unsigned int* out);
32 bool GetStringFromJson(const Json::Value& in, std::string* out);
33 bool GetBoolFromJson(const Json::Value& in, bool* out);
34 bool GetDoubleFromJson(const Json::Value& in, double* out);
36 // Pull values out of a JSON array
    [all...]
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
WebAsset.java 19 import org.json.JSONObject;
28 * <p>A web asset can be named by its protocol, domain, and port using this JSON string:
  /prebuilts/go/darwin-x86/src/cmd/vet/
structtag.go 40 // Check for use of json or xml tags with unexported fields.
53 for _, enc := range [...]string{"json", "xml"} {
  /prebuilts/go/linux-x86/src/cmd/vet/
structtag.go 40 // Check for use of json or xml tags with unexported fields.
53 for _, enc := range [...]string{"json", "xml"} {
  /bionic/tools/bionicbb/
presubmit.py 18 import json
151 headers = {'Content-Type': 'application/json;charset=UTF-8'}
154 requests.post(url, headers=headers, data=json.dumps(request_data))
  /external/ImageMagick/coders/
Android.mk 70 json.c\
  /external/autotest/client/common_lib/
control_data_unittest.py 4 import json
88 bug_template_line = 'BUG_TEMPLATE = %s' % json.dumps(self.bug_template)
  /external/autotest/client/common_lib/cros/tendo/
buffet_tester.py 6 import json
87 commands_dir, '%s.json' % TEST_COMMAND_CATEGORY)
89 f.write(json.dumps(TEST_COMMAND_DEFINITION))
  /external/autotest/client/site_tests/login_OobeLocalization/
login_OobeLocalization.py 5 import json
28 # cros-regions.json has information for each region (locale, input method,
29 # etc.) in JSON format.
30 _REGIONS_FILENAME = '/usr/share/misc/cros-regions.json'
52 # TODO(hungte) When OOBE supports cros-regions.json
239 return json.load(regions_file).values()
  /external/autotest/client/site_tests/security_BundledExtensions/
security_BundledExtensions.py 5 import json
29 baseline = json.loads(''.join(baseline))

Completed in 1373 milliseconds

<<31323334353637383940>>