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

  /external/chromium_org/sync/tools/
sync_client.cc 292 ModelTypeSet model_types; local
293 model_types.Put(BOOKMARKS);
294 model_types.Put(PREFERENCES);
295 model_types.Put(PASSWORDS);
296 model_types.Put(AUTOFILL);
297 model_types.Put(THEMES);
298 model_types.Put(TYPED_URLS);
299 model_types.Put(EXTENSIONS);
300 model_types.Put(NIGORI);
301 model_types.Put(SEARCH_ENGINES)
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
p2p_invalidation_forwarder.cc 31 syncer::ModelTypeSet model_types = local
33 syncer::ObjectIdSet ids = ModelTypeSetToObjectIdSet(model_types);
migration_test.cc 48 MigrationList MakeList(syncer::ModelTypeSet model_types) {
49 return MigrationList(1, model_types);
212 void TriggerMigration(syncer::ModelTypeSet model_types,
228 TriggerNotification(model_types);
sync_test.h 226 void TriggerMigrationDoneError(syncer::ModelTypeSet model_types);
sync_test.cc     [all...]
  /external/chromium_org/sync/internal_api/public/base/
model_type_test_util.cc 29 void PrintTo(ModelTypeSet model_types, ::std::ostream* os) {
30 *os << ModelTypeSetToString(model_types);
45 ModelTypeSet model_types,
48 return model_types.Equals(expected_types_);
model_type_test_util.h 32 void PrintTo(ModelTypeSet model_types, ::std::ostream* os);
model_type.h 234 // ModelTypeSet model_types;
245 // model_types.Put(model_type);
282 // Returns the comma-separated string representation of |model_types|.
283 SYNC_EXPORT std::string ModelTypeSetToString(ModelTypeSet model_types);
290 SYNC_EXPORT base::ListValue* ModelTypeSetToValue(ModelTypeSet model_types);
  /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 703 std::string ModelTypeSetToString(ModelTypeSet model_types) {
705 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) {
716 ModelTypeSet model_types; local
732 model_types.Put(type);
735 return model_types;
738 base::ListValue* ModelTypeSetToValue(ModelTypeSet model_types) {
740 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) {
    [all...]
  /external/chromium_org/sync/notifier/
invalidation_util.cc 95 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types) {
97 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) {
109 ModelTypeSet model_types; local
116 model_types.Put(model_type);
118 return model_types;
  /external/chromium_org/sync/engine/
sync_scheduler_unittest.cc 282 ModelTypeSet model_types(BOOKMARKS);
291 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
298 model_types.Remove(BOOKMARKS);
299 model_types.Put(AUTOFILL);
303 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
311 const ModelTypeSet model_types(BOOKMARKS);
323 model_types,
324 TypesToRoutingInfo(model_types),
339 const ModelTypeSet model_types(BOOKMARKS);
353 model_types,
443 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
638 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
    [all...]
  /external/chromium_org/sync/internal_api/
sync_manager_impl_unittest.cc     [all...]

Completed in 935 milliseconds