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

1 2 3 4 5 6 7 8 91011>>

  /developers/build/prebuilts/gradle/NfcProvisioning/Application/src/main/java/com/example/android/nfcprovisioning/
TextWatcherWrapper.java 42 public void onTextChanged(CharSequence s, int start, int before, int count) {
48 mListener.onTextChanged(mId, s.toString());
52 void onTextChanged(int id, String s);
  /developers/samples/android/admin/NfcProvisioning/Application/src/main/java/com/example/android/nfcprovisioning/
TextWatcherWrapper.java 42 public void onTextChanged(CharSequence s, int start, int before, int count) {
48 mListener.onTextChanged(mId, s.toString());
52 void onTextChanged(int id, String s);
  /development/samples/browseable/NfcProvisioning/src/com.example.android.nfcprovisioning/
TextWatcherWrapper.java 42 public void onTextChanged(CharSequence s, int start, int before, int count) {
48 mListener.onTextChanged(mId, s.toString());
52 public void onTextChanged(int id, String s);
  /frameworks/base/core/java/android/text/
TextWatcher.java 40 public void onTextChanged(CharSequence s, int start, int before, int count);
52 * you can use {@link Spannable#setSpan} in {@link #onTextChanged}
  /developers/build/prebuilts/gradle/AppRestrictionEnforcer/Application/src/main/java/com/example/android/apprestrictionenforcer/
EasyTextWatcher.java 24 * {@link TextWatcher#onTextChanged(CharSequence, int, int, int)} with empty bodies.
34 public void onTextChanged(CharSequence s, int start, int before, int count) {
  /developers/samples/android/admin/AppRestrictionEnforcer/Application/src/main/java/com/example/android/apprestrictionenforcer/
EasyTextWatcher.java 24 * {@link TextWatcher#onTextChanged(CharSequence, int, int, int)} with empty bodies.
34 public void onTextChanged(CharSequence s, int start, int before, int count) {
  /development/samples/browseable/AppRestrictionEnforcer/src/com.example.android.apprestrictionenforcer/
EasyTextWatcher.java 24 * {@link TextWatcher#onTextChanged(CharSequence, int, int, int)} with empty bodies.
34 public void onTextChanged(CharSequence s, int start, int before, int count) {
  /packages/apps/DeskClock/src/com/android/deskclock/widget/
AutoSizingTextClock.java 51 protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {
52 super.onTextChanged(text, start, lengthBefore, lengthAfter);
57 mTextSizeHelper.onTextChanged(lengthBefore, lengthAfter);
AutoSizingTextView.java 50 protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {
51 super.onTextChanged(text, start, lengthBefore, lengthAfter);
53 mTextSizeHelper.onTextChanged(lengthBefore, lengthAfter);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
PhoneNumberWatcherTest.java 39 textWatcher.onTextChanged(number, 0, 0, number.length());
50 textWatcher.onTextChanged(number, len, 0, 1);
67 textWatcher.onTextChanged(number, number.length() - 1, 1, 0);
76 textWatcher.onTextChanged(number, number.length(), 4, 0);
93 textWatcher.onTextChanged(number, 3, 0, 1);
104 textWatcher.onTextChanged(number, 7, 0, 4);
122 textWatcher.onTextChanged(number, 9, 0, 2);
135 textWatcher.onTextChanged(number, 4, 1, 0);
148 textWatcher.onTextChanged(number, 8, 0, 1);
166 textWatcher.onTextChanged(number, 9, 0, 2)
    [all...]
  /frameworks/support/emoji/core/src/androidTest/java/androidx/emoji/widget/
EmojiTextWatcherTest.java 62 mTextWatcher.onTextChanged(testString, 0, 0, 1);
74 mTextWatcher.onTextChanged(testString, 0, 0, 1);
86 mTextWatcher.onTextChanged(testString, 0, 0, 1);
100 mTextWatcher.onTextChanged(testString, 0, 0, 1);
107 mTextWatcher.onTextChanged(testString, 0, 0, 1);
118 mTextWatcher.onTextChanged(testString, 0, 0, 1);
  /cts/tests/autofillservice/src/android/autofillservice/cts/
AntiTrimmerTextWatcher.java 42 public void onTextChanged(CharSequence s, int start, int before, int count) {
MultipleTimesTextWatcher.java 55 public void onTextChanged(CharSequence s, int start, int before, int count) {
56 Log.v(TAG, "onTextChanged(" + mLatch.getCount() + "): " + mName + " = " + s);
  /packages/apps/Dialer/java/com/android/dialer/widget/
ResizingTextEditText.java 41 protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {
42 super.onTextChanged(text, start, lengthBefore, lengthAfter);
ResizingTextTextView.java 41 protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {
42 super.onTextChanged(text, start, lengthBefore, lengthAfter);
  /packages/apps/PhoneCommon/src/com/android/phone/common/widget/
ResizingTextEditText.java 45 protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {
46 super.onTextChanged(text, start, lengthBefore, lengthAfter);
ResizingTextTextView.java 44 protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {
45 super.onTextChanged(text, start, lengthBefore, lengthAfter);
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
CallbackBindingObject.java 66 void onTextChanged(CharSequence s, int start, int before, int count);
69 void onTextChanged();
  /developers/build/prebuilts/gradle/CardEmulation/Application/src/main/java/com/example/android/cardemulation/
CardEmulationFragment.java 60 public void onTextChanged(CharSequence s, int start, int before, int count) {
  /developers/samples/android/connectivity/nfc/CardEmulation/Application/src/main/java/com/example/android/cardemulation/
CardEmulationFragment.java 60 public void onTextChanged(CharSequence s, int start, int before, int count) {
  /development/samples/browseable/CardEmulation/src/com.example.android.cardemulation/
CardEmulationFragment.java 60 public void onTextChanged(CharSequence s, int start, int before, int count) {
  /frameworks/base/cmds/statsd/tools/loadtest/src/com/android/statsd/loadtest/
NumericalWatcher.java 60 final public void onTextChanged(CharSequence s, int start, int before, int count) {}
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/
MessageComposerFragment.java 81 public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {}
104 public void onTextChanged(CharSequence s, int start, int before, int count) {}
  /developers/build/prebuilts/gradle/ActiveNotifications/Application/src/main/java/com/example/android/common/logger/
LogFragment.java 96 public void onTextChanged(CharSequence s, int start, int before, int count) {}
  /developers/build/prebuilts/gradle/ActivityInstrumentation/Application/src/main/java/com/example/android/common/logger/
LogFragment.java 96 public void onTextChanged(CharSequence s, int start, int before, int count) {}

Completed in 190 milliseconds

1 2 3 4 5 6 7 8 91011>>