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

  /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)));
model_type.cc 677 std::string ModelTypeSetToString(ModelTypeSet model_types) {
679 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) {
688 base::ListValue* ModelTypeSetToValue(ModelTypeSet model_types) {
690 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) {
  /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/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));
model_type.h 115 std::string ModelTypeSetToString(const ModelTypeSet& model_types);
121 // failed to parse string, returns false and model_types is unspecified.
124 ModelTypeBitSet* model_types);
130 ListValue* ModelTypeBitSetToValue(const ModelTypeBitSet& model_types);
133 ListValue* ModelTypeSetToValue(const ModelTypeSet& model_types);
model_type_payload_map.h 30 const ModelTypeBitSet& model_types,
model_type.cc 230 std::string ModelTypeSetToString(const ModelTypeSet& model_types) {
232 for (ModelTypeSet::const_iterator iter = model_types.begin();
233 iter != model_types.end();) {
235 if (++iter != model_types.end())
272 ModelTypeBitSet* model_types) {
273 DCHECK(model_types);
278 *model_types = ModelTypeBitSet(model_type_bitset_string);
291 ListValue* ModelTypeBitSetToValue(const ModelTypeBitSet& model_types) {
294 if (model_types[i]) {
302 ListValue* ModelTypeSetToValue(const ModelTypeSet& model_types) {
    [all...]
  /external/chromium_org/sync/internal_api/public/base/
model_type_test_util.cc 22 void PrintTo(ModelTypeSet model_types, ::std::ostream* os) {
23 *os << ModelTypeSetToString(model_types);
38 ModelTypeSet model_types,
41 return model_types.Equals(expected_types_);
model_type_test_util.h 25 void PrintTo(ModelTypeSet model_types, ::std::ostream* os);
model_type.h 229 // ModelTypeSet model_types;
240 // model_types.Put(model_type);
277 SYNC_EXPORT std::string ModelTypeSetToString(ModelTypeSet model_types);
280 SYNC_EXPORT base::ListValue* ModelTypeSetToValue(ModelTypeSet model_types);
  /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/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.h     [all...]
syncapi.cc 2341 syncable::ModelTypeBitSet model_types; local
    [all...]
  /external/chromium_org/sync/engine/
sync_scheduler_unittest.cc 277 ModelTypeSet model_types(BOOKMARKS);
286 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
293 model_types.Remove(BOOKMARKS);
294 model_types.Put(AUTOFILL);
298 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
306 const ModelTypeSet model_types(BOOKMARKS);
318 model_types,
319 TypesToRoutingInfo(model_types),
334 const ModelTypeSet model_types(BOOKMARKS);
348 model_types,
438 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
631 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
migration_errors_test.cc 46 MigrationList MakeList(syncer::ModelTypeSet model_types) {
47 return MigrationList(1, model_types);
106 void TriggerMigration(syncer::ModelTypeSet model_types,
122 TriggerNotification(model_types);
sync_test.h 193 void TriggerMigrationDoneError(syncer::ModelTypeSet model_types);
profile_sync_service_harness.cc 400 syncer::ModelTypeSet model_types = local
402 syncer::ObjectIdSet ids = ModelTypeSetToObjectIdSet(model_types);
    [all...]
sync_test.cc 720 void SyncTest::TriggerMigrationDoneError(syncer::ModelTypeSet model_types) {
724 for (syncer::ModelTypeSet::Iterator it = model_types.First();
  /external/chromium/chrome/browser/resources/sync_internals/
chrome_sync.js 195 function onMigrationNeededForTypes(model_types) {
196 chrome.sync.onMigrationNeededForTypes.dispatch_(model_types);
  /external/chromium_org/sync/internal_api/
sync_manager_impl_unittest.cc     [all...]

Completed in 281 milliseconds