Home
last modified time | relevance | path

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

/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
DCustomNumberPicker.java79 public void beforeTextChanged(CharSequence s, int start, int count, int after) {} in initEditText()
/external/robolectric/v1/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/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DApiPrompt.java126 public void beforeTextChanged(CharSequence s, int start, int before, int count) { in beforeTextChanged() method in ApiPrompt.ValueWatcher
DScriptEditor.java458 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() method in ScriptEditor.ContentTextWatcher
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowTextViewTest.java241 …verify(mockTextWatcher).beforeTextChanged(INITIAL_TEXT, 0, INITIAL_TEXT.length(), NEW_TEXT.length(… in whenSettingText_ShouldFireBeforeTextChangedWithCorrectArguments()
283 …verify(mockTextWatcher).beforeTextChanged(eq(INITIAL_TEXT), eq(0), eq(INITIAL_TEXT.length()), eq(I… in whenAppendingText_ShouldFireBeforeTextChangedWithCorrectArguments()
528 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() method in ShadowTextViewTest.MockTextWatcher
/external/skia/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/
DStateAdapter.java162 public void beforeTextChanged(CharSequence s, int start, int cnt, in populateView()
/external/skqp/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/
DStateAdapter.java162 public void beforeTextChanged(CharSequence s, int start, int cnt, in populateView()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowTextView.java130 watcher.beforeTextChanged(this.text, 0, this.text.length(), newValue.length()); in sendBeforeTextChanged()