Searched defs:watcher (Results 1 - 9 of 9) 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.java7255 public void addTextChangedListener(TextWatcher watcher) { argument
7260 mListeners.add(watcher);
7268 public void removeTextChangedListener(TextWatcher watcher) { argument
7270 int i = mListeners.indexOf(watcher);
/frameworks/testing/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.java1609 IInstrumentationWatcher watcher, IUiAutomationConnection uiAutomationConnection) {
1615 mWatcher = watcher;
1607 init(ActivityThread thread, Context instrContext, Context appContext, ComponentName component, IInstrumentationWatcher watcher, IUiAutomationConnection uiAutomationConnection) argument
H A DActivityManagerNative.java1153 IActivityController watcher = IActivityController.Stub.asInterface(
1155 setActivityController(watcher);
2925 int flags, Bundle arguments, IInstrumentationWatcher watcher,
2934 data.writeStrongBinder(watcher != null ? watcher.asBinder() : null);
3332 public void setActivityController(IActivityController watcher) throws RemoteException argument
3337 data.writeStrongBinder(watcher != null ? watcher.asBinder() : null);
2924 startInstrumentation(ComponentName className, String profileFile, int flags, Bundle arguments, IInstrumentationWatcher watcher, IUiAutomationConnection connection, int userId) argument
H A DIActivityManager.java161 int flags, Bundle arguments, IInstrumentationWatcher watcher,
225 public void setActivityController(IActivityController watcher) argument
160 startInstrumentation(ComponentName className, String profileFile, int flags, Bundle arguments, IInstrumentationWatcher watcher, IUiAutomationConnection connection, int userId) argument
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java2183 public void removeTextChangedListener(TextWatcher watcher) { argument
2185 super.removeTextChangedListener(watcher);
2208 // view. If there are, don't do anything in the text watcher.
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java2819 // ask watcher if this is allowed
8872 + " at watcher's request");
12404 IInstrumentationWatcher watcher, IUiAutomationConnection uiAutomationConnection,
12426 reportStartInstrumentationFailure(watcher, className,
12431 reportStartInstrumentationFailure(watcher, className,
12446 reportStartInstrumentationFailure(watcher, className, msg);
12458 app.instrumentationWatcher = watcher;
12472 * @param watcher The IInstrumentationWatcher. Null if there isn't one.
12476 private void reportStartInstrumentationFailure(IInstrumentationWatcher watcher, argument
12480 if (watcher !
12402 startInstrumentation(ComponentName className, String profileFile, int flags, Bundle arguments, IInstrumentationWatcher watcher, IUiAutomationConnection uiAutomationConnection, int userId) argument
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java5803 public int watchRotation(IRotationWatcher watcher) { argument
5804 final IBinder watcherBinder = watcher.asBinder();
5824 watcher.asBinder().linkToDeath(dr, 0);
5825 mRotationWatchers.add(watcher);
5835 public void removeRotationWatcher(IRotationWatcher watcher) { argument
5836 final IBinder watcherBinder = watcher.asBinder();

Completed in 4633 milliseconds