/external/chromium_org/content/renderer/dom_storage/ |
dom_storage_proxy.h | 37 virtual void RemoveItem(int connection_id,
|
dom_storage_cached_area.cc | 79 void DOMStorageCachedArea::RemoveItem(int connection_id, 84 if (!map_->RemoveItem(key, &unused)) 89 proxy_->RemoveItem( 141 map_->RemoveItem(key.string(), &unused);
|
dom_storage_cached_area.h | 44 void RemoveItem(int connection_id,
|
webstoragearea_impl.cc | 71 void WebStorageAreaImpl::removeItem( 73 cached_area_->RemoveItem(connection_id_, key, page_url);
|
dom_storage_cached_area_unittest.cc | 55 virtual void RemoveItem(int connection_id, 186 cached_area->RemoveItem(kConnectionId, kKey, kPageUrl); 254 // RemoveItem with nothing to remove, expect just one call to load. 257 cached_area->RemoveItem(kConnectionId, kKey, kPageUrl); 264 // RemoveItem with something to remove, expect a call to load followed 270 cached_area->RemoveItem(kConnectionId, kKey, kPageUrl); 341 // RemoveItem 342 cached_area->RemoveItem(kConnectionId, kKey, kPageUrl); 349 cached_area->RemoveItem(kConnectionId, kKey, kPageUrl);
|
dom_storage_dispatcher.cc | 119 virtual void RemoveItem(int connection_id, const base::string16& key, 261 void DomStorageDispatcher::ProxyImpl::RemoveItem(
|
/external/chromium_org/content/common/dom_storage/ |
dom_storage_map.h | 31 bool RemoveItem(const base::string16& key, base::string16* old_value);
|
dom_storage_map_unittest.cc | 35 EXPECT_FALSE(map->RemoveItem(kKey, &old_value)); 52 EXPECT_TRUE(map->RemoveItem(kKey, &old_value)); 102 EXPECT_TRUE(map->RemoveItem(kKey, &old_value));
|
dom_storage_map.cc | 89 bool DOMStorageMap::RemoveItem(
|
/external/chromium_org/ui/app_list/ |
app_list_item_list.h | 61 scoped_ptr<AppListItemModel> RemoveItem(const std::string& id);
|
app_list_item_list.cc | 88 scoped_ptr<AppListItemModel> item = RemoveItem(id); 101 scoped_ptr<AppListItemModel> AppListItemList::RemoveItem(
|
app_list_item_list_unittest.cc | 169 TEST_F(AppListItemListTest, RemoveItem) { 185 item_list_.RemoveItem(item_1->id()); 192 scoped_ptr<AppListItemModel> not_found_item = item_list_.RemoveItem("Bogus");
|
/external/chromium_org/chrome/browser/ui/app_list/ |
app_list_syncable_service.h | 63 void RemoveItem(const std::string& id);
|
app_list_syncable_service.cc | 135 void AppListSyncableService::RemoveItem(const std::string& id) {
|
/external/chromium_org/content/browser/dom_storage/ |
dom_storage_area.h | 59 bool RemoveItem(const base::string16& key, base::string16* old_value);
|
dom_storage_area.cc | 147 bool DOMStorageArea::RemoveItem(const base::string16& key, 154 bool success = map_->RemoveItem(key, old_value);
|
dom_storage_host.cc | 144 if (!area->RemoveItem(key, old_value))
|
dom_storage_area_unittest.cc | 100 EXPECT_TRUE(area->RemoveItem(kKey, &old_value)); 121 EXPECT_FALSE(area->RemoveItem(kKey, &old_value));
|
dom_storage_namespace.cc | 333 area->RemoveItem(transaction.key, &old_value);
|
/external/chromium_org/content/browser/download/ |
download_manager_impl_unittest.cc | 225 void RemoveItem(int id); 288 void MockDownloadItemFactory::RemoveItem(int id) { 531 mock_download_item_factory_->RemoveItem(id);
|
/external/chromium/chrome/browser/task_manager/ |
task_manager.h | 375 void RemoveItem(TaskManager::Resource* resource);
|
/external/chromium_org/ui/app_list/views/ |
apps_grid_view.cc | 192 item_list->RemoveItem(source_item->id()); [all...] |