Searched refs:watcher (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DDialerFilter.java361 public void setLettersWatcher(TextWatcher watcher) { argument
364 span.setSpan(watcher, 0, text.length(), Spanned.SPAN_INCLUSIVE_INCLUSIVE);
367 public void setDigitsWatcher(TextWatcher watcher) { argument
370 span.setSpan(watcher, 0, text.length(), Spanned.SPAN_INCLUSIVE_INCLUSIVE);
373 public void setFilterWatcher(TextWatcher watcher) { argument
375 setLettersWatcher(watcher);
377 setDigitsWatcher(watcher);
381 public void removeFilterWatcher(TextWatcher watcher) { argument
388 text.removeSpan(watcher);
H A DTextView.java7016 public void addTextChangedListener(TextWatcher watcher) { argument
7021 mListeners.add(watcher);
7029 public void removeTextChangedListener(TextWatcher watcher) { argument
7031 int i = mListeners.indexOf(watcher);
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiDevice.java397 * Enables the test script to register a condition watcher to be called by
404 * @param name of watcher
405 * @param watcher {@link UiWatcher}
407 public void registerWatcher(String name, UiWatcher watcher) { argument
409 throw new IllegalStateException("Cannot register new watcher from within another");
411 mWatchers.put(name, watcher);
416 * @param name of watcher used when <code>registerWatcher</code> was called.
421 throw new IllegalStateException("Cannot remove a watcher from within another");
439 UiWatcher watcher = mWatchers.get(watcherName);
440 if (watcher !
[all...]
/frameworks/base/core/java/android/view/
H A DIWindowManager.aidl164 int watchRotation(IRotationWatcher watcher);
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java603 InstrumentationWatcher watcher = null;
605 watcher = new InstrumentationWatcher();
606 watcher.setRawOutput(rawMode);
615 if (!mAm.startInstrumentation(cn, profileFile, 0, args, watcher)) {
619 if (watcher != null) {
620 if (!watcher.waitForFinish()) {
/frameworks/base/core/java/android/app/
H A DIActivityManager.java159 int flags, Bundle arguments, IInstrumentationWatcher watcher)
219 public void setActivityController(IActivityController watcher) argument
158 startInstrumentation(ComponentName className, String profileFile, int flags, Bundle arguments, IInstrumentationWatcher watcher) argument
H A DInstrumentation.java1523 IInstrumentationWatcher watcher) {
1529 mWatcher = watcher;
1521 init(ActivityThread thread, Context instrContext, Context appContext, ComponentName component, IInstrumentationWatcher watcher) argument
H A DActivityManagerNative.java1073 IActivityController watcher = IActivityController.Stub.asInterface(
1075 setActivityController(watcher);
2657 int flags, Bundle arguments, IInstrumentationWatcher watcher)
2666 data.writeStrongBinder(watcher != null ? watcher.asBinder() : null);
3042 public void setActivityController(IActivityController watcher) throws RemoteException argument
3047 data.writeStrongBinder(watcher != null ? watcher.asBinder() : null);
2656 startInstrumentation(ComponentName className, String profileFile, int flags, Bundle arguments, IInstrumentationWatcher watcher) argument
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java2075 public void removeTextChangedListener(TextWatcher watcher) { argument
2077 super.removeTextChangedListener(watcher);
2100 // view. If there are, don't do anything in the text watcher.
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java2647 // ask watcher if this is allowed
8298 + " at watcher's request");
13295 IInstrumentationWatcher watcher) {
13313 reportStartInstrumentationFailure(watcher, className,
13318 reportStartInstrumentationFailure(watcher, className,
13333 reportStartInstrumentationFailure(watcher, className, msg);
13346 app.instrumentationWatcher = watcher;
13359 * @param watcher The IInstrumentationWatcher. Null if there isn't one.
13363 private void reportStartInstrumentationFailure(IInstrumentationWatcher watcher, argument
13367 if (watcher !
13293 startInstrumentation(ComponentName className, String profileFile, int flags, Bundle arguments, IInstrumentationWatcher watcher) argument
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java5816 public int watchRotation(IRotationWatcher watcher) { argument
5817 final IBinder watcherBinder = watcher.asBinder();
5836 watcher.asBinder().linkToDeath(dr, 0);
5837 mRotationWatchers.add(watcher);

Completed in 332 milliseconds