Home
last modified time | relevance | path

Searched refs:SetItem (Results 1 – 25 of 26) sorted by relevance

12

/external/chromium_org/content/common/dom_storage/
Ddom_storage_map_unittest.cc46 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()
Ddom_storage_map.h29 bool SetItem(const base::string16& key, const base::string16& value,
Ddom_storage_map.cc64 bool DOMStorageMap::SetItem( in SetItem() function in content::DOMStorageMap
/external/chromium_org/content/browser/dom_storage/
Ddom_storage_area_unittest.cc51 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 …]
Ddom_storage_context_impl_unittest.cc108 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()
Ddom_storage_area.cc131 bool DOMStorageArea::SetItem(const base::string16& key, in SetItem() function in content::DOMStorageArea
139 bool success = map_->SetItem(key, value, old_value); in SetItem()
Ddom_storage_area.h57 bool SetItem(const base::string16& key, const base::string16& value,
Ddom_storage_host.cc104 if (!area->SetItem(key, value, old_value)) in SetAreaItem()
/external/chromium_org/content/renderer/dom_storage/
Ddom_storage_cached_area.cc56 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()
Ddom_storage_cached_area_unittest.cc37 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()
Ddom_storage_proxy.h27 virtual void SetItem(int connection_id,
Dwebstoragearea_impl.cc65 if (!cached_area_->SetItem(connection_id_, key, value, page_url)) in setItem()
Ddom_storage_cached_area.h40 bool SetItem(int connection_id,
Ddom_storage_dispatcher.cc115 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/
DAntlr.Runtime.Tools.pas136 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)
DAntlr.Runtime.Collections.pas105 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/
Dmap_wrapper.h29 void SetItem(void* ptr);
/external/webrtc/src/system_wrappers/source/
Dmap_no_stl.h29 void SetItem(void* ptr);
Dmap.cc39 void MapItem::SetItem(void* ptr) in SetItem() function in webrtc::MapItem
Dmap_no_stl.cc44 void MapNoStlItem::SetItem(void* ptr) in SetItem() function in webrtc::MapNoStlItem
Dmap_unittest.cc223 compare_item->SetItem(ascend_item->GetItem()); in TEST_F()
/external/webrtc/src/system_wrappers/test/map/
Dmap.cc107 last_item->SetItem(reinterpret_cast<void*>(&swapped_item)); in main()
/external/lzma/CPP/7zip/Archive/7z/
D7zOut.cpp858 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()
D7zItem.h127 void SetItem(int index, bool defined, UInt64 value) in SetItem() function
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
DAntlr.Runtime.Tools.Tests.pas286 FIList.SetItem(Index, Value);
459 FIDictionary.SetItem(Key, Value);

12