/external/chromium_org/tools/deep_memory_profiler/ |
graph.py | 47 def _GenerateGraph(json_data, policy): 48 legends = list(json_data['policies'][policy]['legends']) 52 for snapshot in json_data['policies'][policy]['snapshots']:
|
/external/chromium_org/chrome/browser/web_resource/ |
json_asynchronous_unpacker.cc | 32 virtual void Start(const std::string& json_data) OVERRIDE { 41 this, thread_id, json_data)); 89 const std::string& json_data) { 94 host->Send(new ChromeUtilityMsg_UnpackWebResource(json_data));
|
json_asynchronous_unpacker.h | 40 virtual void Start(const std::string& json_data) = 0;
|
/external/chromium_org/chrome/browser/ui/app_list/search/common/ |
json_response_fetcher.cc | 75 std::string json_data; local 76 fetcher->GetResponseAsString(&json_data); 79 new SafeJsonParser(json_data,
|
/external/chromium_org/chrome/service/cloud_print/ |
cloud_print_connector.h | 65 DictionaryValue* json_data, 101 base::DictionaryValue* json_data, 110 DictionaryValue* json_data, 116 DictionaryValue* json_data, 122 DictionaryValue* json_data, 128 DictionaryValue* json_data, 152 void UpdateSettingsFromPrintersList(DictionaryValue* json_data);
|
printer_job_queue_handler.h | 66 void GetJobsFromQueue(const base::DictionaryValue* json_data, 87 void ConstructJobDetailsFromJson(const base::DictionaryValue* json_data,
|
cloud_print_wipeout.h | 37 base::DictionaryValue* json_data,
|
printer_job_handler.h | 132 base::DictionaryValue* json_data, 171 base::DictionaryValue* json_data, 185 base::DictionaryValue* json_data, 191 base::DictionaryValue* json_data, 207 base::DictionaryValue* json_data, 213 base::DictionaryValue* json_data,
|
cloud_print_auth.cc | 163 base::DictionaryValue* json_data, 175 if (!json_data->GetString(kOAuthCodeValue, &auth_code)) { 188 json_data->GetString(kXMPPJidValue, &robot_email_);
|
cloud_print_connector.cc | 183 DictionaryValue* json_data, 189 return (this->*next_response_handler_)(source, url, json_data, succeeded); 207 DictionaryValue* json_data, 213 UpdateSettingsFromPrintersList(json_data); 238 if (json_data->GetList(kPrinterListValue, &printer_list) && printer_list) { 288 DictionaryValue* json_data, 294 UpdateSettingsFromPrintersList(json_data); 302 DictionaryValue* json_data, 315 DictionaryValue* json_data, 323 if (json_data->GetList(kPrinterListValue, &printer_list)) [all...] |
cloud_print_wipeout.cc | 49 base::DictionaryValue* json_data,
|
/external/chromium/chrome/browser/extensions/ |
external_pref_extension_loader.h | 50 const std::string& json_data,
|
external_pref_extension_loader.cc | 100 const std::string& json_data, 104 JSONStringValueSerializer serializer(json_data);
|
/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
pnacl_resources.cc | 161 Json::Value json_data; local 162 if (!json_reader.parse(buf, json_data)) { 168 if (!json_data.isObject()) { 173 if (json_data.isMember("pnacl-llc-name")) { 174 Json::Value json_name = json_data["pnacl-llc-name"]; 181 if (json_data.isMember("pnacl-ld-name")) { 182 Json::Value json_name = json_data["pnacl-ld-name"];
|
/external/chromium/chrome/browser/chromeos/login/ |
user_image_downloader.h | 51 bool GetImageURL(const std::string& json_data, GURL* image_url) const;
|
/external/chromium/chrome/browser/web_resource/ |
web_resource_service.h | 40 void UpdateResourceCache(const std::string& json_data);
|
web_resource_service.cc | 118 const std::string& json_data) 120 json_data_(json_data), got_response_(false) { 283 void WebResourceService::UpdateResourceCache(const std::string& json_data) { 284 UnpackerClient* client = new UnpackerClient(this, json_data);
|
/external/chromium_org/chrome/browser/extensions/ |
external_pref_loader.h | 86 ExternalTestingLoader(const std::string& json_data,
|
/external/chromium_org/content/child/ |
site_isolation_policy_unittest.cc | 107 StringPiece json_data("\t\t\r\n { \"name\" : \"chrome\", "); 113 SiteIsolationPolicy::SniffForJSON(json_data)); 124 StringPiece json_data("\t\t\r\n { \"name\" : \"chrome\", "); 128 EXPECT_FALSE(SiteIsolationPolicy::SniffForJS(json_data));
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
jsonchecker_unittest.py | 56 def assert_no_error(self, json_data): 62 checker.check(json_data.split('\n')) 65 def assert_error(self, expected_line_number, expected_category, json_data): 76 checker.check(json_data.split('\n'))
|
/external/chromium_org/chrome/installer/util/ |
master_preferences.cc | 54 const std::string& json_data) { 55 JSONStringValueSerializer json(json_data); 97 std::string json_data; local 98 // Failure to read the file is ignored as |json_data| will be the empty string 102 !base::ReadFileToString(prefs_path, &json_data)) { 105 if (InitializeFromString(json_data)) 206 bool MasterPreferences::InitializeFromString(const std::string& json_data) { 207 if (!json_data.empty()) 208 master_dictionary_.reset(ParseDistributionPreferences(json_data));
|
master_preferences.h | 195 bool InitializeFromString(const std::string& json_data);
|
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/ |
config.py | 37 def LoadJson(self, json_data): 39 self.update(json.loads(json_data))
|
/external/chromium_org/chrome/browser/ui/webui/ |
profiler_ui.cc | 178 DictionaryValue json_data; local 181 &json_data); 184 web_ui()->CallJavascriptFunction("g_browserBridge.receivedData", json_data);
|
/external/chromium_org/build/android/pylib/instrumentation/ |
json_perf_parser.py | 11 def GetAverageRunInfo(json_data, name): 46 json_data: A list of dictonaries each representing a JSON object. 68 filtered_entries = filter(EntryFilter, json_data)
|