HomeSort by relevance Sort by last modified time
    Searched refs:json (Results 476 - 500 of 982) sorted by null

<<11121314151617181920>>

  /external/chromium_org/v8/test/mjsunit/
mirror-null.js 31 // Create mirror and JSON representation.
34 var json = JSON.stringify(serializer.serializeValue(mirror)); variable
48 // Parse JSON representation and check.
49 var fromJSON = eval('(' + json + ')');
mirror-undefined.js 31 // Create mirror and JSON representation.
34 var json = JSON.stringify(serializer.serializeValue(mirror)); variable
48 // Parse JSON representation and check.
49 var fromJSON = eval('(' + json + ')');
  /libcore/json/src/main/java/org/json/
JSON.java 17 package org.json;
19 class JSON {
21 * Returns the input if it is a JSON-permissible value; throws otherwise.
JSONTokener.java 17 package org.json;
19 // Note: this class was written without inspecting the non-free org.json sourcecode.
22 * Parses a JSON (<a href="http://www.ietf.org/rfc/rfc4627.txt">RFC 4627</a>)
26 * String json = "{"
31 * JSONObject object = (JSONObject) new JSONTokener(json).nextValue();
35 * <p>For best interoperability and performance use JSON that complies with
38 * input string was valid JSON. All of the following syntax errors will be
55 * <p>Each tokener may be used to parse a single JSON string. Instances of this
64 /** The input JSON. */
74 * @param in JSON encoded string. Null is not permitted and will yield
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
AttachmentComposeView.java 31 import org.json.JSONException;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_float.py 2 from json.tests import PyTest, CTest
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_float.py 2 from json.tests import PyTest, CTest
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java 34 import org.json.JSONArray;
35 import org.json.JSONException;
36 import org.json.JSONObject;
169 // Create a special JSONArray of our JSON contacts
  /external/chromium_org/android_webview/native/
aw_dev_tools_server.cc 10 #include "base/json/json_writer.h"
157 std::string json; local
158 base::JSONWriter::Write(&description, &json);
159 return json;
  /external/chromium_org/base/metrics/
statistics_recorder.cc 9 #include "base/json/string_escape.h"
189 std::string json; local
190 (*it)->WriteJSON(&json);
191 output += json;
  /external/chromium_org/build/android/gyp/util/
build_utils.py 7 import json namespace
88 new_dump = json.dumps(obj, sort_keys=True, indent=2, separators=(',', ': '))
96 return json.load(jsonfile)
  /external/chromium_org/chrome/browser/ui/webui/
policy_ui_browsertest.cc 8 #include "base/json/json_reader.h"
143 "domAutomationController.send(JSON.stringify(policies));";
146 std::string json; local
148 &json));
149 scoped_ptr<base::Value> value_ptr(base::JSONReader::Read(json));
  /external/chromium_org/chrome/test/chromedriver/chrome/
performance_logger_unittest.cc 9 #include "base/json/json_reader.h"
103 scoped_ptr<base::DictionaryValue> ParseDictionary(const std::string& json) {
106 json, base::JSON_PARSE_RFC, NULL, &error));
108 SCOPED_TRACE(json.c_str());
115 SCOPED_TRACE("JSON object is not a dictionary");
  /external/chromium_org/chrome/test/chromedriver/client/
command_executor.py 6 import json namespace
166 body = json.dumps(params)
176 return json.loads(response.read())
  /external/chromium_org/chrome/test/mini_installer/
test_installer.py 12 import json namespace
197 new_property = json.load(open(path))
211 config_data = json.load(open(filename, 'r'))
  /external/chromium_org/components/invalidation/
p2p_invalidator.cc 10 #include "base/json/json_reader.h"
11 #include "base/json/json_writer.h"
110 std::string json; local
111 base::JSONWriter::Write(dict.get(), &json);
112 return json;
  /external/chromium_org/content/browser/webui/
web_ui_impl.cc 7 #include "base/json/json_writer.h"
34 std::string json; local
39 base::JSONWriter::Write(arg_list[i], &json);
40 parameters += base::UTF8ToUTF16(json);
  /external/chromium_org/content/public/browser/
devtools_protocol_constants_generator.py 8 import json namespace
27 // third_party/WebKit/Source/devtools/protocol.json and
28 // content/browser/devtools/browser_protocol.json
56 // third_party/WebKit/Source/devtools/protocol.json and
57 // content/browser/devtools/browser_protocol.json
155 blink_protocol = json.loads(blink_protocol_data)
162 browser_protocol = json.loads(browser_protocol_data)
  /external/chromium_org/net/base/
capturing_net_log.cc 7 #include "base/json/json_writer.h"
73 std::string json;
74 base::JSONWriter::Write(params.get(), &json);
75 return json;
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
HostListLoader.java 13 import org.json.JSONArray;
14 import org.json.JSONException;
15 import org.json.JSONObject;
43 /** Path from which to download a user's host list JSON object. */
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/devices/
DevicesView.js 72 var json = JSON.stringify(data);
73 if (element.__cachedJSON === json)
75 element.__cachedJSON = json;
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
CodeGeneratorFrontend.py 37 import json namespace
39 import simplejson as json namespace
56 sys.stderr.write("Usage: <script> protocol.json --output_js_dir <output_js_dir>\n")
146 json_api = json.loads(json_string)
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/src/
rule.cc 26 #include "util/json.h"
209 scoped_ptr<Json> json(Json::Build());
210 if (!json->ParseObject(serialized_rule)) {
213 ParseJsonRule(*json);
217 void Rule::ParseJsonRule(const Json& json_rule) {
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
FormatInterpreter.java 21 import org.json.JSONException;
22 import org.json.JSONObject;
23 import org.json.JSONTokener;
264 Util.checkNotNull(jsonString, "no json data for region code " + regionCode);
276 throw new RuntimeException("Invalid json for region code " + regionCode
  /external/chromium_org/tools/deep_memory_profiler/subcommands/
cat.py 5 import json namespace
80 json.dump(json_root, sys.stdout, indent=2)
82 json.dump(json_root, sys.stdout)

Completed in 1334 milliseconds

<<11121314151617181920>>