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

/frameworks/data-binding/library/src/main/java/android/databinding/
H A DMapChangeRegistry.java43 public void notifyChange(ObservableMap sender, Object key) { method in class:MapChangeRegistry
H A DPropertyChangeRegistry.java43 public void notifyChange(Observable observable, int propertyId) { method in class:PropertyChangeRegistry
H A DBaseObservable.java21 * {@link #notifyPropertyChanged(int)} and {@link #notifyChange} methods.
47 public synchronized void notifyChange() { method in class:BaseObservable
H A DObservableArrayMap.java48 notifyChange(null);
54 notifyChange(k);
89 notifyChange(key);
98 notifyChange(key);
102 private void notifyChange(Object key) { method in class:ObservableArrayMap
/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/base/packages/DocumentsUI/tests/src/com/android/documentsui/
H A DCopyTest.java91 public void notifyChange(Uri uri, ContentObserver observer, boolean syncToNetwork) { method in class:CopyTest.TestContentResolver
/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.java245 public void notifyChange(Uri uri, IContentObserver observer, method in class:ContentService
268 throw new InvalidParameterException("Bad user handle for notifyChange: "
320 public void notifyChange(Uri uri, IContentObserver observer, method in class:ContentService
322 notifyChange(uri, observer, observerWantsSelfNotifications, syncToNetwork,
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseRecyclerViewInstrumentationTest.java745 public void moveItems(boolean notifyChange, int[]... fromToTuples) throws Throwable { argument
750 if (notifyChange) {
758 public void moveItem(final int from, final int to, final boolean notifyChange) argument
764 if (notifyChange) {
/frameworks/base/core/java/android/content/
H A DContentResolver.java122 * {@link ContentResolver#notifyChange(android.net.Uri, android.database.ContentObserver, boolean)}
1643 public void notifyChange(@NonNull Uri uri, @Nullable ContentObserver observer) { method in class:ContentResolver
1644 notifyChange(uri, observer, true /* sync to network */);
1663 public void notifyChange(@NonNull Uri uri, @Nullable ContentObserver observer, method in class:ContentResolver
1666 notifyChange(
1678 public void notifyChange(Uri uri, ContentObserver observer, boolean syncToNetwork, method in class:ContentResolver
1681 getContentService().notifyChange(
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java1705 * @param notifyChange Whether to notify if the current value changed.
1707 private void setValueInternal(int current, boolean notifyChange) { argument
1721 if (notifyChange) {
1722 notifyChange(previous, current);
1934 private void notifyChange(int previous, int current) { method in class:NumberPicker

Completed in 1548 milliseconds