HomeSort by relevance Sort by last modified time
    Searched refs:changes (Results 126 - 150 of 658) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/passwords/
manage_passwords_ui_controller.h 60 const password_manager::PasswordStoreChangeList& changes) OVERRIDE;
159 // determine which PasswordStore changes we should care about when updating
password_manager_presenter.h 26 // PasswordStore operations and updates the view on PasswordStore changes.
36 const password_manager::PasswordStoreChangeList& changes) OVERRIDE;
  /external/chromium_org/content/browser/dom_storage/
dom_storage_database.h 39 // |changes| will be examined - keys mapped to a null NullableString16
41 bool CommitChanges(bool clear_all_first, const DOMStorageValuesMap& changes);
  /external/chromium_org/sync/internal_api/
sync_rollback_manager_unittest.cc 50 const ImmutableChangeRecordList& changes));
54 void VerifyDeletes(const ImmutableChangeRecordList& changes) {
56 for (size_t i = 0; i < changes.Get().size(); ++i) {
57 const ChangeRecord& change = (changes.Get())[i];
  /external/chromium_org/third_party/mesa/src/docs/
MESA_resize_buffers.spec 39 changes.
42 when a window size changes but would still like Mesa to adjust to
  /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);
  /external/mesa3d/docs/
MESA_resize_buffers.spec 39 changes.
42 when a window size changes but would still like Mesa to adjust to
  /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.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleRefactoringTest.java 212 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local
213 assertEquals(expectedModifiedFileCount, changes.size());
221 checkEdits(changes, fileToGolden, true);
224 for (Change change : changes) {
RefactoringTest.java 105 protected void checkEdits(String basename, List<Change> changes) throws BadLocationException,
115 for (Change change : changes) {
143 protected void checkEdits(List<Change> changes,
145 checkEdits(changes, fileToGoldenName, false);
148 protected void checkEdits(List<Change> changes,
151 for (Change change : changes) {
  /external/chromium_org/chrome/browser/extensions/api/synced_notifications_private/
synced_notifications_shim_unittest.cc 174 EXPECT_TRUE(notification_processor()->changes().empty());
175 EXPECT_TRUE(app_info_processor()->changes().empty());
316 EXPECT_TRUE(notification_processor()->changes().empty());
319 EXPECT_EQ(1U, notification_processor()->changes().size());
321 notification_processor()->changes()[0].change_type());
323 notification_processor()->changes()[0].sync_data().GetDataType());
326 ->changes()[0]
  /external/clang/docs/analyzer/
make.bat 35 echo. changes to make an overview over all changed/added/deprecated items
164 if "%1" == "changes" (
165 %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
168 echo.The overview file is in %BUILDDIR%/changes.
  /external/clang/docs/
make.bat 35 echo. changes to make an overview over all changed/added/deprecated items
164 if "%1" == "changes" (
165 %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
168 echo.The overview file is in %BUILDDIR%/changes.
  /external/llvm/docs/
make.bat 35 echo. changes to make an overview over all changed/added/deprecated items
164 if "%1" == "changes" (
165 %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
168 echo.The overview file is in %BUILDDIR%/changes.
  /external/chromium_org/chrome/browser/password_manager/
native_backend_gnome_x_unittest.cc 701 PasswordStoreChangeList changes; local
714 &changes),
716 &CheckPasswordChangesWithResult, &expected_changes, &changes));
734 &changes),
736 &CheckPasswordChangesWithResult, &expected_changes, &changes));
860 PasswordStoreChangeList changes; local
990 PasswordStoreChangeList changes; local
1000 EXPECT_EQ(PasswordStoreChangeList(), changes); local
1010 PasswordStoreChangeList changes; local
    [all...]
native_backend_kwallet_x_unittest.cc 380 PasswordStoreChangeList changes; local
390 method, base::Unretained(&backend), base::Time(), next_day, &changes),
393 &changes));
410 method, base::Unretained(&backend), next_day, base::Time(), &changes),
413 &changes));
669 PasswordStoreChangeList changes; local
675 base::Unretained(&changes)));
678 ASSERT_EQ(1u, changes.size());
679 EXPECT_EQ(PasswordStoreChange::UPDATE, changes.front().type());
680 EXPECT_EQ(new_form_google, changes.front().form())
769 PasswordStoreChangeList changes; local
779 EXPECT_EQ(PasswordStoreChangeList(), changes); local
830 PasswordStoreChangeList changes; local
    [all...]
  /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;
446 ArrayList<ChangeInfo> changes = mChangesList.get(i); local
447 endChangeAnimation(changes, item);
448 if (changes.isEmpty())
596 ArrayList<ChangeInfo> changes = mChangesList.get(i); local
    [all...]
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 360 StringBuilder changes = new StringBuilder(); local
375 changes.append(" New service added: ").append(info).append("\n");
385 changes.append(" Existing service (nop): ").append(info).append("\n");
392 changes.append(" System service replacing existing: ").append(info)
395 changes.append(" Existing service replacing a removed service: ")
406 changes.append(" Existing service with new uid ignored: ").append(info)
423 changes.append(" Service removed: ").append(v1).append("\n");
441 if (changes.length() > 0) {
443 serviceInfos.size() + " services:\n" + changes);
  /external/chromium_org/ui/views/widget/desktop_aura/
x11_topmost_window_finder_interactive_uitest.cc 156 XWindowChanges changes = {0}; local
157 changes.x = bounds.x();
158 changes.y = bounds.y();
159 changes.width = bounds.width();
160 changes.height = bounds.height();
164 &changes); local
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/
loader.js 20 * Called when document ready state changes.
  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_change_tracker.h 39 // Tracks local file changes for cloud-backed file systems.
68 // Retrieves an array of |url| which have more than one pending changes.
71 // change_seq numbers (i.e. older changes).
75 // Returns all changes recorded for the given |url|.
76 // Note that this also returns demoted changes.
79 FileChangeList* changes);
81 // Clears the pending changes recorded in this tracker for |url|.
85 // Note that new changes are recorded to the mirror too.
91 // Resets the changes to the ones recorded in mirror for |url|, and
95 // Re-inserts changes into the separate demoted_changes_ queue. They won'
    [all...]
local_file_sync_service.h 59 // This is called when there're one or more local changes available.
121 // changes.
176 void SetOriginChangeCount(const GURL& origin, int64 changes);
181 // Per-origin changes (cached info, could be stale).
218 const FileChangeList& changes,
233 // Origins which have pending changes but have not been initialized yet.
  /external/chromium_org/chrome/common/extensions/docs/examples/api/deviceInfo/basic/
popup.js 31 // Add an event listener to listen for changes to device info. The
  /external/chromium_org/components/password_manager/core/browser/
password_store.h 119 virtual void OnLoginsChanged(const PasswordStoreChangeList& changes) = 0;
176 // Adds an observer to be notified when the password store data changes.
259 const PasswordStoreChangeList& changes) OVERRIDE;
  /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

Completed in 850 milliseconds

1 2 3 4 56 7 8 91011>>