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

1 2 3 4

  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
SearchViewBindingAdapter.java 34 @BindingAdapter(value = {"android:onQueryTextSubmit", "android:onQueryTextChange"},
37 final OnQueryTextChange change) {
53 public boolean onQueryTextChange(String newText) {
55 return change.onQueryTextChange(newText);
102 public interface OnQueryTextChange {
103 boolean onQueryTextChange(String newText);
  /frameworks/support/compat/java/android/support/v4/widget/
SearchViewCompat.java 143 public boolean onQueryTextChange(String newText) {
144 return listener.onQueryTextChange(newText);
160 public boolean onQueryTextChange(String newText) {
192 boolean onQueryTextChange(String newText);
  /cts/tests/tests/widget/src/android/widget/cts/
SearchView_CursorTest.java 78 public boolean onQueryTextChange(String s) {
174 when(mockQueryTextListener.onQueryTextChange(anyString())).thenCallRealMethod();
184 verify(mockQueryTextListener, times(1)).onQueryTextChange("Bon");
187 verify(mockQueryTextListener, times(1)).onQueryTextChange("Di");
198 when(mockQueryTextListener.onQueryTextChange(anyString())).thenCallRealMethod();
212 verify(mockQueryTextListener, times(1)).onQueryTextChange("Di");
SearchViewTest.java 212 verify(mockQueryTextListener, times(1)).onQueryTextChange("alpha");
219 verify(mockQueryTextListener, times(1)).onQueryTextChange("beta");
226 verify(mockQueryTextListener, times(1)).onQueryTextChange("gamma");
  /frameworks/support/v7/appcompat/tests/src/android/support/v7/widget/
SearchView_CursorTest.java 76 public boolean onQueryTextChange(String s) {
154 when(mockQueryTextListener.onQueryTextChange(anyString())).thenCallRealMethod();
164 verify(mockQueryTextListener, times(1)).onQueryTextChange("Bon");
167 verify(mockQueryTextListener, times(1)).onQueryTextChange("Di");
178 when(mockQueryTextListener.onQueryTextChange(anyString())).thenCallRealMethod();
200 verify(mockQueryTextListener, times(1)).onQueryTextChange("Di");
SearchViewTest.java 247 verify(mockQueryTextListener, times(1)).onQueryTextChange("alpha");
254 verify(mockQueryTextListener, times(1)).onQueryTextChange("beta");
261 verify(mockQueryTextListener, times(1)).onQueryTextChange("gamma");
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-SearchView/src/main/src/com/example/android/actionbarcompat/searchview/
SearchActivity.java 114 public boolean onQueryTextChange(String s) {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
SearchViewFilterMode.java 66 public boolean onQueryTextChange(String newText) {
SearchViewActionBar.java 97 public boolean onQueryTextChange(String newText) {
WindowFocusObserver.java 83 public boolean onQueryTextChange(String newText) {
ContentBrowserActivity.java 243 public boolean onQueryTextChange(String newText) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarUsage.java 83 public boolean onQueryTextChange(String newText) {
LoaderCursor.java 127 public boolean onQueryTextChange(String newText) {
LoaderRetained.java 132 public boolean onQueryTextChange(String newText) {
  /packages/apps/Settings/src/com/android/settings/search2/
SearchFragment.java 209 public boolean onQueryTextChange(String query) {
318 onQueryTextChange(queryString);
347 onQueryTextChange(query);
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/app/
ActionBarUsage.java 97 public boolean onQueryTextChange(String newText) {
  /packages/apps/Settings/tests/robotests/src/com/android/settings/search2/
SearchFragmentTest.java 159 fragment.onQueryTextChange(testQuery);
195 fragment.onQueryTextChange("");
248 fragment.onQueryTextChange("non-empty");
275 fragment.onQueryTextChange("");
299 fragment.onQueryTextChange("non-empty");
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
SearchFragment.java 74 public boolean onQueryTextChange(String newQuery) {
  /developers/samples/android/content/LoaderCursor/src/com/example/android/content/loadercursor/
CursorLoaderListFragment.java 134 public boolean onQueryTextChange(String newText) {
  /frameworks/support/samples/Support13Demos/src/com/example/android/supportv13/app/
CursorFragment.java 85 public boolean onQueryTextChange(String newText) {
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderCursorSupport.java 103 public boolean onQueryTextChange(String newText) {
LoaderRetainedSupport.java 106 public boolean onQueryTextChange(String newText) {
  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
SearchFragment.java 52 public boolean onQueryTextChange(String newQuery) {
SearchSupportFragment.java 55 public boolean onQueryTextChange(String newQuery) {
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
SearchFragment.java 74 public boolean onQueryTextChange(String newQuery) {

Completed in 2616 milliseconds

1 2 3 4