HomeSort by relevance Sort by last modified time
    Searched refs:specifics (Results 101 - 125 of 168) sorted by null

1 2 3 45 6 7

  /external/chromium/chrome/browser/sync/engine/
syncapi_unittest.cc 141 sync_pb::EntitySpecifics specifics; local
142 syncable::AddDefaultExtensionValue(model_type, &specifics);
158 entry.Put(syncable::SERVER_SPECIFICS, specifics);
162 entry.Put(syncable::SPECIFICS, specifics);
502 browser_sync::EntitySpecificsToValue(record.specifics));
504 *node_value, "specifics");
532 child_specifics = node.GetEntry()->Get(syncable::SPECIFICS);
541 record.specifics = child_specifics;
553 record.specifics = child_specifics
    [all...]
  /external/chromium_org/sync/internal_api/
write_node.cc 32 using syncable::SPECIFICS;
48 // specifics are already encrypted, we want to ensure we continue encrypting.
50 entry_->Get(SPECIFICS).has_encrypted();
55 // into the specifics. All strings compared are server legal strings.
66 entry_->Get(syncable::SPECIFICS).has_encrypted()) {
67 // Encrypted bookmarks only have their title in the unencrypted specifics.
71 // specifics) store their title in NON_UNIQUE_NAME. Non-legacy bookmarks
72 // store their title in specifics as well as NON_UNIQUE_NAME.
87 // For bookmarks, we also set the title field in the specifics.
90 sync_pb::EntitySpecifics specifics = GetEntitySpecifics() local
    [all...]
  /external/chromium_org/sync/syncable/
mutable_entry.cc 40 // Normally the SPECIFICS setting code is wrapped in logic to deal with
44 sync_pb::EntitySpecifics specifics; local
45 AddDefaultFieldValue(model_type, &specifics);
46 kernel->put(SPECIFICS, specifics);
directory_backing_store_unittest.cc 637 "server_bookmark_favicon blob, specifics blob, "
2566 sync_pb::EntitySpecifics specifics; local
    [all...]
syncable_unittest.cc 70 sync_pb::EntitySpecifics specifics; local
71 specifics.mutable_bookmark()->set_url("http://demo/");
72 specifics.mutable_bookmark()->set_favicon(bytes, bytes_length);
73 e->Put(SPECIFICS, specifics);
81 ASSERT_TRUE(e->Get(SPECIFICS).has_bookmark());
82 ASSERT_EQ("http://demo/", e->Get(SPECIFICS).bookmark().url());
84 e->Get(SPECIFICS).bookmark().favicon());
583 e.Put(SPECIFICS, specs);
775 item1.Put(SPECIFICS, bookmark_specifics)
1265 sync_pb::EntitySpecifics specifics; local
1836 sync_pb::EntitySpecifics specifics; local
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
syncable_unittest.cc 69 sync_pb::EntitySpecifics specifics; local
70 specifics.MutableExtension(sync_pb::bookmark)->set_url("http://demo/");
71 specifics.MutableExtension(sync_pb::bookmark)->set_favicon(bytes,
73 e->Put(SPECIFICS, specifics);
81 ASSERT_TRUE(e->Get(SPECIFICS).HasExtension(sync_pb::bookmark));
83 e->Get(SPECIFICS).GetExtension(sync_pb::bookmark).url());
85 e->Get(SPECIFICS).GetExtension(sync_pb::bookmark).favicon());
431 e.Put(SPECIFICS, specs);
537 item1.Put(SPECIFICS, bookmark_specs)
1099 sync_pb::EntitySpecifics specifics; local
1300 sync_pb::EntitySpecifics specifics; local
    [all...]
directory_backing_store.cc 724 sync_pb::EntitySpecifics specifics; local
725 if (!specifics.ParseFromArray(data, size))
727 return syncable::GetModelTypeFromSpecifics(specifics);
732 sync_pb::EntitySpecifics specifics; local
733 syncable::AddDefaultExtensionValue(model_type, &specifics);
734 return specifics.SerializeAsString();
863 // protobuf blob SPECIFICS
870 if (!AddColumn(&g_metas_columns[SPECIFICS]))
878 "specifics",
895 "UPDATE metas SET specifics = NULL, server_specifics = NULL WHERE
    [all...]
  /external/chromium/chrome/browser/sync/glue/
autofill_model_associator.h 100 const sync_pb::AutofillProfileSpecifics& specifics);
autofill_profile_model_associator.h 101 const sync_pb::AutofillProfileSpecifics& specifics);
autofill_change_processor.cc 213 DCHECK(changes[i].specifics.HasExtension(sync_pb::autofill))
214 << "Autofill specifics data not present on delete!";
216 changes[i].specifics.GetExtension(sync_pb::autofill);
223 NOTREACHED() << "Autofill specifics has no data!";
248 NOTREACHED() << "Autofill specifics has no data!";
typed_url_change_processor.cc 208 DCHECK(changes[i].specifics.HasExtension(sync_pb::typed_url)) <<
209 "Typed URL delete change does not have necessary specifics.";
210 GURL url(changes[i].specifics.GetExtension(sync_pb::typed_url).url());
password_change_processor.cc 147 DCHECK(changes[i].specifics.HasExtension(sync_pb::password))
148 << "Password specifics data not present on delete!";
session_model_associator.h 108 // the sync node with new specifics built from the tab.
139 bool AssociateForeignSpecifics(const sync_pb::SessionSpecifics& specifics,
334 // Used to populate a session window from the session specifics window
343 // Used to populate a session tab from the session specifics tab provided.
348 // Used to populate a session tab from the session specifics tab provided.
353 // Populates the navigation portion of the session specifics.
365 // Populate a session specifics header from a list of SessionWindows
370 // Populates the window portion of the session specifics.
384 // Populates the tab portion of the session specifics.
  /external/chromium_org/chrome/browser/sync/glue/
generic_change_processor.cc 43 // Use the specifics of non-password datatypes directly (encryption has
93 it->id, it->specifics, base::Time())));
98 // Need to load specifics from node.
450 const sync_pb::EntitySpecifics& specifics = local
451 sync_node.GetEntry()->Get(syncer::syncable::SPECIFICS);
452 CHECK(specifics.has_encrypted());
453 const bool can_decrypt = crypto->CanDecrypt(specifics.encrypted());
password_change_processor.cc 189 DCHECK(it->specifics.has_password())
190 << "Password specifics data not present on delete!";
  /external/chromium_org/chrome/browser/webdata/
autofill_profile_syncable_service.h 132 // |specifics|.
134 const sync_pb::AutofillProfileSpecifics& specifics,
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
TestMenu.java 93 public int addIntentOptions(int groupId, int itemId, int order, ComponentName caller, Intent[] specifics,
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
MenuLoaderTest.java 106 ComponentName caller, Intent[] specifics, Intent intent,
  /external/chromium_org/sync/engine/
process_updates_command.cc 307 // has changed are the specifics, store the original decryptable specifics,
330 update.has_specifics() && update.specifics().has_encrypted() &&
331 !cryptographer->CanDecrypt(update.specifics().encrypted())) {
334 // We only store the old specifics if they were decryptable and applied and
347 // We have a BASE_SERVER_SPECIFICS, but a subsequent non-specifics-only
348 // change arrived. As a result, we can't use the specifics alone to detect
  /external/chromium/net/tools/testserver/
chromiumsync_test.py 164 specifics = chromiumsync.GetDefaultEntitySpecifics(sync_type)
171 entry.specifics.CopyFrom(specifics)
219 specifics = chromiumsync.GetDefaultEntitySpecifics(sync_type)
240 proto.specifics.CopyFrom(specifics)
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_bookmark_unittest.cc 97 sync_pb::BookmarkSpecifics specifics(node.GetBookmarkSpecifics());
98 specifics.set_url(url);
99 node.SetBookmarkSpecifics(specifics);
186 sync_pb::BookmarkSpecifics specifics = node.GetBookmarkSpecifics(); local
187 specifics.set_creation_time_us(creation_time_us);
188 node.SetBookmarkSpecifics(specifics);
329 sync_pb::BookmarkSpecifics specifics; local
330 specifics.set_url("http://www.google.com/search?q=" + title);
331 specifics.set_title(title);
337 node.SetBookmarkSpecifics(specifics);
    [all...]
profile_sync_service_preference_unittest.cc 225 const sync_pb::PreferenceSpecifics& specifics(
228 return base::JSONReader::Read(specifics.value());
315 const sync_pb::PreferenceSpecifics& specifics(sync_data.GetSpecifics().
317 EXPECT_EQ(std::string(prefs::kHomePage), specifics.name());
319 scoped_ptr<Value> value(base::JSONReader::Read(specifics.value()));
  /external/chromium_org/sync/protocol/
proto_value_conversions.cc 124 if (specifics.has_##field()) { \
125 value->Set(#field, fn(specifics.field())); \
511 const sync_pb::PriorityPreferenceSpecifics& specifics) {
588 const sync_pb::EntitySpecifics& specifics) {
646 SET(specifics, EntitySpecificsToValue);
  /external/chromium/chrome/browser/sync/
js_sync_manager_observer_unittest.cc 241 changes[i].specifics = node.GetEntry()->Get(syncable::SPECIFICS);
  /external/chromium_org/chrome/browser/history/
typed_url_syncable_service_unittest.cc 140 sync_pb::TypedUrlSpecifics& specifics) {
141 return ((row.url().spec().compare(specifics.url()) == 0) &&
142 (UTF16ToUTF8(row.title()).compare(specifics.title()) == 0) &&
143 (row.hidden() == specifics.hidden()));
311 // Get typed url specifics.
368 // Note that the specifics record visits in chronological order, and the
450 // Note that the specifics record visits in chronological order, and the
608 // Note that the specifics record visits in chronological order, and the

Completed in 1271 milliseconds

1 2 3 45 6 7