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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/docs/server2/test_data/
canned_data.py 5 import json namespace
51 '_api_features.json': json.dumps({
55 '_manifest_features.json': '{}',
56 '_permission_features.json': '{}'
68 'json': {
69 'api_availabilities.json': json.dumps({
84 'intro_tables.json': json.dumps(
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/test_data/object_level_availability/
tabs.py 5 import json namespace
15 'json': {
16 'api_availabilities.json': '{}'
21 '_api_features.json': '{}',
22 '_manifest_features.json': '{}',
23 '_permission_features.json': '{}',
24 'tabs.json': json.dumps([{
119 '_api_features.json': "{}",
120 '_manifest_features.json': "{}"
    [all...]
  /external/chromium_org/content/public/browser/
dom_operation_notification_details.h 16 DomOperationNotificationDetails(const std::string& json, int automation_id)
17 : json(json), automation_id(automation_id) { }
19 std::string json; member in struct:content::DomOperationNotificationDetails
  /external/chromium_org/build/android/buildbot/
env_to_json.py 6 # Encode current environment into json.
8 import json namespace
11 print json.dumps(dict(os.environ))
  /external/chromium_org/third_party/libaddressinput/src/cpp/test/util/
json_test.cc 15 #include "util/json.h"
24 using i18n::addressinput::Json;
28 Json json; local
29 EXPECT_FALSE(json.ParseObject(std::string()));
33 Json json; local
34 ASSERT_TRUE(json.ParseObject("{}"));
35 EXPECT_FALSE(json.HasStringValueForKey("key"));
36 EXPECT_FALSE(json.HasStringValueForKey(std::string()))
40 Json json; local
45 Json json; local
52 Json json; local
58 Json json; local
65 Json json; local
72 Json json; local
79 Json json; local
84 Json json; local
90 Json json; local
100 Json json; local
105 Json json; local
110 Json json; local
115 Json json; local
121 Json json; local
130 Json json; local
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
json-20090211.jar 
  /external/chromium_org/chrome/test/chromedriver/chrome/
util.cc 7 #include "base/json/json_writer.h"
11 std::string json; local
12 base::JSONWriter::Write(value, &json);
13 return json;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_json.py 1 """Tests for json.
3 The tests for json are defined in the json.tests package;
8 import json.tests namespace
13 test.test_support.run_unittest(json.tests.test_suite())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_json.py 1 """Tests for json.
3 The tests for json are defined in the json.tests package;
8 import json.tests namespace
13 test.test_support.run_unittest(json.tests.test_suite())
  /prebuilts/misc/common/json/
json-prebuilt.jar 
  /external/chromium_org/components/cloud_devices/common/
cloud_device_description_consts.cc 9 namespace json { namespace in namespace:cloud_devices
18 } // namespace json
cloud_device_description_consts.h 8 // Constants for common parts of JSON representation of CDD/CJT.
12 namespace json { namespace in namespace:cloud_devices
21 } // namespace 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.
  /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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_speedups.py 1 from json.tests import CTest
6 self.assertEqual(self.json.decoder.scanstring.__module__, "_json")
7 self.assertIs(self.json.decoder.scanstring, self.json.decoder.c_scanstring)
10 self.assertEqual(self.json.encoder.encode_basestring_ascii.__module__,
12 self.assertIs(self.json.encoder.encode_basestring_ascii,
13 self.json.encoder.c_encode_basestring_ascii)
17 self.assertRaises(AttributeError, self.json.scanner.c_make_scanner, 1)
20 self.assertRaises(TypeError, self.json.encoder.c_make_encoder,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_speedups.py 1 from json.tests import CTest
6 self.assertEqual(self.json.decoder.scanstring.__module__, "_json")
7 self.assertIs(self.json.decoder.scanstring, self.json.decoder.c_scanstring)
10 self.assertEqual(self.json.encoder.encode_basestring_ascii.__module__,
12 self.assertIs(self.json.encoder.encode_basestring_ascii,
13 self.json.encoder.c_encode_basestring_ascii)
17 self.assertRaises(AttributeError, self.json.scanner.c_make_scanner, 1)
20 self.assertRaises(TypeError, self.json.encoder.c_make_encoder,
  /external/robolectric/lib/main/
json-20080701.jar 
  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
BackupSharedPreference.java 19 import org.json.JSONException;
20 import org.json.JSONObject;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JSONParser.h 41 PassRefPtr<JSONValue> parseJSON(const String& json);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/android/
scrape_gtest_log.py 9 """Standalone script which parses a gtest log for json.
11 Json is returned returns as an array. This script is used by the libvpx
12 waterfall to gather json results mixed in with gtest logs. This is
16 import json namespace
25 print json.dumps(json.loads(json_string), indent=4, sort_keys=True)
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
HostInfo.java 7 import org.json.JSONArray;
8 import org.json.JSONException;
9 import org.json.JSONObject;
40 public static HostInfo create(JSONObject json) throws JSONException {
41 assert json != null;
44 JSONArray jsonPatterns = json.optJSONArray("tokenUrlPatterns");
55 json.getString("hostName"),
56 json.getString("hostId"),
57 json.optString("jabberId"),
58 json.optString("publicKey")
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
features_bundle_test.py 6 import json namespace
16 '_api_features.json': json.dumps({
69 '_manifest_features.json': json.dumps({
102 '_permission_features.json': json.dumps({
129 'json': {
130 'manifest.json': json.dumps(
    [all...]
  /external/chromium_org/third_party/simplejson/
tool.py 1 r"""Command-line tool to validate and pretty-print JSON
5 $ echo '{"json":"obj"}' | python -m simplejson.tool
7 "json": "obj"
14 import simplejson as json namespace
29 obj = json.load(infile,
30 object_pairs_hook=json.OrderedDict,
34 json.dump(obj, outfile, sort_keys=True, indent=' ', use_decimal=True)
  /cts/libs/json/src/com/android/json/stream/
JsonScope.java 17 package com.android.json.stream;
20 * Lexical scoping elements within a JSON reader or writer.
  /external/chromium_org/cc/test/
layer_tree_json_parser.h 17 scoped_refptr<Layer> ParseTreeFromJson(std::string json,

Completed in 1107 milliseconds

1 2 3 4 5 6 7 8 91011>>