Searched defs:watcher (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/com/android/internal/os/
H A DBinderInternal.java57 public static void addGcWatcher(Runnable watcher) { argument
59 sGcWatchers.add(watcher);
/frameworks/base/core/java/android/widget/
H A DDialerFilter.java359 public void setLettersWatcher(TextWatcher watcher) { argument
362 span.setSpan(watcher, 0, text.length(), Spanned.SPAN_INCLUSIVE_INCLUSIVE);
365 public void setDigitsWatcher(TextWatcher watcher) { argument
368 span.setSpan(watcher, 0, text.length(), Spanned.SPAN_INCLUSIVE_INCLUSIVE);
371 public void setFilterWatcher(TextWatcher watcher) { argument
373 setLettersWatcher(watcher);
375 setDigitsWatcher(watcher);
379 public void removeFilterWatcher(TextWatcher watcher) { argument
386 text.removeSpan(watcher);
H A DTextView.java7913 public void addTextChangedListener(TextWatcher watcher) { argument
7918 mListeners.add(watcher);
7926 public void removeTextChangedListener(TextWatcher watcher) { argument
7928 int i = mListeners.indexOf(watcher);
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiDevice.java515 * @param watcher {@link UiWatcher}
518 public void registerWatcher(String name, UiWatcher watcher) { argument
519 Tracer.trace(name, watcher);
521 throw new IllegalStateException("Cannot register new watcher from within another");
523 mWatchers.put(name, watcher);
536 throw new IllegalStateException("Cannot remove a watcher from within another");
553 UiWatcher watcher = mWatchers.get(watcherName);
554 if (watcher != null) {
557 if (watcher.checkForCondition()) {
561 Log.e(LOG_TAG, "Exceuting watcher
[all...]
/frameworks/base/core/java/android/app/
H A DInstrumentation.java1774 IInstrumentationWatcher watcher, IUiAutomationConnection uiAutomationConnection) {
1780 mWatcher = watcher;
1772 init(ActivityThread thread, Context instrContext, Context appContext, ComponentName component, IInstrumentationWatcher watcher, IUiAutomationConnection uiAutomationConnection) argument
H A DActivityManagerNative.java1386 IActivityController watcher = IActivityController.Stub.asInterface(
1388 setActivityController(watcher);
3881 int flags, Bundle arguments, IInstrumentationWatcher watcher,
3891 data.writeStrongBinder(watcher != null ? watcher.asBinder() : null);
4338 public void setActivityController(IActivityController watcher) throws RemoteException argument
4343 data.writeStrongBinder(watcher != null ? watcher.asBinder() : null);
3880 startInstrumentation(ComponentName className, String profileFile, int flags, Bundle arguments, IInstrumentationWatcher watcher, IUiAutomationConnection connection, int userId, String instructionSet) argument
H A DIActivityManager.java193 int flags, Bundle arguments, IInstrumentationWatcher watcher,
264 public void setActivityController(IActivityController watcher) argument
192 startInstrumentation(ComponentName className, String profileFile, int flags, Bundle arguments, IInstrumentationWatcher watcher, IUiAutomationConnection connection, int userId, String abiOverride) argument
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java2398 public void removeTextChangedListener(TextWatcher watcher) { argument
2400 super.removeTextChangedListener(watcher);
2429 // view. If there are, don't do anything in the text watcher.
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java477 IRotationWatcher watcher; field in class:WindowManagerService.RotationWatcher
480 watcher = w;
6672 mRotationWatchers.get(i).watcher.onRotationChanged(rotation);
6700 public int watchRotation(IRotationWatcher watcher) { argument
6701 final IBinder watcherBinder = watcher.asBinder();
6707 if (watcherBinder == mRotationWatchers.get(i).watcher.asBinder()) {
6709 IBinder binder = removed.watcher.asBinder();
6722 watcher.asBinder().linkToDeath(dr, 0);
6723 mRotationWatchers.add(new RotationWatcher(watcher, dr));
6733 public void removeRotationWatcher(IRotationWatcher watcher) { argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java4268 // ask watcher if this is allowed
12516 + " at watcher's request");
17056 IInstrumentationWatcher watcher, IUiAutomationConnection uiAutomationConnection,
17078 reportStartInstrumentationFailure(watcher, className,
17083 reportStartInstrumentationFailure(watcher, className,
17098 reportStartInstrumentationFailure(watcher, className, msg);
17111 app.instrumentationWatcher = watcher;
17125 * @param watcher The IInstrumentationWatcher. Null if there isn't one.
17129 private void reportStartInstrumentationFailure(IInstrumentationWatcher watcher, argument
17133 if (watcher !
17054 startInstrumentation(ComponentName className, String profileFile, int flags, Bundle arguments, IInstrumentationWatcher watcher, IUiAutomationConnection uiAutomationConnection, int userId, String abiOverride) argument
[all...]

Completed in 2531 milliseconds