HomeSort by relevance Sort by last modified time
    Searched refs:model_types (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/chrome/browser/sync/glue/
invalidation_helper.h 17 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types);
invalidation_helper.cc 22 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types) {
24 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) {
  /external/chromium_org/sync/tools/
invalidation_helper.h 17 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types);
invalidation_helper.cc 22 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types) {
24 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) {
sync_client.cc 368 ModelTypeSet model_types; local
369 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)
    [all...]
  /external/chromium_org/sync/internal_api/public/base/
model_type_test_util.cc 9 void PrintTo(ModelTypeSet model_types, ::std::ostream* os) {
10 *os << ModelTypeSetToString(model_types);
25 ModelTypeSet model_types,
28 return model_types.Equals(expected_types_);
model_type_test_util.h 16 void PrintTo(ModelTypeSet model_types, ::std::ostream* os);
model_type.h 230 // ModelTypeSet model_types;
241 // model_types.Put(model_type);
278 // Returns the comma-separated string representation of |model_types|.
279 SYNC_EXPORT std::string ModelTypeSetToString(ModelTypeSet model_types);
286 SYNC_EXPORT base::ListValue* ModelTypeSetToValue(ModelTypeSet model_types);
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_android_unittest.cc 65 syncer::ModelTypeSet model_types; local
69 model_types.Put(it->first);
71 return model_types;
82 syncer::ModelTypeSet model_types = GetRegisteredDataTypes(); local
85 ProfileSyncServiceAndroid::ModelTypeSetToSelection(model_types);
88 EXPECT_EQ(static_cast<int>(model_types.Size()),
92 for (syncer::ModelTypeSet::Iterator it = model_types.First(); it.Good();
profile_sync_service_android.h 214 static jlong ModelTypeSetToSelection(syncer::ModelTypeSet model_types);
  /external/chromium_org/chrome/browser/sync/test/integration/
p2p_invalidation_forwarder.cc 32 syncer::ModelTypeSet model_types = local
34 syncer::ObjectIdSet ids = ModelTypeSetToObjectIdSet(model_types);
migration_test.cc 48 MigrationList MakeList(syncer::ModelTypeSet model_types) {
49 return MigrationList(1, model_types);
126 void TriggerMigration(syncer::ModelTypeSet model_types,
142 TriggerNotification(model_types);
sync_test.h 229 void TriggerMigrationDoneError(syncer::ModelTypeSet model_types);
sync_test.cc     [all...]
  /external/chromium_org/sync/syncable/
model_type_unittest.cc 41 const ModelTypeSet model_types(BOOKMARKS, APPS);
43 scoped_ptr<base::ListValue> value(ModelTypeSetToValue(model_types));
54 ModelTypeSet model_types; local
55 scoped_ptr<base::ListValue> value(ModelTypeSetToValue(model_types));
56 EXPECT_TRUE(model_types.Equals(ModelTypeSetFromValue(*value)));
59 model_types.Put(BOOKMARKS);
60 model_types.Put(APPS);
61 value.reset(ModelTypeSetToValue(model_types));
62 EXPECT_TRUE(model_types.Equals(ModelTypeSetFromValue(*value)));
model_type.cc 707 std::string ModelTypeSetToString(ModelTypeSet model_types) {
709 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) {
720 ModelTypeSet model_types; local
736 model_types.Put(type);
739 return model_types;
742 base::ListValue* ModelTypeSetToValue(ModelTypeSet model_types) {
744 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) {
    [all...]
  /external/chromium_org/sync/engine/
sync_scheduler_unittest.cc 302 ModelTypeSet model_types(THEMES);
311 scheduler()->ScheduleLocalNudge(model_types, FROM_HERE);
318 model_types.Remove(THEMES);
319 model_types.Put(TYPED_URLS);
323 scheduler()->ScheduleLocalNudge(model_types, FROM_HERE);
331 const ModelTypeSet model_types(THEMES);
343 model_types,
344 TypesToRoutingInfo(model_types),
359 const ModelTypeSet model_types(THEMES);
373 model_types,
    [all...]

Completed in 390 milliseconds