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

1 2 3 4 5 6 7 8 9

  /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);
  /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/Camera2/src/com/android/camera/data/
LocalMediaObserver.java 22 * Listening to the changes to the local image and video data. onChange will
35 * When the activity is paused and MediaObserver get onChange() call, then
39 public void onChange(boolean selfChange) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ChangeNotifier.java 49 onChange(false);
52 protected void onChange(boolean selfChange) {
  /external/chromium_org/chrome/browser/ui/cocoa/
first_run_bubble_controller.h 27 - (IBAction)onChange:(id)sender;
  /packages/apps/Settings/src/com/android/settings/accessibility/
SettingsContentObserver.java 42 public abstract void onChange(boolean selfChange, Uri uri);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/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 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...]
EditTextRule.java 70 IMenuCallback onChange = new IMenuCallback() {
92 actions.add(RuleAction.createAction("_setfocus", label, onChange, //$NON-NLS-1$
  /external/chromium_org/chrome/renderer/resources/extensions/
chrome_direct_setting.js 39 this.onChange = new Event('types.private.ChromeDirectSetting.' +
41 '.onChange');
chrome_setting.js 39 this.onChange = new Event('types.ChromeSetting.' + prefKey + '.onChange');
  /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 179 public void onChange(boolean selfChange, Uri uri) {
180 RotationPolicyListener.this.onChange();
184 public abstract void onChange();
  /packages/apps/Calculator/src/com/android/calculator2/
PanelSwitcher.java 49 void onChange();
88 mListener.onChange();
176 mListener.onChange();
  /external/chromium_org/chrome/browser/resources/google_now/
background_test_util.js 36 onChange: emptyListener
  /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) {
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
perf.js 32 init: function(items, onChange, opt_values)
34 this.onchange = onChange;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
RotationLockController.java 34 public void onChange() {

Completed in 400 milliseconds

1 2 3 4 5 6 7 8 9