HomeSort by relevance Sort by last modified time
    Searched refs:onChange (Results 1 - 25 of 246) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/base/core/java/android/database/
IContentObserver.aidl 32 oneway void onChange(boolean selfUpdate, in Uri uri, int userId);
ContentObserver.java 36 * @param handler The handler to run {@link #onChange} on, or null if none.
94 public void onChange(boolean selfChange) {
105 * the {@link #onChange(boolean)} overload of this method whenever they
106 * implement the {@link #onChange(boolean, Uri)} overload.
110 * // Implement the onChange(boolean) method to delegate the change notification to
111 * // the onChange(boolean, Uri) method to ensure correct operation on older versions
112 * // of the framework that did not have the onChange(boolean, Uri) method.
114 * public void onChange(boolean selfChange) {
115 * onChange(selfChange, null);
118 * // Implement the onChange(boolean, Uri) method to take advantage of the new Uri argument
    [all...]
ContentObservable.java 77 * Invokes {@link ContentObserver#onChange} on each observer.
87 observer.onChange(selfChange, null);
  /packages/apps/Camera2/src/com/android/camera/data/
FilmstripContentObserver.java 22 * Listening to the changes to the local image and video data. onChange will
30 public void onChange();
49 * When the activity is paused and MediaObserver get onChange() call, then
53 public void onChange(boolean selfChange) {
55 mChangeListener.onChange();
  /cts/tests/tests/database/src/android/database/cts/
AbstractCursor_SelfContentObserverTest.java 38 // here, the directly call of AbstractCurso#onChange is intended to test
39 // SelfContentObserver#onChange
40 mockCursor.onChange(false);
45 mockCursor.onChange(true);
51 mockCursor.onChange(true);
108 public void onChange(boolean selfChange) {
109 super.onChange(selfChange);
124 public void onChange(boolean selfChange) {
125 super.onChange(selfChange);
ContentObserverTest.java 31 // Test constructor with null handler, dispatchChange will directly invoke onChange.
73 // Test constructor with null handler, dispatchChange will directly invoke onChange.
132 public void onChange(boolean selfChange) {
133 super.onChange(selfChange);
176 public void onChange(boolean selfChange, Uri uri) {
177 super.onChange(selfChange, uri);
ContentObservableTest.java 129 public void onChange(boolean selfChange, Uri uri) {
130 super.onChange(selfChange, uri);
  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/util/
ConfigToggle.java 34 abstract public void onChange(boolean newValue);
ConfigViewHolder.java 46 mConfigToggle.onChange(isChecked);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ChangeNotifier.java 49 onChange(false);
52 protected void onChange(boolean selfChange) {
  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/
LinearLayoutManagerActivity.java 54 public void onChange(boolean newValue) {
70 public void onChange(boolean newValue) {
82 public void onChange(boolean newValue) {
94 public void onChange(boolean newValue) {
GridLayoutManagerActivity.java 61 public void onChange(boolean newValue) {
73 public void onChange(boolean newValue) {
85 public void onChange(boolean newValue) {
97 public void onChange(boolean newValue) {
StaggeredGridLayoutManagerActivity.java 48 public void onChange(boolean newValue) {
  /packages/apps/Settings/src/com/android/settings/accessibility/
SettingsContentObserver.java 42 public abstract void onChange(boolean selfChange, Uri uri);
  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/touch/
DragAndDropActivity.java 47 public void onChange(boolean newValue) {
58 public void onChange(boolean newValue) {
69 public void onChange(boolean newValue) {
SwipeToDismissActivity.java 48 public void onChange(boolean newValue) {
59 public void onChange(boolean newValue) {
70 public void onChange(boolean newValue) {
86 public void onChange(boolean newValue) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java 155 final IMenuCallback onChange = new IMenuCallback() {
358 actions.add(RuleAction.createAction(PROP_PREFIX + ATTR_TEXT, "Edit Text...", onChange,
364 actions.add(RuleAction.createAction(ATTR_ID, editIdLabel, onChange, null, 20, true));
366 addCommonPropertyActions(actions, selectedNode, onChange, 21);
383 onChange,
404 onChange,
413 onChange /*callback*/, null /*icon*/, 50,
420 onChange /*callback*/, null /*icon*/, 10,
425 addRecentPropertyActions(propertyActions, n, onChange);
432 addInheritedProperties(propertyActionTypes, node, onChange, 30)
    [all...]
  /external/skia/tests/
PixelRefTest.cpp 9 void onChange() override { (*fPtr)++; }
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
GlobalSetting.java 58 public void onChange(boolean selfChange) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeystoreSelectionPage.java 134 onChange();
142 onChange();
150 onChange();
157 onChange();
178 // disable onChange for now. we'll call it once at the end.
191 // enable onChange, and call it to display errors and enable/disable pageCompleted.
193 onChange();
200 private void onChange() {
KeyCreationPage.java 143 onChange();
150 onChange();
156 onChange();
170 onChange();
196 // disable onChange for now. we'll call it once at the end.
215 // enable onChange, and call it to display errors and enable/disable pageCompleted.
217 onChange();
238 private void onChange() {
316 onChange();
KeySelectionPage.java 115 onChange();
123 onChange();
131 onChange();
140 // disable onChange for now. we'll call it once at the end.
199 // enable onChange, and call it to display errors and enable/disable pageCompleted.
201 onChange();
236 private void onChange() {
  /frameworks/base/core/java/com/android/internal/view/
RotationPolicy.java 190 public void onChange(boolean selfChange, Uri uri) {
191 RotationPolicyListener.this.onChange();
195 public abstract void onChange();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
UserBinaryDictionary.java 75 public void onChange(final boolean self) {
79 onChange(self, null);
85 public void onChange(final boolean self, final Uri uri) {
  /frameworks/base/services/core/java/com/android/server/
CertBlacklister.java 67 public void onChange(boolean selfChange) {
68 super.onChange(selfChange);

Completed in 1551 milliseconds

1 2 3 4 5 6 7 8 910