Searched defs:notifyChange (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/database/
H A DContentObservable.java84 public void notifyChange(boolean selfChange) { method in class:ContentObservable
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContentResolver.java135 * Overrides {@link android.content.ContentResolver#notifyChange(Uri, ContentObserver, boolean)
144 public void notifyChange(Uri uri, method in class:MockContentResolver
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContentResolver.java101 public void notifyChange(Uri uri, ContentObserver observer, boolean syncToNetwork) { method in class:BridgeContentResolver
/frameworks/ex/common/java/com/android/common/content/
H A DSQLiteContentProvider.java84 protected abstract void notifyChange(); method in class:SQLiteContentProvider
266 notifyChange();
/frameworks/base/services/core/java/com/android/server/location/
H A DComprehensiveCountryDetector.java264 * @param notifyChange indicates whether the listener should be notified the change of the
270 private Country detectCountry(boolean notifyChange, boolean startLocationBasedDetection) { argument
273 notifyChange, startLocationBasedDetection);
282 final boolean notifyChange, final boolean startLocationBasedDetection) {
287 country, detectedCountry, notifyChange, startLocationBasedDetection);
313 final boolean notifyChange, final boolean startLocationBasedDetection) {
314 if (notifyChange) {
281 runAfterDetectionAsync(final Country country, final Country detectedCountry, final boolean notifyChange, final boolean startLocationBasedDetection) argument
312 runAfterDetection(final Country country, final Country detectedCountry, final boolean notifyChange, final boolean startLocationBasedDetection) argument
/frameworks/base/services/tests/servicestests/src/com/android/server/location/
H A DComprehensiveCountryDetectorTest.java96 final boolean notifyChange, final boolean startLocationBasedDetection) {
97 runAfterDetection(country, detectedCountry, notifyChange, startLocationBasedDetection);
95 runAfterDetectionAsync(final Country country, final Country detectedCountry, final boolean notifyChange, final boolean startLocationBasedDetection) argument
/frameworks/base/services/core/java/com/android/server/content/
H A DContentService.java219 public void notifyChange(Uri uri, IContentObserver observer, method in class:ContentService
239 throw new InvalidParameterException("Bad user handle for notifyChange: "
292 public void notifyChange(Uri uri, IContentObserver observer, method in class:ContentService
294 notifyChange(uri, observer, observerWantsSelfNotifications, syncToNetwork,
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseRecyclerViewInstrumentationTest.java616 public void moveItems(boolean notifyChange, int[]... fromToTuples) throws Throwable { argument
621 if (notifyChange) {
629 public void moveItem(final int from, final int to, final boolean notifyChange) argument
638 if (notifyChange) {
/frameworks/base/core/java/android/content/
H A DContentResolver.java116 * {@link ContentResolver#notifyChange(android.net.Uri, android.database.ContentObserver, boolean)}
1606 public void notifyChange(Uri uri, ContentObserver observer) { method in class:ContentResolver
1607 notifyChange(uri, observer, true /* sync to network */);
1626 public void notifyChange(Uri uri, ContentObserver observer, boolean syncToNetwork) { method in class:ContentResolver
1627 notifyChange(uri, observer, syncToNetwork, UserHandle.myUserId());
1635 public void notifyChange(Uri uri, ContentObserver observer, boolean syncToNetwork, method in class:ContentResolver
1638 getContentService().notifyChange(
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java1648 * @param notifyChange Whether to notify if the current value changed.
1650 private void setValueInternal(int current, boolean notifyChange) { argument
1664 if (notifyChange) {
1665 notifyChange(previous, current);
1877 private void notifyChange(int previous, int current) { method in class:NumberPicker

Completed in 267 milliseconds