Searched defs:notifyChange (Results 1 - 9 of 9) 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.java127 * Overrides {@link android.content.ContentResolver#notifyChange(Uri, ContentObserver, boolean)
136 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/java/com/android/server/location/
H A DComprehensiveCountryDetector.java265 * @param notifyChange indicates whether the listener should be notified the change of the
271 private Country detectCountry(boolean notifyChange, boolean startLocationBasedDetection) { argument
274 notifyChange, startLocationBasedDetection);
283 final boolean notifyChange, final boolean startLocationBasedDetection) {
288 country, detectedCountry, notifyChange, startLocationBasedDetection);
314 final boolean notifyChange, final boolean startLocationBasedDetection) {
315 if (notifyChange) {
282 runAfterDetectionAsync(final Country country, final Country detectedCountry, final boolean notifyChange, final boolean startLocationBasedDetection) argument
313 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/core/java/android/content/
H A DContentService.java204 public void notifyChange(Uri uri, IContentObserver observer, method in class:ContentService
224 throw new InvalidParameterException("Bad user handle for notifyChange: "
276 public void notifyChange(Uri uri, IContentObserver observer, method in class:ContentService
278 notifyChange(uri, observer, observerWantsSelfNotifications, syncToNetwork,
H A DContentResolver.java1265 public void notifyChange(Uri uri, ContentObserver observer) { method in class:ContentResolver
1266 notifyChange(uri, observer, true /* sync to network */);
1285 public void notifyChange(Uri uri, ContentObserver observer, boolean syncToNetwork) { method in class:ContentResolver
1286 notifyChange(uri, observer, syncToNetwork, UserHandle.getCallingUserId());
1294 public void notifyChange(Uri uri, ContentObserver observer, boolean syncToNetwork, method in class:ContentResolver
1297 getContentService().notifyChange(
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java1539 * @param notifyChange Whether to notify if the current value changed.
1541 private void setValueInternal(int current, boolean notifyChange) { argument
1555 if (notifyChange) {
1556 notifyChange(previous, current);
1768 private void notifyChange(int previous, int current) { method in class:NumberPicker

Completed in 193 milliseconds