/external/chromium_org/content/common/dom_storage/ |
D | dom_storage_map_unittest.cc | 46 EXPECT_TRUE(map->SetItem(kKey, kValue, &old_nullable_value)); in TEST() 59 EXPECT_TRUE(map->SetItem(kKey, kValue, &old_nullable_value)); in TEST() 60 EXPECT_TRUE(map->SetItem(kKey2, kValue, &old_nullable_value)); in TEST() 63 EXPECT_TRUE(map->SetItem(kKey2, kValue2, &old_nullable_value)); in TEST() 100 EXPECT_TRUE(map->SetItem(kKey, kValue, &old_nullable_value)); in TEST() 101 EXPECT_FALSE(map->SetItem(kKey2, kValue, &old_nullable_value)); in TEST() 107 EXPECT_TRUE(map->SetItem(kKey2, kValue, &old_nullable_value)); in TEST() 119 EXPECT_TRUE(map->SetItem(kKey, kValue, &old_nullable_value)); in TEST() 120 EXPECT_FALSE(map->SetItem(kKey, base::string16(kValue + kValue), in TEST() 122 EXPECT_TRUE(map->SetItem(kKey, base::string16(), &old_nullable_value)); in TEST()
|
D | dom_storage_map.h | 29 bool SetItem(const base::string16& key, const base::string16& value,
|
D | dom_storage_map.cc | 64 bool DOMStorageMap::SetItem( in SetItem() function in content::DOMStorageMap
|
/external/chromium_org/content/browser/dom_storage/ |
D | dom_storage_area_unittest.cc | 51 EXPECT_TRUE(area->SetItem(kKey2, kValue2, &old_value)); in InjectedCommitSequencingTask() 87 EXPECT_TRUE(area->SetItem(kKey, kValue, &old_nullable_value)); in TEST_F() 88 EXPECT_TRUE(area->SetItem(kKey2, kValue2, &old_nullable_value)); in TEST_F() 105 EXPECT_TRUE(area->SetItem(kKey, kValue, &old_nullable_value)); in TEST_F() 121 EXPECT_FALSE(area->SetItem(kKey, kValue, &old_nullable_value)); in TEST_F() 152 EXPECT_TRUE(area->SetItem(kKey, kValue, &old_value)); in TEST_F() 181 EXPECT_TRUE(area->SetItem(kKey, kValue, &old_value)); in TEST_F() 227 EXPECT_TRUE(area->SetItem(kKey, kValue, &old_value)); in TEST_F() 232 EXPECT_TRUE(area->SetItem(kKey2, kValue2, &old_value)); in TEST_F() 262 EXPECT_TRUE(area->SetItem(kKey, kValue, &old_value)); in TEST_F() [all …]
|
D | dom_storage_context_impl_unittest.cc | 108 OpenStorageArea(kOrigin)->SetItem(kKey, kValue, &old_value)); in TEST_F() 139 OpenStorageArea(kOrigin)->SetItem(kKey, kValue, &old_value)); in TEST_F() 141 OpenStorageArea(kSessionOnlyOrigin)->SetItem(kKey, kValue, &old_value)); in TEST_F() 158 OpenStorageArea(kSessionOnlyOrigin)->SetItem(kKey, kValue, &old_value)); in TEST_F() 216 area->SetItem(kKey, kValue, &old_nullable_value); in TEST_F() 275 area1->SetItem(kKey, kValue, &old_value); in TEST_F() 297 area2->SetItem(kKey, kValue2, &old_value); in TEST_F() 328 target_ns_area->SetItem(kKey, kValue, &old_value); in TEST_F() 329 target_ns_area->SetItem(kKey2, kKey2Value, &old_value); in TEST_F()
|
D | dom_storage_area.cc | 131 bool DOMStorageArea::SetItem(const base::string16& key, in SetItem() function in content::DOMStorageArea 139 bool success = map_->SetItem(key, value, old_value); in SetItem()
|
D | dom_storage_area.h | 57 bool SetItem(const base::string16& key, const base::string16& value,
|
D | dom_storage_host.cc | 104 if (!area->SetItem(key, value, old_value)) in SetAreaItem()
|
/external/chromium_org/content/renderer/dom_storage/ |
D | dom_storage_cached_area.cc | 56 bool DOMStorageCachedArea::SetItem(int connection_id, in SetItem() function in content::DOMStorageCachedArea 67 if (!map_->SetItem(key, value, &unused)) in SetItem() 72 proxy_->SetItem( in SetItem() 127 map_->SetItem(iter->first, value.string(), &unused); in ApplyMutation() 150 map_->SetItem(key.string(), new_value.string(), &unused); in ApplyMutation()
|
D | dom_storage_cached_area_unittest.cc | 37 virtual void SetItem(int connection_id, in SetItem() function in content::__anonc42b0b8b0111::MockProxy 182 EXPECT_TRUE(cached_area->SetItem(kConnectionId, kKey, kValue, kPageUrl)); in TEST_F() 233 EXPECT_TRUE(cached_area->SetItem(kConnectionId, kKey, kValue, kPageUrl)); in TEST_F() 331 EXPECT_TRUE(cached_area->SetItem(kConnectionId, kKey, kValue, kPageUrl)); in TEST_F() 348 EXPECT_TRUE(cached_area->SetItem(kConnectionId, kKey, kValue, kPageUrl)); in TEST_F() 357 EXPECT_TRUE(cached_area->SetItem(kConnectionId, kKey, kValue, kPageUrl)); in TEST_F()
|
D | dom_storage_proxy.h | 27 virtual void SetItem(int connection_id,
|
D | webstoragearea_impl.cc | 65 if (!cached_area_->SetItem(connection_id_, key, value, page_url)) in setItem()
|
D | dom_storage_cached_area.h | 40 bool SetItem(int connection_id,
|
D | dom_storage_dispatcher.cc | 115 virtual void SetItem(int connection_id, const base::string16& key, 247 void DomStorageDispatcher::ProxyImpl::SetItem( in SetItem() function in content::DomStorageDispatcher::ProxyImpl
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
D | Antlr.Runtime.Tools.pas | 136 procedure SetItem(Index: Integer; const Value: T); 181 property Items[Index: Integer]: T read GetItem write SetItem; default; 190 procedure SetItem(const Key: TKey; const Value: TValue); 205 property Items[const Key: TKey]: TValue read GetItem write SetItem; default; 225 procedure SetItem(Index: Integer; const Value: T); 293 procedure SetItem(const Key: TKey; const Value: TValue); 527 procedure TList<T>.SetItem(Index: Integer; const Value: T); procedure 651 procedure TDictionary<TKey,TValue>.SetItem(const Key: TKey; const Value: TValue); procedure 864 SetItem(Key,Value)
|
D | Antlr.Runtime.Collections.pas | 105 procedure SetItem(const Key: TKey; const Value: TValue); procedure 121 property Items[const Key: TKey]: TValue read GetItem write SetItem; default; 179 SetItem(Key, Value) 244 procedure THashList<TKey, TValue>.SetItem(const Key: TKey; const Value: TValue); procedure
|
/external/webrtc/src/system_wrappers/interface/ |
D | map_wrapper.h | 29 void SetItem(void* ptr);
|
/external/webrtc/src/system_wrappers/source/ |
D | map_no_stl.h | 29 void SetItem(void* ptr);
|
D | map.cc | 39 void MapItem::SetItem(void* ptr) in SetItem() function in webrtc::MapItem
|
D | map_no_stl.cc | 44 void MapNoStlItem::SetItem(void* ptr) in SetItem() function in webrtc::MapNoStlItem
|
D | map_unittest.cc | 223 compare_item->SetItem(ascend_item->GetItem()); in TEST_F()
|
/external/webrtc/src/system_wrappers/test/map/ |
D | map.cc | 107 last_item->SetItem(reinterpret_cast<void*>(&swapped_item)); in main()
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zOut.cpp | 858 CTime.SetItem(index, file2.CTimeDefined, file2.CTime); in AddFile() 859 ATime.SetItem(index, file2.ATimeDefined, file2.ATime); in AddFile() 860 MTime.SetItem(index, file2.MTimeDefined, file2.MTime); in AddFile() 861 StartPos.SetItem(index, file2.StartPosDefined, file2.StartPos); in AddFile()
|
D | 7zItem.h | 127 void SetItem(int index, bool defined, UInt64 value) in SetItem() function
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
D | Antlr.Runtime.Tools.Tests.pas | 286 FIList.SetItem(Index, Value); 459 FIDictionary.SetItem(Key, Value);
|