Searched refs:Put (Results 1 - 25 of 257) sorted by relevance

1234567891011

/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dmetadata_db_migration_util_unittest.cc83 batch.Put(kDatabaseVersionKey, "4");
84 batch.Put(kServiceMetadataKey, "service_metadata");
85 batch.Put(kFileMetadataKeyPrefix, "file_metadata");
86 batch.Put(kFileTrackerKeyPrefix, "file_tracker");
87 batch.Put(kAppRootIDByAppIDKeyPrefix, "app_root_id");
88 batch.Put(kActiveTrackerIDByFileIDKeyPrefix, "active_id_by_file");
89 batch.Put(kTrackerIDByFileIDKeyPrefix, "tracker_id_by_file");
90 batch.Put(kMultiTrackerByFileIDKeyPrefix, "multi_tracker_by_file");
91 batch.Put(kActiveTrackerIDByParentAndTitleKeyPrefix, "active_id_by_path");
92 batch.Put(kTrackerIDByParentAndTitleKeyPrefi
[all...]
H A Dleveldb_wrapper_unittest.cc48 db->Put(leveldb::WriteOptions(), keys[i], base::Int64ToString(i));
137 GetDB()->Put("a", "1");
138 GetDB()->Put("b", "2");
139 GetDB()->Put("c", "3");
170 GetDB()->Put("aa", "new0");
171 GetDB()->Put("c", "new1");
172 GetDB()->Put("bb", "new2"); // Overwrite an entry.
186 GetDB()->Put("aa", "new0");
187 GetDB()->Put("c", "new1");
188 GetDB()->Put("b
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dpacked-cache_test.cc43 cache.Put(0, 17);
46 cache.Put(19, 99);
51 cache.Put(1 << kHashbits, 22);
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dpacked-cache_test.cc43 cache.Put(0, 17);
46 cache.Put(19, 99);
51 cache.Put(1 << kHashbits, 22);
/external/chromium_org/sync/internal_api/public/
H A Dsync_encryption_handler.cc19 types.Put(PASSWORDS);
/external/chromium_org/third_party/leveldatabase/src/issues/
H A Dissue200_test.cc27 ASSERT_OK(db->Put(write_options, "1", "b"));
28 ASSERT_OK(db->Put(write_options, "2", "c"));
29 ASSERT_OK(db->Put(write_options, "3", "d"));
30 ASSERT_OK(db->Put(write_options, "4", "e"));
31 ASSERT_OK(db->Put(write_options, "5", "f"));
37 ASSERT_OK(db->Put(write_options, "25", "cd"));
/external/chromium_org/v8/src/
H A Dsnapshot-source-sink.cc48 Put(static_cast<int>(integer & 0xff), "IntPart1");
49 if (bytes > 1) Put(static_cast<int>((integer >> 8) & 0xff), "IntPart2");
50 if (bytes > 2) Put(static_cast<int>((integer >> 16) & 0xff), "IntPart3");
56 Put(data[i], description);
91 void DebugSnapshotSink::Put(byte b, const char* description) {
93 sink_->Put(b, description);
/external/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_write_batch.cc26 void LevelDBWriteBatch::Put(const base::StringPiece& key, function in class:content::LevelDBWriteBatch
28 write_batch_->Put(MakeSlice(key), MakeSlice(value));
H A Dleveldb_write_batch.h24 void Put(const base::StringPiece& key, const base::StringPiece& value);
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Dwrite_batch.h11 // batch.Put("key", "v1");
13 // batch.Put("key", "v2");
14 // batch.Put("key", "v3");
37 void Put(const Slice& key, const Slice& value);
49 virtual void Put(const Slice& key, const Slice& value) = 0;
/external/chromium_org/base/containers/
H A Dmru_cache_unittest.cc48 Cache::iterator inserted_item = cache.Put(kItem1Key, item1);
66 cache.Put(kItem2Key, item2);
108 cache.Put(kItem1Key, item1);
109 cache.Put(kItem2Key, item2);
121 cache.Put(kItem1Key, item1);
125 cache.Put(kItem2Key, item2);
156 cache.Put(kItem1Key, item1);
160 cache.Put(kItem2Key, item2);
164 cache.Put(kItem3Key, item3);
168 cache.Put(kItem4Ke
[all...]
/external/chromium_org/net/base/
H A Dexpiring_cache_unittest.cc47 cache.Put("entry1", "test1", now, now + kTTL);
56 cache.Put("entry2", "test2", now, now + kTTL);
77 cache.Put("entry1", "test1", now, now + kTTL);
104 cache.Put(name, "I'm valid!", t10, t10 + kTTL);
111 cache.Put(name, "I'm expired.", now, t10);
118 cache.Put(name, "I was never valid.", now, now);
166 cache.Put("test1", "test1", now, now + kTTL);
167 cache.Put("test2", "test2", now, now + kTTL);
168 cache.Put("expired", "expired", now, now);
178 cache.Put("test
[all...]
/external/chromium_org/components/sync_driver/
H A Dsync_prefs_unittest.cc120 preferred_types.Put(it.Get());
139 preferred_types.Put(it.Get());
142 expected_preferred_types.Put(syncer::AUTOFILL_PROFILE);
145 expected_preferred_types.Put(syncer::DICTIONARY);
146 expected_preferred_types.Put(syncer::PRIORITY_PREFERENCES);
147 expected_preferred_types.Put(syncer::SEARCH_ENGINES);
150 expected_preferred_types.Put(syncer::APP_LIST);
151 expected_preferred_types.Put(syncer::APP_NOTIFICATIONS);
152 expected_preferred_types.Put(syncer::APP_SETTINGS);
155 expected_preferred_types.Put(synce
[all...]
H A Dsync_prefs.cc128 model_set.Put(syncer::BOOKMARKS);
129 model_set.Put(syncer::PREFERENCES);
130 model_set.Put(syncer::PASSWORDS);
131 model_set.Put(syncer::AUTOFILL_PROFILE);
132 model_set.Put(syncer::AUTOFILL);
133 model_set.Put(syncer::THEMES);
134 model_set.Put(syncer::EXTENSIONS);
135 model_set.Put(syncer::NIGORI);
136 model_set.Put(syncer::SEARCH_ENGINES);
137 model_set.Put(synce
[all...]
/external/chromium_org/sync/syncable/
H A Dnigori_util.cc284 encrypted_types.Put(BOOKMARKS);
286 encrypted_types.Put(PREFERENCES);
288 encrypted_types.Put(AUTOFILL_PROFILE);
290 encrypted_types.Put(AUTOFILL);
292 encrypted_types.Put(THEMES);
294 encrypted_types.Put(TYPED_URLS);
296 encrypted_types.Put(EXTENSION_SETTINGS);
298 encrypted_types.Put(EXTENSIONS);
300 encrypted_types.Put(SEARCH_ENGINES);
302 encrypted_types.Put(SESSION
[all...]
H A Dnigori_util_unittest.cc18 encrypted_types.Put(BOOKMARKS);
19 encrypted_types.Put(PASSWORDS);
/external/chromium_org/chrome/browser/sync/
H A Dbackend_migrator_unittest.cc41 preferred_types_.Put(syncer::BOOKMARKS);
42 preferred_types_.Put(syncer::PREFERENCES);
43 preferred_types_.Put(syncer::AUTOFILL);
127 to_migrate.Put(syncer::PREFERENCES);
128 difference.Put(syncer::AUTOFILL);
129 difference.Put(syncer::BOOKMARKS);
158 to_migrate.Put(syncer::NIGORI);
159 difference.Put(syncer::AUTOFILL);
160 difference.Put(syncer::BOOKMARKS);
185 to_migrate.Put(synce
[all...]
/external/chromium_org/sync/tools/
H A Dsync_client.cc369 model_types.Put(BOOKMARKS);
370 model_types.Put(PREFERENCES);
371 model_types.Put(PASSWORDS);
372 model_types.Put(AUTOFILL);
373 model_types.Put(THEMES);
374 model_types.Put(TYPED_URLS);
375 model_types.Put(EXTENSIONS);
376 model_types.Put(NIGORI);
377 model_types.Put(SEARCH_ENGINES);
378 model_types.Put(SESSION
[all...]
/external/chromium_org/third_party/libaddressinput/src/cpp/test/
H A Dvalidating_storage_test.cc81 storage_.Put(kKey, new std::string(kValidatedData));
90 storage_.Put(kKey, new std::string(kEmptyData));
107 storage_.Put(kKey, new std::string(kValidatedData));
108 wrapped_storage_->Put(kKey, new std::string("garbage"));
117 storage_.Put(kKey, new std::string(kValidatedData));
118 wrapped_storage_->Put(kKey, new std::string(kStaleWrappedData));
H A Dfake_storage_test.cc73 storage_.Put("key", new std::string("value"));
82 storage_.Put("key", new std::string("bad-value"));
83 storage_.Put("key", new std::string("good-value"));
/external/chromium_org/third_party/leveldatabase/src/db/
H A Ddb_test.cc288 Status Put(const std::string& k, const std::string& v) { function in class:leveldb::DBTest
289 return db_->Put(WriteOptions(), k, v);
432 Put(small, "begin");
433 Put(large, "end");
515 ASSERT_OK(Put("foo", "v1"));
517 ASSERT_OK(Put("bar", "v2"));
518 ASSERT_OK(Put("foo", "v3"));
526 ASSERT_OK(db_->Put(WriteOptions(), "foo", "v1"));
528 ASSERT_OK(db_->Put(WriteOptions(), "foo", "v2"));
542 ASSERT_OK(Put("fo
1840 virtual Status Put(const WriteOptions& o, const Slice& k, const Slice& v) { function in class:leveldb::ModelDB
1875 virtual void Put(const Slice& key, const Slice& value) { function in class:leveldb::ModelDB::Handler
[all...]
/external/chromium_org/chrome/browser/android/thumbnail/
H A Dscoped_ptr_expiring_cache_unittest.cc48 cache.Put(i, MockObject::Create(i).Pass());
56 cache.Put(next_key, MockObject::Create(next_key).Pass());
91 cache.Put(i, MockObject::Create(i).Pass());
95 cache.Put(next_key, MockObject::Create(next_key).Pass());
112 cache.Put(next_key, MockObject::Create(next_key).Pass());
121 cache.Put(i, MockObject::Create(i).Pass());
130 cache.Put(i, MockObject::Create(i).Pass());
155 cache.Put(test_keys[i], MockObject::Create(test_keys[i]).Pass());
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
H A Dnull_storage.h36 virtual void Put(const std::string& key, std::string* data);
H A Dstorage.h33 // virtual void Put(const std::string& key, std::string* data) {
54 virtual void Put(const std::string& key, std::string* data) = 0;
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Dnull_storage.cc30 void NullStorage::Put(const std::string& key, std::string* data) { function in class:i18n::addressinput::NullStorage

Completed in 4810 milliseconds

1234567891011