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

/frameworks/base/core/java/com/android/internal/os/
H A DBinderInternal.java55 public static void addGcWatcher(Runnable watcher) { argument
57 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.java7601 public void addTextChangedListener(TextWatcher watcher) { argument
7606 mListeners.add(watcher);
7614 public void removeTextChangedListener(TextWatcher watcher) { argument
7616 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.java1757 IInstrumentationWatcher watcher, IUiAutomationConnection uiAutomationConnection) {
1763 mWatcher = watcher;
1755 init(ActivityThread thread, Context instrContext, Context appContext, ComponentName component, IInstrumentationWatcher watcher, IUiAutomationConnection uiAutomationConnection) argument
H A DActivityManagerNative.java1357 IActivityController watcher = IActivityController.Stub.asInterface(
1359 setActivityController(watcher);
3641 int flags, Bundle arguments, IInstrumentationWatcher watcher,
3651 data.writeStrongBinder(watcher != null ? watcher.asBinder() : null);
4098 public void setActivityController(IActivityController watcher) throws RemoteException argument
4103 data.writeStrongBinder(watcher != null ? watcher.asBinder() : null);
3640 startInstrumentation(ComponentName className, String profileFile, int flags, Bundle arguments, IInstrumentationWatcher watcher, IUiAutomationConnection connection, int userId, String instructionSet) argument
H A DIActivityManager.java187 int flags, Bundle arguments, IInstrumentationWatcher watcher,
258 public void setActivityController(IActivityController watcher) argument
186 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.java2360 public void removeTextChangedListener(TextWatcher watcher) { argument
2362 super.removeTextChangedListener(watcher);
2391 // view. If there are, don't do anything in the text watcher.
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java488 IRotationWatcher watcher; field in class:WindowManagerService.RotationWatcher
491 watcher = w;
6556 mRotationWatchers.get(i).watcher.onRotationChanged(rotation);
6584 public int watchRotation(IRotationWatcher watcher) { argument
6585 final IBinder watcherBinder = watcher.asBinder();
6591 if (watcherBinder == mRotationWatchers.get(i).watcher.asBinder()) {
6593 IBinder binder = removed.watcher.asBinder();
6606 watcher.asBinder().linkToDeath(dr, 0);
6607 mRotationWatchers.add(new RotationWatcher(watcher, dr));
6617 public void removeRotationWatcher(IRotationWatcher watcher) { argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java4301 // ask watcher if this is allowed
12041 + " at watcher's request");
16444 IInstrumentationWatcher watcher, IUiAutomationConnection uiAutomationConnection,
16466 reportStartInstrumentationFailure(watcher, className,
16471 reportStartInstrumentationFailure(watcher, className,
16486 reportStartInstrumentationFailure(watcher, className, msg);
16499 app.instrumentationWatcher = watcher;
16513 * @param watcher The IInstrumentationWatcher. Null if there isn't one.
16517 private void reportStartInstrumentationFailure(IInstrumentationWatcher watcher, argument
16521 if (watcher !
16442 startInstrumentation(ComponentName className, String profileFile, int flags, Bundle arguments, IInstrumentationWatcher watcher, IUiAutomationConnection uiAutomationConnection, int userId, String abiOverride) argument
[all...]

Completed in 380 milliseconds