/external/skia/tools/ |
verify_images_for_gm_results.py | 40 def FindURLSInJSON(json_file, gs_urls): 44 json_file: string; URL of the JSON file. 55 output = subprocess.check_output(['svn', 'cat', json_file]) 64 gs_urls[gs_url].append(json_file) 66 gs_urls[gs_url] = [json_file] 120 for json_file in FindJSONFiles(url): 121 print 'Looking for checksums in %s' % json_file 122 FindURLSInJSON(json_file, gs_urls)
|
/external/chromium/chrome/browser/extensions/ |
external_pref_extension_loader.cc | 71 FilePath json_file; local 72 json_file = 75 if (file_util::PathExists(json_file)) { 76 JSONFileValueSerializer serializer(json_file); 77 prefs.reset(ExtractPrefs(json_file, &serializer));
|
/external/chromium_org/chrome/browser/extensions/ |
external_pref_loader.cc | 157 base::FilePath json_file = base_path_.Append(kExternalExtensionJson); local 159 if (!base::PathExists(json_file)) { 166 if (!file_util::VerifyPathControlledByAdmin(json_file)) { 168 << json_file.value() << " and every directory in its path, " 183 JSONFileValueSerializer serializer(json_file); 185 ExtractExtensionPrefs(&serializer, json_file));
|
/external/chromium_org/build/android/pylib/instrumentation/ |
json_perf_parser.py | 146 def GetAverageRunInfoFromFile(json_file, name): 150 json_file: The path to a JSON file. 156 with open(json_file, 'r') as f:
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
api_list_data_source_test.py | 32 for name, json_file in names: 33 apis['api'][json_file] = json.dumps(_TEST_API_DATA[name])
|
/external/chromium_org/cc/trees/ |
layer_tree_host_common_perftest.cc | 42 base::FilePath json_file = test_data_dir.AppendASCII(name + ".json"); local 43 ASSERT_TRUE(base::ReadFileToString(json_file, &json_));
|
layer_tree_host_perftest.cc | 128 base::FilePath json_file = test_data_dir.AppendASCII(name + ".json"); local 129 ASSERT_TRUE(base::ReadFileToString(json_file, &json_));
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/ |
idl_compiler.py | 95 with open(json_filename, 'w') as json_file: 96 json_file.write(json_string)
|
/external/chromium_org/net/tools/quic/benchmark/ |
run_client.py | 63 def ReadPages(cls, json_file): 64 """Return the list of URLs from the json_file. 69 with open(json_file) as f:
|
/external/chromium_org/tools/perf/metrics/ |
speedindex_unittest.py | 151 with open(file_path) as json_file: 152 raw_events = json.load(json_file)
|
/external/chromium/chrome/common/extensions/docs/build/ |
directory.py | 46 json_file = open(path, 'r') 51 json_obj = json.load(json_file, encoding) 55 json_file.close()
|
/external/chromium_org/components/policy/tools/ |
generate_policy_source.py | 199 def _LoadJSONFile(json_file): 200 with open(json_file, 'r') as f:
|