Home
last modified time | relevance | path

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

/external/chromium_org/sync/tools/
Dsync_client.cc292 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/
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.cc703 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/
Dmodel_type_test_util.cc29 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()
Dmodel_type.h283 SYNC_EXPORT std::string ModelTypeSetToString(ModelTypeSet model_types);
290 SYNC_EXPORT base::ListValue* ModelTypeSetToValue(ModelTypeSet model_types);
Dmodel_type_test_util.h32 void PrintTo(ModelTypeSet model_types, ::std::ostream* os);
/external/chromium_org/sync/notifier/
Dinvalidation_util.cc95 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/
Dp2p_invalidation_forwarder.cc31 syncer::ModelTypeSet model_types = in OnSyncCycleCompleted() local
33 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()
212 void TriggerMigration(syncer::ModelTypeSet model_types, in TriggerMigration() argument
228 TriggerNotification(model_types); in TriggerMigration()
Dsync_test.h226 void TriggerMigrationDoneError(syncer::ModelTypeSet model_types);
Dsync_test.cc915 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/
Dsync_scheduler_unittest.cc282 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/
Dsync_manager_impl_unittest.cc982 void TriggerOnIncomingNotificationForTest(ModelTypeSet model_types) { in TriggerOnIncomingNotificationForTest() argument
984 ObjectIdSet id_set = ModelTypeSetToObjectIdSet(model_types); in TriggerOnIncomingNotificationForTest()