Home
last modified time | relevance | path

Searched refs:beforeTextChanged (Results 1 – 3 of 3) sorted by relevance

/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DTextViewTest.java212 …verify(mockTextWatcher).beforeTextChanged(INITIAL_TEXT, 0, INITIAL_TEXT.length(), NEW_TEXT.length(… in whenSettingText_ShouldFireBeforeTextChangedWithCorrectArguments()
252 …verify(mockTextWatcher).beforeTextChanged(INITIAL_TEXT, 0, INITIAL_TEXT.length(), INITIAL_TEXT.len… in whenAppendingText_ShouldFireBeforeTextChangedWithCorrectArguments()
411 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() method in TextViewTest.MockTextWatcher
/external/chromium_org/chrome/android/shell/java/src/org/chromium/chrome/shell/omnibox/
DSuggestionPopup.java163 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() method in SuggestionPopup
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowTextView.java130 watcher.beforeTextChanged(this.text, 0, this.text.length(), newValue.length()); in sendBeforeTextChanged()