HomeSort by relevance Sort by last modified time
    Searched refs:response_dict (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/remoting/host/
token_validator_factory_impl_unittest.cc 106 base::DictionaryValue response_dict; local
107 response_dict.SetString("access_token", kSharedSecret);
108 response_dict.SetString("token_type", "shared_secret");
109 response_dict.SetString("scope", scope);
111 base::JSONWriter::Write(&response_dict, &response);
116 base::DictionaryValue response_dict; local
117 response_dict.SetString("error", error);
119 base::JSONWriter::Write(&response_dict, &response);
  /external/chromium_org/chrome/browser/extensions/api/gcd_private/
gcd_private_apitest.cc 93 base::DictionaryValue* response_dict; variable
94 ASSERT_TRUE(response->GetAsDictionary(&response_dict));
96 request->OnGCDAPIFlowComplete(*response_dict);
  /external/chromium_org/google_apis/gaia/
fake_gaia.cc 300 void FakeGaia::FormatJSONResponse(const base::DictionaryValue& response_dict,
303 base::JSONWriter::Write(&response_dict, &response_json);
444 base::DictionaryValue response_dict; local
445 response_dict.SetString("refresh_token",
447 response_dict.SetString("access_token",
449 response_dict.SetInteger("expires_in", 3600);
450 FormatJSONResponse(response_dict, http_response);
460 base::DictionaryValue response_dict; local
461 response_dict.SetString("access_token", token_info->token);
462 response_dict.SetInteger("expires_in", 3600)
490 base::DictionaryValue response_dict; local
515 base::DictionaryValue response_dict; local
    [all...]
gaia_oauth_client.cc 254 scoped_ptr<base::DictionaryValue> response_dict; local
261 response_dict.reset(
266 if (!response_dict.get()) {
286 response_dict->GetString("email", &email);
293 response_dict->GetString("id", &id);
299 delegate_->OnGetTokenInfoResponse(response_dict.Pass());
308 response_dict->GetString(kAccessTokenValue, &access_token);
309 response_dict->GetString(kRefreshTokenValue, &refresh_token);
310 response_dict->GetInteger(kExpiresInValue, &expires_in_seconds);
fake_gaia.h 122 // Formats a JSON response with the data in |response_dict|.
123 void FormatJSONResponse(const base::DictionaryValue& response_dict,
  /external/chromium_org/content/browser/devtools/
devtools_protocol.cc 263 base::DictionaryValue* response_dict) {
265 if (!response_dict->GetInteger(kIdParam, &id))
269 if (response_dict->GetDictionary(kErrorParam, &error_dict)) {
271 response_dict->GetInteger(kErrorCodeParam, &error_code);
273 response_dict->GetString(kErrorMessageParam, &error_message);
278 response_dict->GetDictionary(kResultParam, &result);
devtools_protocol.h 181 base::DictionaryValue* response_dict);
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
results.py 82 """Package the results of some/all tests as a complete response_dict.
93 response_dict = self._results[results_type]
95 response_dict[imagepairset.KEY__ROOT__HEADER] = {
112 response_dict[imagepairset.KEY__ROOT__IMAGEPAIRS]))),
120 return response_dict
server.py 459 response_dict = results_obj.get_packaged_results_of_type(
464 response_dict = {
474 self.send_json_dict(response_dict)
  /external/skia/gm/rebaseline_server/
results.py 82 """Package the results of some/all tests as a complete response_dict.
93 response_dict = self._results[results_type]
95 response_dict[imagepairset.KEY__ROOT__HEADER] = {
112 response_dict[imagepairset.KEY__ROOT__IMAGEPAIRS]))),
120 return response_dict
server.py 459 response_dict = results_obj.get_packaged_results_of_type(
464 response_dict = {
474 self.send_json_dict(response_dict)
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_url_fetcher.cc 203 scoped_ptr<base::DictionaryValue> response_dict = local
206 if (response_dict) {
209 response_dict.get(),
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_client.cc 557 scoped_ptr<base::DictionaryValue> response_dict; local
576 response_dict.reset(
583 if (!response_dict->GetString(kErrorTypeKey, &error_type_string)) {
594 if (response_dict->GetString(kMessageTypeForBuyerKey,
617 if (type != ACCEPT_LEGAL_DOCUMENTS && !response_dict) {
629 if (response_dict->GetString(kAuthResultKey, &auth_result)) {
642 FullWallet::CreateFullWallet(*response_dict));
655 WalletItems::CreateWalletItems(*response_dict));
667 response_dict->GetString(kInstrumentIdKey, &instrument_id);
669 response_dict->GetString(kShippingAddressIdKey
    [all...]
  /external/chromium_org/chrome/common/cloud_print/
cloud_print_helpers.cc 197 scoped_ptr<base::DictionaryValue> response_dict(
200 !response_dict->GetBoolean(kSuccessValue, succeeded))
202 return response_dict.Pass();
  /external/chromium_org/testing/gtest/scripts/
upload.py 203 response_dict = dict(x.split("=")
205 return response_dict["Auth"]
209 response_dict = dict(x.split("=", 1) for x in body.split("\n") if x)
211 e.headers, response_dict)
    [all...]
  /external/chromium_org/third_party/re2/lib/codereview/
codereview.py     [all...]
  /external/regex-re2/lib/codereview/
codereview.py     [all...]

Completed in 183 milliseconds