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

1 2 3 4 5 6 7

  /frameworks/base/core/java/android/database/
IContentObserver.aidl 32 oneway void onChange(boolean selfUpdate, in Uri uri);
ContentObserver.java 35 * @param handler The handler to run {@link #onChange} on, or null if none.
93 public void onChange(boolean selfChange) {
104 * the {@link #onChange(boolean)} overload of this method whenever they
105 * implement the {@link #onChange(boolean, Uri)} overload.
109 * // Implement the onChange(boolean) method to delegate the change notification to
110 * // the onChange(boolean, Uri) method to ensure correct operation on older versions
111 * // of the framework that did not have the onChange(boolean, Uri) method.
113 * public void onChange(boolean selfChange) {
114 * onChange(selfChange, null);
117 * // 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);
CursorToBulkCursorAdaptor.java 82 public void onChange(boolean selfChange, Uri uri) {
84 mRemote.onChange(selfChange, uri);
AbstractCursor.java 337 protected void onChange(boolean selfChange) {
455 public void onChange(boolean selfChange) {
458 cursor.onChange(false);
  /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);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ChangeNotifier.java 49 onChange(false);
52 protected void onChange(boolean selfChange) {
  /frameworks/base/core/java/com/android/internal/view/
RotationPolicy.java 162 public void onChange(boolean selfChange, Uri uri) {
163 RotationPolicyListener.this.onChange();
167 public abstract void onChange();
  /packages/apps/Contacts/src/com/android/contacts/preference/
ContactsPreferences.java 144 public void onChange(boolean selfChange) {
152 if (mListener != null) mListener.onChange();
158 void onChange();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java 156 final IMenuCallback onChange = new IMenuCallback() {
375 actions.add(RuleAction.createAction(PROP_PREFIX + ATTR_TEXT, "Edit Text...", onChange,
381 actions.add(RuleAction.createAction(ATTR_ID, editIdLabel, onChange, null, 20, true));
383 addCommonPropertyActions(actions, selectedNode, onChange, 21);
400 onChange,
421 onChange,
430 onChange /*callback*/, null /*icon*/, 50,
437 onChange /*callback*/, null /*icon*/, 10,
442 addRecentPropertyActions(propertyActions, n, onChange);
449 addInheritedProperties(propertyActionTypes, node, onChange, 30)
    [all...]
EditTextRule.java 70 IMenuCallback onChange = new IMenuCallback() {
92 actions.add(RuleAction.createAction("_setfocus", label, onChange, //$NON-NLS-1$
  /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() {
  /packages/apps/Calculator/src/com/android/calculator2/
PanelSwitcher.java 49 void onChange();
88 mListener.onChange();
176 mListener.onChange();
  /frameworks/base/services/java/com/android/server/
CertBlacklister.java 67 public void onChange(boolean selfChange) {
68 super.onChange(selfChange);
SamplingProfilerService.java 110 onChange(false);
113 public void onChange(boolean selfChange) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
AutoRotateController.java 35 public void onChange() {
  /packages/apps/Email/tests/src/com/android/email/service/
AttachmentDownloadServiceTests.java 106 mDownloadSet.onChange(mMockContext, att1);
107 mDownloadSet.onChange(mMockContext, att2);
108 mDownloadSet.onChange(mMockContext, att3);
109 mDownloadSet.onChange(mMockContext, att4);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ConfigurationSelector.java 328 onChange(false /* keepSelection */);
352 onChange(false /* keepSelection */);
572 private void onChange(boolean keepSelection) {
781 onChange(true /* keepSelection */);
    [all...]
  /frameworks/base/core/java/android/widget/
DigitalClock.java 126 public void onChange(boolean selfChange) {
  /frameworks/base/policy/src/com/android/internal/policy/impl/
ShortcutManager.java 68 public void onChange(boolean selfChange) {
  /frameworks/base/core/java/android/content/
ContentQueryMap.java 100 public void onChange(boolean selfChange) {

Completed in 500 milliseconds

1 2 3 4 5 6 7