/external/chromium_org/sync/tools/ |
D | sync_client.cc | 292 ModelTypeSet model_types; in SyncClientMain() local 293 model_types.Put(BOOKMARKS); in SyncClientMain() 294 model_types.Put(PREFERENCES); in SyncClientMain() 295 model_types.Put(PASSWORDS); in SyncClientMain() 296 model_types.Put(AUTOFILL); in SyncClientMain() 297 model_types.Put(THEMES); in SyncClientMain() 298 model_types.Put(TYPED_URLS); in SyncClientMain() 299 model_types.Put(EXTENSIONS); in SyncClientMain() 300 model_types.Put(NIGORI); in SyncClientMain() 301 model_types.Put(SEARCH_ENGINES); in SyncClientMain() [all …]
|
/external/chromium_org/sync/syncable/ |
D | model_type_unittest.cc | 41 const ModelTypeSet model_types(BOOKMARKS, APPS); in TEST_F() local 43 scoped_ptr<base::ListValue> value(ModelTypeSetToValue(model_types)); in TEST_F() 54 ModelTypeSet model_types; in TEST_F() local 55 scoped_ptr<base::ListValue> value(ModelTypeSetToValue(model_types)); in TEST_F() 56 EXPECT_TRUE(model_types.Equals(ModelTypeSetFromValue(*value))); in TEST_F() 59 model_types.Put(BOOKMARKS); in TEST_F() 60 model_types.Put(APPS); in TEST_F() 61 value.reset(ModelTypeSetToValue(model_types)); in TEST_F() 62 EXPECT_TRUE(model_types.Equals(ModelTypeSetFromValue(*value))); in TEST_F()
|
D | model_type.cc | 703 std::string ModelTypeSetToString(ModelTypeSet model_types) { in ModelTypeSetToString() argument 705 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) { in ModelTypeSetToString() 716 ModelTypeSet model_types; in ModelTypeSetFromString() local 732 model_types.Put(type); in ModelTypeSetFromString() 735 return model_types; in ModelTypeSetFromString() 738 base::ListValue* ModelTypeSetToValue(ModelTypeSet model_types) { in ModelTypeSetToValue() argument 740 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) { in ModelTypeSetToValue()
|
/external/chromium_org/sync/internal_api/public/base/ |
D | model_type_test_util.cc | 29 void PrintTo(ModelTypeSet model_types, ::std::ostream* os) { in PrintTo() argument 30 *os << ModelTypeSetToString(model_types); in PrintTo() 45 ModelTypeSet model_types, in MatchAndExplain() argument 48 return model_types.Equals(expected_types_); in MatchAndExplain()
|
D | model_type.h | 283 SYNC_EXPORT std::string ModelTypeSetToString(ModelTypeSet model_types); 290 SYNC_EXPORT base::ListValue* ModelTypeSetToValue(ModelTypeSet model_types);
|
D | model_type_test_util.h | 32 void PrintTo(ModelTypeSet model_types, ::std::ostream* os);
|
/external/chromium_org/sync/notifier/ |
D | invalidation_util.cc | 95 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types) { in ModelTypeSetToObjectIdSet() argument 97 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) { in ModelTypeSetToObjectIdSet() 109 ModelTypeSet model_types; in ObjectIdSetToModelTypeSet() local 116 model_types.Put(model_type); in ObjectIdSetToModelTypeSet() 118 return model_types; in ObjectIdSetToModelTypeSet()
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
D | p2p_invalidation_forwarder.cc | 31 syncer::ModelTypeSet model_types = in OnSyncCycleCompleted() local 33 syncer::ObjectIdSet ids = ModelTypeSetToObjectIdSet(model_types); in OnSyncCycleCompleted()
|
D | migration_test.cc | 48 MigrationList MakeList(syncer::ModelTypeSet model_types) { in MakeList() argument 49 return MigrationList(1, model_types); in MakeList() 212 void TriggerMigration(syncer::ModelTypeSet model_types, in TriggerMigration() argument 228 TriggerNotification(model_types); in TriggerMigration()
|
D | sync_test.h | 226 void TriggerMigrationDoneError(syncer::ModelTypeSet model_types);
|
D | sync_test.cc | 915 void SyncTest::TriggerMigrationDoneError(syncer::ModelTypeSet model_types) { in TriggerMigrationDoneError() argument 919 for (syncer::ModelTypeSet::Iterator it = model_types.First(); in TriggerMigrationDoneError()
|
/external/chromium_org/sync/engine/ |
D | sync_scheduler_unittest.cc | 282 ModelTypeSet model_types(BOOKMARKS); in TEST_F() local 291 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); in TEST_F() 298 model_types.Remove(BOOKMARKS); in TEST_F() 299 model_types.Put(AUTOFILL); in TEST_F() 303 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); in TEST_F() 311 const ModelTypeSet model_types(BOOKMARKS); in TEST_F() local 323 model_types, in TEST_F() 324 TypesToRoutingInfo(model_types), in TEST_F() 339 const ModelTypeSet model_types(BOOKMARKS); in TEST_F() local 353 model_types, in TEST_F() [all …]
|
/external/chromium_org/sync/internal_api/ |
D | sync_manager_impl_unittest.cc | 982 void TriggerOnIncomingNotificationForTest(ModelTypeSet model_types) { in TriggerOnIncomingNotificationForTest() argument 984 ObjectIdSet id_set = ModelTypeSetToObjectIdSet(model_types); in TriggerOnIncomingNotificationForTest()
|