HomeSort by relevance Sort by last modified time
    Searched defs:kKey (Results 1 - 19 of 19) sorted by null

  /external/chromium/chrome/browser/prefs/
scoped_user_pref_update_unittest.cc 27 static const char kKey[];
36 const char ScopedUserPrefUpdateTest::kKey[] = "key";
42 expected_dictionary.SetString(kKey, kValue);
49 value->SetString(kKey, kValue);
  /external/chromium_org/base/prefs/
scoped_user_pref_update_unittest.cc 29 static const char kKey[];
38 const char ScopedUserPrefUpdateTest::kKey[] = "key";
44 expected_dictionary.SetString(kKey, kValue);
51 value->SetString(kKey, kValue);
  /external/chromium_org/content/common/dom_storage/
dom_storage_map_unittest.cc 12 const base::string16 kKey(ASCIIToUTF16("key"));
16 (kKey.size() + kValue.size()) * sizeof(char16);
34 EXPECT_TRUE(map->GetItem(kKey).is_null());
35 EXPECT_FALSE(map->RemoveItem(kKey, &old_value));
44 EXPECT_TRUE(map->SetItem(kKey, kValue, &old_nullable_value));
47 EXPECT_EQ(kKey, map->Key(0).string());
49 EXPECT_EQ(kValue, map->GetItem(kKey).string());
52 EXPECT_TRUE(map->RemoveItem(kKey, &old_value));
57 EXPECT_TRUE(map->SetItem(kKey, kValue, &old_nullable_value));
65 EXPECT_EQ(kKey, map->Key(0).string())
    [all...]
  /external/chromium_org/chrome/browser/download/
download_status_updater.cc 30 return item->GetUserData(kKey) != NULL;
34 item->RemoveUserData(kKey);
38 item->SetUserData(kKey, this);
42 static const char kKey[];
46 const char WasInProgressData::kKey[] =
download_history.cc 61 base::SupportsUserData::Data* data = item->GetUserData(kKey);
68 item->SetUserData(kKey, this);
90 static const char kKey[];
98 const char DownloadHistoryData::kKey[] =
download_item_model.cc 70 static const char kKey[];
86 const char DownloadItemModelData::kKey[] = "DownloadItemModelData key";
91 return static_cast<const DownloadItemModelData*>(download->GetUserData(kKey));
98 static_cast<DownloadItemModelData*>(download->GetUserData(kKey));
101 download->SetUserData(kKey, data);
  /external/chromium_org/sql/
meta_table_unittest.cc 130 const char kKey[] = "String Key";
140 EXPECT_FALSE(meta_table.GetValue(kKey, &value));
142 EXPECT_TRUE(meta_table.SetValue(kKey, kFirstValue));
143 EXPECT_TRUE(meta_table.GetValue(kKey, &value));
153 EXPECT_TRUE(meta_table.GetValue(kKey, &value));
156 EXPECT_TRUE(meta_table.SetValue(kKey, kSecondValue));
165 EXPECT_TRUE(meta_table.GetValue(kKey, &value));
171 const char kKey[] = "Int Key";
181 EXPECT_FALSE(meta_table.GetValue(kKey, &value));
183 EXPECT_TRUE(meta_table.SetValue(kKey, kFirstValue))
    [all...]
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/test/
retriever_test.cc 38 const char kKey[] = "data/CA/AB--fr";
78 retriever_.Retrieve(kKey, *callback);
81 EXPECT_EQ(kKey, key_);
88 retriever_.Retrieve(kKey, *callback1);
91 retriever_.Retrieve(kKey, *callback2);
94 EXPECT_EQ(kKey, key_);
129 bad_retriever.Retrieve(kKey, *callback);
132 EXPECT_EQ(kKey, key_);
fake_downloader_test.cc 106 static const std::string kKey = "data";
108 std::string(FakeDownloader::kFakeDataUrl) + kKey;
114 EXPECT_TRUE(DataIsValid(data_, kKey));
  /external/chromium_org/components/nacl/loader/
nacl_validation_query_unittest.cc 18 const char kKey[] = "bogus key for HMAC...";
104 query1.reset(new TestQuery(kKey, kVersion));
105 query2.reset(new TestQuery(kKey, kVersion));
272 query2.reset(new TestQuery(kKey, kVersionAlt));
  /external/chromium_org/chrome/browser/extensions/api/downloads/
downloads_api.h 80 static const char kKey[];
downloads_api.cc 580 base::SupportsUserData::Data* data = download_item->GetUserData(kKey);
586 download_item->RemoveUserData(kKey);
600 download_item->SetUserData(kKey, this);
764 static const char kKey[];
834 const char ExtensionDownloadsEventRouterData::kKey[] =
    [all...]
  /external/chromium_org/content/browser/dom_storage/
dom_storage_area_unittest.cc 28 kKey(ASCIIToUTF16("key")),
35 const base::string16 kKey;
61 const base::string16 kKey(ASCIIToUTF16("key"));
66 EXPECT_EQ(kValue, values[kKey].string());
86 EXPECT_TRUE(area->SetItem(kKey, kValue, &old_nullable_value));
95 EXPECT_EQ(area->GetItem(kKey).string(), copy->GetItem(kKey).string());
100 EXPECT_TRUE(area->RemoveItem(kKey, &old_value));
104 EXPECT_TRUE(area->SetItem(kKey, kValue, &old_nullable_value));
119 EXPECT_TRUE(area->GetItem(kKey).is_null())
    [all...]
dom_storage_context_impl_unittest.cc 29 kKey(ASCIIToUTF16("key")),
36 const base::string16 kKey;
107 OpenStorageArea(kOrigin)->SetItem(kKey, kValue, &old_value));
138 OpenStorageArea(kOrigin)->SetItem(kKey, kValue, &old_value));
140 OpenStorageArea(kSessionOnlyOrigin)->SetItem(kKey, kValue, &old_value));
157 OpenStorageArea(kSessionOnlyOrigin)->SetItem(kKey, kValue, &old_value));
212 const base::string16 kKey(ASCIIToUTF16("foo"));
215 area->SetItem(kKey, kValue, &old_nullable_value);
233 read_value = area->GetItem(kKey);
256 read_value = area->GetItem(kKey);
    [all...]
  /external/chromium_org/content/renderer/dom_storage/
dom_storage_cached_area_unittest.cc 123 kKey(ASCIIToUTF16("key")),
130 const base::string16 kKey;
172 cached_area->ApplyMutation(base::NullableString16(kKey, false),
182 EXPECT_TRUE(cached_area->SetItem(kConnectionId, kKey, kValue, kPageUrl));
184 EXPECT_EQ(kKey, cached_area->GetKey(kConnectionId, 0).string());
185 EXPECT_EQ(kValue, cached_area->GetItem(kConnectionId, kKey).string());
186 cached_area->RemoveItem(kConnectionId, kKey, kPageUrl);
218 EXPECT_TRUE(cached_area->GetItem(kConnectionId, kKey).is_null());
233 EXPECT_TRUE(cached_area->SetItem(kConnectionId, kKey, kValue, kPageUrl));
239 EXPECT_EQ(kKey, mock_proxy_->observed_key_)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_manager_impl_unittest.cc 589 const std::string kKey = "key";
591 property_list.push_back(InputMethodProperty(kKey, "label", false, false));
594 manager_->ActivateInputMethodProperty(kKey);
595 EXPECT_EQ(kKey, mock_engine_handler_->last_activated_property());
599 EXPECT_EQ(kKey, mock_engine_handler_->last_activated_property());
    [all...]
  /external/chromium_org/content/renderer/
v8_value_converter_impl_unittest.cc 667 const char kKey[] = "key";
674 leaf->Set(v8::String::NewFromUtf8(isolate_, kKey), new_object);
689 ASSERT_TRUE(current_as_object->Get(kKey, &current)) << i;
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_view_views.cc 68 static const char kKey[];
86 const char OmniboxState::kKey[] = "OmniboxState";
416 tab->SetUserData(OmniboxState::kKey, new OmniboxState(
424 web_contents->GetUserData(&OmniboxState::kKey));
    [all...]
  /external/chromium_org/extensions/common/
manifest_constants.cc 61 const char kKey[] = "key";

Completed in 970 milliseconds