HomeSort by relevance Sort by last modified time
    Searched refs:json (Results 301 - 325 of 1255) sorted by null

<<11121314151617181920>>

  /external/chromium_org/components/domain_reliability/
bake_in_configs.py 7 """Takes the JSON files in components/domain_reliability/baked_in_configs and
12 import json namespace
81 print >> sys.stderr, ('Usage: %s <JSON files...> <output C++ file>' %
91 config = json.loads(json_text)
  /external/chromium_org/gpu/config/
gpu_blacklist_unittest.cc 28 const std::string json = local
50 EXPECT_TRUE(blacklist->LoadList(json, GpuBlacklist::kAllOs));
gpu_driver_bug_list_unittest.cc 53 std::string json; local
82 const std::string json = LONG_STRING_CONST( local
109 EXPECT_TRUE(driver_bug_list->LoadList(json, GpuControlList::kAllOs));
120 EXPECT_TRUE(driver_bug_list->LoadList(json, GpuControlList::kAllOs));
161 const std::string json = LONG_STRING_CONST( local
185 EXPECT_TRUE(list->LoadList(json, GpuControlList::kAllOs));
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
convert_svg_images_to_png.py 39 import json namespace
41 import simplejson as json namespace
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
print-stale-test-expectations-entries 34 import json namespace
54 parsed = json.loads(response.read())
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
layouttestsserver.py 31 import json namespace
52 json_data = json.loads(json_raw_data)
  /external/chromium_org/tools/deep_memory_profiler/visualizer/
app.py 10 import json namespace
45 template_values['json'] = services.GetProfiler(run_id)
54 that user can upload large json file."""
82 content = json.loads(self.request.POST['content'])
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
json_writer.py 6 import json namespace
33 '''Class for generating policy files in JSON format (for Linux). The
35 set for them. This class is used by PolicyTemplateGenerator to write .json
46 example_value_str = json.dumps(policy['example_value'], sort_keys=True)
55 line = ' // The JSON file should be placed in %srecommended.' % \
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
dump_dependency_json.py 10 import json namespace
77 filename = 'dump.json'
79 json.dump(edges, f)
81 print 'Wrote json to %s.' % filename
  /external/chromium_org/tools/gyp/tools/
graphviz.py 7 """Using the JSON dumped by the dump-dependency-json generator,
12 import json namespace
26 file = open('dump.json')
27 edges = json.load(file)
93 edges = LoadEdges('dump.json', sys.argv[1:])
  /external/chromium_org/tools/
gypv8sh.py 10 import json namespace
41 cmd.extend(['-e', "arguments=" + json.dumps(arguments), mock_js,
  /external/chromium_org/tools/perf/benchmarks/
jetstream.py 20 import json namespace
59 result = json.loads(result.partition(': ')[2])
84 archive_data_file='../page_sets/data/jetstream.json',
  /external/chromium_org/tools/telemetry/telemetry/core/heap/
chrome_js_heap_snapshot_parser_unittest.py 5 import json namespace
36 json.dumps(heap)).GetAllLiveHeapObjects())
  /external/chromium_org/v8/test/mjsunit/
mirror-boolean.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 + ')');
52 assertEquals('boolean', fromJSON.type, json);
53 assertEquals(b, fromJSON.value, json);
  /external/chromium_org/base/android/java/src/org/chromium/base/
PerfTraceEvent.java 11 import org.json.JSONArray;
12 import org.json.JSONException;
13 import org.json.JSONObject;
68 // Events are stored as a JSON dict much like TraceEvent.
261 * Save a perf trace event as a JSON dict. The format mirrors a TraceEvent dict.
280 * Save a perf trace event as a JSON dict. The format mirrors a TraceEvent dict.
338 * to STDOUT, otherwise the JSON performance data will be appended to {@code file}. This should
352 * Output as JSON for parsing convenience.
355 String json = sPerfTraceStrings.toString(); local
358 System.out.println(json);
    [all...]
  /external/chromium_org/chrome/test/chromedriver/server/
http_handler_unittest.cc 8 #include "base/json/json_writer.h"
76 std::string json; local
77 base::JSONWriter::Write(&body, &json);
78 ASSERT_EQ(json, response.body());
121 std::string json; local
122 base::JSONWriter::Write(&body, &json);
123 ASSERT_EQ(json, response.body());
  /external/chromium_org/components/cloud_devices/common/
description_items_inl.h 101 if (!item->GetList(json::kKeyOption, &options))
111 option_value->GetBoolean(json::kKeyIsDefault, &is_default);
126 ->Set(json::kKeyOption, options_list);
131 option_value->SetBoolean(json::kKeyIsDefault, true);
154 dict->GetBoolean(json::kKeyDefault, &default_value_);
164 dict->SetBoolean(json::kKeyDefault, default_value_);
  /external/chromium_org/extensions/browser/
computed_hashes.cc 10 #include "base/json/json_reader.h"
11 #include "base/json/json_writer.h"
154 std::string json; local
159 if (!base::JSONWriter::Write(&top_dictionary, &json))
161 int written = base::WriteFile(path, json.data(), json.size());
162 if (static_cast<unsigned>(written) != json.size()) {
164 << " ; write result:" << written << " expected:" << json.size();
  /external/chromium_org/native_client_sdk/src/build_tools/
nacl-mono-buildbot.py 7 import json namespace
16 SDK_MANIFEST = 'naclsdk_manifest2.json'
17 MONO_MANIFEST = 'naclmono_manifest.json'
49 sdk_manifest = json.loads(manifest_file.read())
74 mono_manifest = json.loads(manifest_file.read())
103 manifest_file.write(json.dumps(mono_manifest, sort_keys=False, indent=2))
116 mono_manifest = json.loads(manifest_file.read())
155 manifest_file.write(json.dumps(mono_manifest, sort_keys=False, indent=2))
  /external/chromium_org/net/base/
net_log_logger.cc 9 #include "base/json/json_writer.h"
66 std::string json; local
67 base::JSONWriter::Write(&constants, &json);
68 fprintf(file_.get(), "{\"constants\": %s,\n", json.c_str());
95 std::string json; local
96 base::JSONWriter::Write(value.get(), &json);
99 json.c_str());
  /external/chromium_org/third_party/WebKit/Source/devtools/
frontend_protocol_sources.target.darwin-arm.mk 22 $(gyp_shared_intermediate_dir)/resources/inspector/InspectorBackendCommands.js: $(LOCAL_PATH)/third_party/WebKit/Source/devtools/scripts/CodeGeneratorFrontend.py $(LOCAL_PATH)/third_party/WebKit/Source/devtools/protocol.json $(GYP_TARGET_DEPENDENCIES)
23 @echo "Gyp action: Generating Inspector protocol frontend sources from protocol.json ($@)"
24 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/devtools; mkdir -p $(gyp_shared_intermediate_dir)/resources/inspector; python scripts/CodeGeneratorFrontend.py protocol.json --output_js_dir "$(gyp_shared_intermediate_dir)/resources/inspector/"
frontend_protocol_sources.target.darwin-arm64.mk 22 $(gyp_shared_intermediate_dir)/resources/inspector/InspectorBackendCommands.js: $(LOCAL_PATH)/third_party/WebKit/Source/devtools/scripts/CodeGeneratorFrontend.py $(LOCAL_PATH)/third_party/WebKit/Source/devtools/protocol.json $(GYP_TARGET_DEPENDENCIES)
23 @echo "Gyp action: Generating Inspector protocol frontend sources from protocol.json ($@)"
24 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/devtools; mkdir -p $(gyp_shared_intermediate_dir)/resources/inspector; python scripts/CodeGeneratorFrontend.py protocol.json --output_js_dir "$(gyp_shared_intermediate_dir)/resources/inspector/"
frontend_protocol_sources.target.darwin-mips.mk 22 $(gyp_shared_intermediate_dir)/resources/inspector/InspectorBackendCommands.js: $(LOCAL_PATH)/third_party/WebKit/Source/devtools/scripts/CodeGeneratorFrontend.py $(LOCAL_PATH)/third_party/WebKit/Source/devtools/protocol.json $(GYP_TARGET_DEPENDENCIES)
23 @echo "Gyp action: Generating Inspector protocol frontend sources from protocol.json ($@)"
24 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/devtools; mkdir -p $(gyp_shared_intermediate_dir)/resources/inspector; python scripts/CodeGeneratorFrontend.py protocol.json --output_js_dir "$(gyp_shared_intermediate_dir)/resources/inspector/"
frontend_protocol_sources.target.darwin-mips64.mk 22 $(gyp_shared_intermediate_dir)/resources/inspector/InspectorBackendCommands.js: $(LOCAL_PATH)/third_party/WebKit/Source/devtools/scripts/CodeGeneratorFrontend.py $(LOCAL_PATH)/third_party/WebKit/Source/devtools/protocol.json $(GYP_TARGET_DEPENDENCIES)
23 @echo "Gyp action: Generating Inspector protocol frontend sources from protocol.json ($@)"
24 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/devtools; mkdir -p $(gyp_shared_intermediate_dir)/resources/inspector; python scripts/CodeGeneratorFrontend.py protocol.json --output_js_dir "$(gyp_shared_intermediate_dir)/resources/inspector/"
frontend_protocol_sources.target.darwin-x86.mk 22 $(gyp_shared_intermediate_dir)/resources/inspector/InspectorBackendCommands.js: $(LOCAL_PATH)/third_party/WebKit/Source/devtools/scripts/CodeGeneratorFrontend.py $(LOCAL_PATH)/third_party/WebKit/Source/devtools/protocol.json $(GYP_TARGET_DEPENDENCIES)
23 @echo "Gyp action: Generating Inspector protocol frontend sources from protocol.json ($@)"
24 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/devtools; mkdir -p $(gyp_shared_intermediate_dir)/resources/inspector; python scripts/CodeGeneratorFrontend.py protocol.json --output_js_dir "$(gyp_shared_intermediate_dir)/resources/inspector/"

Completed in 596 milliseconds

<<11121314151617181920>>