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

  /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_invalidation_map.h 34 ModelTypeSet model_types, const std::string& payload);
model_type.h 225 // ModelTypeSet model_types;
236 // model_types.Put(model_type);
273 SYNC_EXPORT std::string ModelTypeSetToString(ModelTypeSet model_types);
276 SYNC_EXPORT base::ListValue* ModelTypeSetToValue(ModelTypeSet 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)));
model_type.cc 651 std::string ModelTypeSetToString(ModelTypeSet model_types) {
653 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) {
662 base::ListValue* ModelTypeSetToValue(ModelTypeSet model_types) {
664 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/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.h     [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/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 176 void TriggerMigrationDoneError(syncer::ModelTypeSet model_types);
sync_test.cc 699 void SyncTest::TriggerMigrationDoneError(syncer::ModelTypeSet model_types) {
703 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/chrome/browser/sync/
profile_sync_service_harness.cc 504 syncer::ModelTypeSet model_types = local
506 syncer::ObjectIdSet ids = ModelTypeSetToObjectIdSet(model_types);
    [all...]
  /external/chromium_org/sync/internal_api/
sync_manager_impl_unittest.cc     [all...]

Completed in 493 milliseconds