Home | History | Annotate | Download | only in search

Lines Matching refs:query

58  * is free to start typing their query.
61 * the query if the user has entered text.
73 // Search Query IDs
76 // Saved Query IDs
217 public boolean onQueryTextChange(String query) {
218 if (TextUtils.equals(query, mQuery)) {
222 final boolean isEmptyQuery = TextUtils.isEmpty(query);
224 // Hide no-results-view when the new query is not a super-string of the previous
227 && query.length() < mQuery.length()) {
232 mQuery = query;
234 // If indexing is not finished, register the query text, but don't search.
254 public boolean onQueryTextSubmit(String query) {
255 // Save submitted query.
331 public void onSavedQueryClicked(SavedQueryViewHolder vh, CharSequence query) {
332 final String queryString = query.toString();
353 final String query = mQuery;
355 onQueryTextChange(query);