Home
last modified time | relevance | path

Searched refs:onTextChanged (Results 1 – 6 of 6) sorted by relevance

/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
DCustomNumberPicker.java69 public void onTextChanged(CharSequence s, int start, int before, int count) { in initEditText()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DTextViewTest.java223 … verify(mockTextWatcher).onTextChanged(NEW_TEXT, 0, INITIAL_TEXT.length(), NEW_TEXT.length()); in whenSettingText_ShouldFireOnTextChangedWithCorrectArguments()
263 …verify(mockTextWatcher).onTextChanged(INITIAL_TEXT + NEW_TEXT, 0, INITIAL_TEXT.length(), INITIAL_T… in whenAppendingText_ShouldFireOnTextChangedWithCorrectArguments()
416 public void onTextChanged(CharSequence s, int start, int before, int count) { in onTextChanged() method in TextViewTest.MockTextWatcher
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DApiPrompt.java130 public void onTextChanged(CharSequence s, int start, int before, int count) { in onTextChanged() method in ApiPrompt.ValueWatcher
DScriptEditor.java449 public void onTextChanged(CharSequence s, int start, int before, int count) { in onTextChanged() method in ScriptEditor.ContentTextWatcher
/external/skia/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/
DStateAdapter.java167 public void onTextChanged(CharSequence s, int start, int before, int cnt) { in populateView()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowTextView.java124 watcher.onTextChanged(text, 0, oldValue.length(), text.length()); in sendOnTextChanged()