Home
last modified time | relevance | path

Searched refs:model_types (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/sync/tools/
Dsync_client.cc368 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 …]
Dinvalidation_helper.cc22 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types) { in ModelTypeSetToObjectIdSet() argument
24 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) { in ModelTypeSetToObjectIdSet()
Dinvalidation_helper.h17 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types);
/external/chromium_org/chrome/browser/sync/
Dprofile_sync_service_android_unittest.cc65 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()
Dprofile_sync_service_android.h214 static jlong ModelTypeSetToSelection(syncer::ModelTypeSet model_types);
/external/chromium_org/sync/syncable/
Dmodel_type_unittest.cc41 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()
Dmodel_type.cc707 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/
Dmodel_type_test_util.cc9 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()
Dmodel_type.h279 SYNC_EXPORT std::string ModelTypeSetToString(ModelTypeSet model_types);
286 SYNC_EXPORT base::ListValue* ModelTypeSetToValue(ModelTypeSet model_types);
Dmodel_type_test_util.h16 void PrintTo(ModelTypeSet model_types, ::std::ostream* os);
/external/chromium_org/chrome/browser/sync/test/integration/
Dp2p_invalidation_forwarder.cc32 syncer::ModelTypeSet model_types = in OnSyncCycleCompleted() local
34 syncer::ObjectIdSet ids = ModelTypeSetToObjectIdSet(model_types); in OnSyncCycleCompleted()
Dmigration_test.cc48 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()
Dsync_test.h229 void TriggerMigrationDoneError(syncer::ModelTypeSet model_types);
Dsync_test.cc930 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/
Dinvalidation_helper.cc22 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types) { in ModelTypeSetToObjectIdSet() argument
24 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) { in ModelTypeSetToObjectIdSet()
Dinvalidation_helper.h17 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types);
/external/chromium_org/sync/engine/
Dsync_scheduler_unittest.cc302 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 …]