/external/chromium_org/sync/tools/ |
D | sync_client.cc | 368 ModelTypeSet model_types; in SyncClientMain() local 369 model_types.Put(BOOKMARKS); in SyncClientMain() 370 model_types.Put(PREFERENCES); in SyncClientMain() 371 model_types.Put(PASSWORDS); in SyncClientMain() 372 model_types.Put(AUTOFILL); in SyncClientMain() 373 model_types.Put(THEMES); in SyncClientMain() 374 model_types.Put(TYPED_URLS); in SyncClientMain() 375 model_types.Put(EXTENSIONS); in SyncClientMain() 376 model_types.Put(NIGORI); in SyncClientMain() 377 model_types.Put(SEARCH_ENGINES); in SyncClientMain() [all …]
|
D | invalidation_helper.cc | 22 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types) { in ModelTypeSetToObjectIdSet() argument 24 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) { in ModelTypeSetToObjectIdSet()
|
D | invalidation_helper.h | 17 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types);
|
/external/chromium_org/chrome/browser/sync/ |
D | profile_sync_service_android_unittest.cc | 65 syncer::ModelTypeSet model_types; in GetRegisteredDataTypes() local 69 model_types.Put(it->first); in GetRegisteredDataTypes() 71 return model_types; in GetRegisteredDataTypes() 82 syncer::ModelTypeSet model_types = GetRegisteredDataTypes(); in TEST_F() local 85 ProfileSyncServiceAndroid::ModelTypeSetToSelection(model_types); in TEST_F() 88 EXPECT_EQ(static_cast<int>(model_types.Size()), in TEST_F() 92 for (syncer::ModelTypeSet::Iterator it = model_types.First(); it.Good(); in TEST_F()
|
D | profile_sync_service_android.h | 214 static jlong ModelTypeSetToSelection(syncer::ModelTypeSet model_types);
|
/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 | 707 std::string ModelTypeSetToString(ModelTypeSet model_types) { in ModelTypeSetToString() argument 709 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) { in ModelTypeSetToString() 720 ModelTypeSet model_types; in ModelTypeSetFromString() local 736 model_types.Put(type); in ModelTypeSetFromString() 739 return model_types; in ModelTypeSetFromString() 742 base::ListValue* ModelTypeSetToValue(ModelTypeSet model_types) { in ModelTypeSetToValue() argument 744 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 | 9 void PrintTo(ModelTypeSet model_types, ::std::ostream* os) { in PrintTo() argument 10 *os << ModelTypeSetToString(model_types); in PrintTo() 25 ModelTypeSet model_types, in MatchAndExplain() argument 28 return model_types.Equals(expected_types_); in MatchAndExplain()
|
D | model_type.h | 279 SYNC_EXPORT std::string ModelTypeSetToString(ModelTypeSet model_types); 286 SYNC_EXPORT base::ListValue* ModelTypeSetToValue(ModelTypeSet model_types);
|
D | model_type_test_util.h | 16 void PrintTo(ModelTypeSet model_types, ::std::ostream* os);
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
D | p2p_invalidation_forwarder.cc | 32 syncer::ModelTypeSet model_types = in OnSyncCycleCompleted() local 34 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() 126 void TriggerMigration(syncer::ModelTypeSet model_types, in TriggerMigration() argument 142 TriggerNotification(model_types); in TriggerMigration()
|
D | sync_test.h | 229 void TriggerMigrationDoneError(syncer::ModelTypeSet model_types);
|
D | sync_test.cc | 930 void SyncTest::TriggerMigrationDoneError(syncer::ModelTypeSet model_types) { in TriggerMigrationDoneError() argument 934 for (syncer::ModelTypeSet::Iterator it = model_types.First(); in TriggerMigrationDoneError()
|
/external/chromium_org/chrome/browser/sync/glue/ |
D | invalidation_helper.cc | 22 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types) { in ModelTypeSetToObjectIdSet() argument 24 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) { in ModelTypeSetToObjectIdSet()
|
D | invalidation_helper.h | 17 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types);
|
/external/chromium_org/sync/engine/ |
D | sync_scheduler_unittest.cc | 302 ModelTypeSet model_types(THEMES); in TEST_F() local 311 scheduler()->ScheduleLocalNudge(model_types, FROM_HERE); in TEST_F() 318 model_types.Remove(THEMES); in TEST_F() 319 model_types.Put(TYPED_URLS); in TEST_F() 323 scheduler()->ScheduleLocalNudge(model_types, FROM_HERE); in TEST_F() 331 const ModelTypeSet model_types(THEMES); in TEST_F() local 343 model_types, in TEST_F() 344 TypesToRoutingInfo(model_types), in TEST_F() 359 const ModelTypeSet model_types(THEMES); in TEST_F() local 373 model_types, in TEST_F() [all …]
|