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

  /external/chromium/chrome/browser/sync/syncable/
model_type_unittest.cc 43 ModelTypeBitSet model_types; local
44 model_types.set(syncable::BOOKMARKS);
45 model_types.set(syncable::APPS);
47 scoped_ptr<ListValue> value(ModelTypeBitSetToValue(model_types));
57 ModelTypeSet model_types; local
58 model_types.insert(syncable::BOOKMARKS);
59 model_types.insert(syncable::APPS);
61 scoped_ptr<ListValue> value(ModelTypeSetToValue(model_types));
  /external/chromium_org/sync/syncable/
model_type_unittest.cc 40 const ModelTypeSet model_types(BOOKMARKS, APPS);
42 scoped_ptr<base::ListValue> value(ModelTypeSetToValue(model_types));
53 ModelTypeSet model_types; local
54 scoped_ptr<base::ListValue> value(ModelTypeSetToValue(model_types));
55 EXPECT_TRUE(model_types.Equals(ModelTypeSetFromValue(*value)));
58 model_types.Put(BOOKMARKS);
59 model_types.Put(APPS);
60 value.reset(ModelTypeSetToValue(model_types));
61 EXPECT_TRUE(model_types.Equals(ModelTypeSetFromValue(*value)));
  /external/chromium_org/sync/notifier/
invalidation_util.cc 75 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types) {
77 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) {
89 ModelTypeSet model_types; local
96 model_types.Put(model_type);
98 return model_types;
  /external/chromium/chrome/browser/sync/engine/
syncer_thread2_unittest.cc 206 syncable::ModelTypeBitSet model_types; local
207 model_types[syncable::BOOKMARKS] = true;
213 syncer_thread()->ScheduleNudge(zero(), NUDGE_SOURCE_LOCAL, model_types, local
218 EXPECT_TRUE(CompareModelTypeBitSetToModelTypePayloadMap(model_types,
225 model_types[syncable::BOOKMARKS] = false;
226 model_types[syncable::AUTOFILL] = true;
230 syncer_thread()->ScheduleNudge(zero(), NUDGE_SOURCE_LOCAL, model_types, local
235 EXPECT_TRUE(CompareModelTypeBitSetToModelTypePayloadMap(model_types,
246 syncable::ModelTypeBitSet model_types; local
247 model_types[syncable::BOOKMARKS] = true
273 syncable::ModelTypeBitSet model_types; local
336 syncable::ModelTypeBitSet model_types; local
361 syncer_thread()->ScheduleNudge(zero(), NUDGE_SOURCE_LOCAL, model_types, local
    [all...]
syncapi_unittest.cc 1022 syncable::ModelTypeBitSet model_types; local
    [all...]
syncapi.cc 2341 syncable::ModelTypeBitSet model_types; local
    [all...]
  /external/chromium_org/sync/engine/
sync_scheduler_unittest.cc 263 ModelTypeSet model_types(BOOKMARKS);
272 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
279 model_types.Remove(BOOKMARKS);
280 model_types.Put(AUTOFILL);
284 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
292 const ModelTypeSet model_types(BOOKMARKS);
303 model_types,
304 TypesToRoutingInfo(model_types),
316 const ModelTypeSet model_types(BOOKMARKS);
327 model_types,
372 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
566 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
    [all...]
  /external/chromium_org/sync/tools/
sync_client.cc 290 ModelTypeSet model_types; local
291 model_types.Put(BOOKMARKS);
292 model_types.Put(PREFERENCES);
293 model_types.Put(PASSWORDS);
294 model_types.Put(AUTOFILL);
295 model_types.Put(THEMES);
296 model_types.Put(TYPED_URLS);
297 model_types.Put(EXTENSIONS);
298 model_types.Put(NIGORI);
299 model_types.Put(SEARCH_ENGINES)
    [all...]
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_harness.cc 504 syncer::ModelTypeSet model_types = local
506 syncer::ObjectIdSet ids = ModelTypeSetToObjectIdSet(model_types);
    [all...]

Completed in 205 milliseconds