HomeSort by relevance Sort by last modified time
    Searched defs:changes (Results 26 - 50 of 214) sorted by null

12 3 4 5 6 7 8 9

  /external/chromium_org/chrome/browser/notifications/sync_notifier/
chrome_notifier_service_unittest.cc 69 // Store a copy of all the changes passed in so we can examine them later.
100 // Track the changes received in ProcessSyncChanges.
244 // Process sync changes when there is no local data.
257 SyncChangeList changes; local
258 changes.push_back(CreateSyncChange(
261 changes.push_back(CreateSyncChange(
264 changes.push_back(CreateSyncChange(
268 notifier.ProcessSyncChanges(FROM_HERE, changes);
275 // Process sync changes when there is local data.
298 SyncChangeList changes; local
348 SyncChangeList changes; local
601 SyncChangeList changes; local
663 SyncChangeList changes; local
    [all...]
synced_notification_app_info_service_unittest.cc 49 // Store a copy of all the changes passed in so we can examine them later.
81 // Track the changes received in ProcessSyncChanges.
242 // Process sync changes when there is no local data.
249 SyncChangeList changes; local
250 changes.push_back(CreateSyncChange(SyncChange::ACTION_ADD,
257 // Process the changes we built.
258 app_info_service.ProcessSyncChanges(FROM_HERE, changes);
271 // Process sync changes when there is local data.
280 SyncChangeList changes; local
282 changes.push_back(CreateSyncChange(SyncChange::ACTION_UPDATE
    [all...]
  /external/chromium_org/chrome/browser/supervised_user/
supervised_user_shared_settings_service_unittest.cc 103 SyncChangeList& changes = sync_processor_->changes(); local
104 for (SyncChangeList::const_iterator it = changes.begin();
105 it != changes.end();
113 changes.clear();
144 EXPECT_EQ(0u, sync_processor_->changes().size());
163 ASSERT_EQ(1u, sync_processor_->changes().size());
166 ASSERT_EQ(1u, sync_processor_->changes().size());
169 ASSERT_EQ(1u, sync_processor_->changes().size());
172 ASSERT_EQ(1u, sync_processor_->changes().size())
246 SyncChangeList changes; local
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_change_tracker_unittest.cc 88 // Get the changes for URL and verify.
89 FileChangeList changes; local
90 change_tracker()->GetChangesForURL(url, &changes);
91 ASSERT_EQ(1U, changes.size());
93 " actual:" << changes.DebugString());
94 EXPECT_EQ(expected_change, changes.list()[0]);
154 // Changes for kPath0 must have been offset and removed.
167 // The changes must be in the last-modified-time order.
187 // No changes to promote yet, we've demoted no changes
    [all...]
syncable_file_system_unittest.cc 76 // Get the changes for URL and verify.
77 FileChangeList changes; local
78 change_tracker()->GetChangesForURL(url, &changes);
79 ASSERT_EQ(1U, changes.size());
81 " actual:" << changes.DebugString());
82 EXPECT_EQ(expected_change, changes.front());
223 // The changes will be offset.
  /external/chromium_org/chrome/browser/themes/
theme_syncable_service.cc 146 // generates multiple changes. When we fix syncapi to not do that,
150 string err_msg = base::StringPrintf("Received %d theme changes: ",
331 syncer::SyncChangeList changes; local
335 changes.push_back(
342 << changes.back().ToString();
344 return sync_processor_->ProcessSyncChanges(FROM_HERE, changes);
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_webdata_backend_impl.cc 86 AutofillChangeList changes; local
88 fields, &changes)) {
98 AutofillEntriesChanged(changes));
129 AutofillChangeList changes; local
132 delete_begin, delete_end, &changes)) {
133 if (!changes.empty()) {
139 AutofillEntriesChanged(changes));
151 AutofillChangeList changes; local
152 changes.push_back(
158 AutofillEntriesChanged(changes));
354 AutofillChangeList changes; local
    [all...]
  /external/chromium_org/components/password_manager/core/browser/
password_store.cc 239 PasswordStoreChangeList changes = task.Run(); local
240 NotifyLoginsChanged(changes);
244 const PasswordStoreChangeList& changes) {
246 if (!changes.empty()) {
247 observers_->Notify(&Observer::OnLoginsChanged, changes);
250 syncable_service_->ActOnPasswordStoreChanges(changes);
password_syncable_service.cc 154 // Changes from password db that need to be propagated to sync.
252 "Failed to process sync changes for passwords datatype.");
328 PasswordStoreChangeList changes; local
333 AppendChanges(password_store_->AddLoginImpl(**it), &changes);
340 AppendChanges(password_store_->UpdateLoginImpl(**it), &changes);
347 AppendChanges(password_store_->RemoveLoginImpl(**it), &changes);
351 // we use internal password store interfaces to make changes synchronously.
352 NotifyPasswordStoreOfLoginChanges(changes);
356 const PasswordStoreChangeList& changes) {
357 password_store_->NotifyLoginsChanged(changes);
    [all...]
  /external/chromium_org/extensions/browser/value_store/
value_store.h 109 explicit WriteResultType(scoped_ptr<ValueStoreChangeList> changes);
115 // Gets the list of changes to the settings which resulted from the write.
118 ValueStoreChangeList& changes() { return *changes_; } function in class:ValueStore::WriteResultType
141 // Don't generate the changes for a WriteResult.
208 // make any logs, track changes, or other generally polite things. Please do
  /external/chromium_org/mojo/services/view_manager/
test_change_tracker.h 65 // Converts Changes to string descriptions.
67 const std::vector<Change>& changes);
69 // Returns a string description of |changes[0].nodes|. Returns an empty string
71 std::string ChangeNodeDescription(const std::vector<Change>& changes);
96 std::vector<Change>* changes() { return &changes_; } function in class:mojo::view_manager::service::TestChangeTracker
  /external/chromium_org/net/cookies/
cookie_monster_store_test.h 126 const std::vector<CookieNotification>& changes() const { return changes_; } function in class:net::MockCookieMonsterDelegate
  /external/chromium_org/third_party/libevent/
devpoll.c 68 struct pollfd *changes; member in struct:devpollop
97 if (pwrite(devpollop->dpfd, devpollop->changes,
118 pfd = &devpollop->changes[devpollop->nchanges++];
171 devpollop->changes = calloc(nfiles, sizeof(struct pollfd));
172 if (devpollop->changes == NULL) {
410 if (devpollop->changes)
411 free(devpollop->changes);
kqueue.c 72 struct kevent *changes; member in struct:kqop
124 kqueueop->changes = malloc(NEVENT * sizeof(struct kevent));
125 if (kqueueop->changes == NULL) {
131 free (kqueueop->changes);
143 kqueueop->changes[0].ident = -1;
144 kqueueop->changes[0].filter = EVFILT_READ;
145 kqueueop->changes[0].flags = EV_ADD;
152 kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 ||
156 free(kqueueop->changes);
177 newchange = realloc(kqop->changes,
221 struct kevent *changes = kqop->changes; local
    [all...]
  /external/deqp/framework/platform/X11/
tcuX11.cpp 217 XWindowChanges changes; local
218 changes.width = width;
219 changes.height = height;
221 XConfigureWindow(m_display.getXDisplay(), m_window, mask, &changes);
  /frameworks/base/services/core/java/com/android/server/
AttributeCache.java 86 int changes = mConfiguration.updateFrom(config); local
87 if ((changes & ~(ActivityInfo.CONFIG_FONT_SCALE |
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapRefactoring.java 178 List<Change> changes = new ArrayList<Change>(); local
180 return changes;
225 changes.add(change);
226 return changes;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateWizard.java 161 * Computes the changes to the {@link #getProject()} this template should
164 * @return the changes to perform
169 List<Change> changes = computeChanges(); local
170 if (!changes.isEmpty()) {
171 monitor.beginTask("Creating template...", changes.size());
174 changes.toArray(new Change[changes.size()]));
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutRefactoringTest.java 133 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local
134 checkEdits(basename, changes);
UseCompoundDrawableRefactoringTest.java 105 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local
108 changes.toArray(new Change[changes.size()]));
112 checkEdits(basename, changes);
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DefaultItemAnimator.java 136 final ArrayList<ChangeInfo> changes = new ArrayList<ChangeInfo>(); local
137 changes.addAll(mPendingChanges);
138 mChangesList.add(changes);
143 for (ChangeInfo change : changes) {
146 changes.clear();
147 mChangesList.remove(changes);
151 ViewHolder holder = changes.get(0).oldHolder;
444 ArrayList<ChangeInfo> changes = mChangesList.get(i); local
445 endChangeAnimation(changes, item);
446 if (changes.isEmpty())
594 ArrayList<ChangeInfo> changes = mChangesList.get(i); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/storage/
settings_sync_unittest.cc 88 // SyncChangeProcessor which just records the changes made, accessed after
89 // being converted to the more useful SettingSyncData via changes().
119 const SettingSyncDataList& changes() { return changes_; } function in class:extensions::__anon8382::MockSyncChangeProcessor
141 ADD_FAILURE() << "No matching changes for " << extension_id << "/" <<
150 ADD_FAILURE() << matching_changes.size() << " matching changes for " <<
291 EXPECT_EQ(0u, sync_processor_->changes().size());
329 // Already in sync, so no changes.
330 EXPECT_EQ(0u, sync_processor_->changes().size());
335 EXPECT_EQ(0u, sync_processor_->changes().size());
338 EXPECT_EQ(1u, sync_processor_->changes().size())
    [all...]
  /external/chromium_org/chrome/browser/history/
typed_url_syncable_service_unittest.cc 255 if (num_typed_urls != fake_change_processor_->changes().size())
274 const syncer::SyncChangeList& changes = fake_change_processor_->changes(); local
275 ASSERT_EQ(1u, changes.size());
276 ASSERT_TRUE(changes[0].IsValid());
277 EXPECT_EQ(syncer::TYPED_URLS, changes[0].sync_data().GetDataType());
278 EXPECT_EQ(syncer::SyncChange::ACTION_ADD, changes[0].change_type());
282 changes[0].sync_data().GetSpecifics().typed_url();
306 syncer::SyncChangeList& changes = fake_change_processor_->changes(); local
359 syncer::SyncChangeList& changes = fake_change_processor_->changes(); local
383 syncer::SyncChangeList& changes = fake_change_processor_->changes(); local
441 syncer::SyncChangeList& changes = fake_change_processor_->changes(); local
498 syncer::SyncChangeList& changes = fake_change_processor_->changes(); local
557 const syncer::SyncChangeList& changes = fake_change_processor_->changes(); local
605 const syncer::SyncChangeList& changes = fake_change_processor_->changes(); local
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
native_backend_gnome_x.cc 564 password_manager::PasswordStoreChangeList changes; local
572 changes.push_back(password_manager::PasswordStoreChange(
577 changes.push_back(password_manager::PasswordStoreChange(
580 return changes;
585 password_manager::PasswordStoreChangeList* changes) {
593 DCHECK(changes);
594 changes->clear();
621 changes->push_back(change);
648 password_manager::PasswordStoreChangeList* changes) {
650 delete_begin, delete_end, CREATION_TIMESTAMP, changes);
    [all...]
password_store_x_unittest.cc 55 void(const password_manager::PasswordStoreChangeList& changes));
66 PasswordStoreChangeList* changes) OVERRIDE {
74 password_manager::PasswordStoreChangeList* changes) OVERRIDE {
81 password_manager::PasswordStoreChangeList* changes) OVERRIDE {
109 PasswordStoreChangeList* changes) OVERRIDE {
113 changes->push_back(PasswordStoreChange(PasswordStoreChange::UPDATE,
129 password_manager::PasswordStoreChangeList* changes) OVERRIDE {
141 password_manager::PasswordStoreChangeList* changes) OVERRIDE {
142 DCHECK(changes); variable
146 changes->push_back(password_manager::PasswordStoreChange
    [all...]

Completed in 1252 milliseconds

12 3 4 5 6 7 8 9