Home | History | Annotate | Download | only in impl

Lines Matching refs:query

224    *       <li>When the dialpad is visible with an empty query, close the search UI.
225 * <li>When the dialpad is visible with a non-empty query, hide the dialpad.
226 * <li>When the regular search UI is visible with an empty query, close the search UI.
227 * <li>When the regular search UI is visible with a non-empty query, hide the keyboard.
263 LogUtil.i("MainSearchController.onBackPressed", "Dialpad visible with query");
358 private void openSearch(Optional<String> query) {
361 toolbar.expand(/* animate=*/ true, query);
382 query.isPresent() ? query.get() : "", CallInitiationType.Type.REGULAR_SEARCH);
395 public void onSearchQueryUpdated(String query) {
398 fragment.setQuery(query, CallInitiationType.Type.REGULAR_SEARCH);
403 public void onDialpadQueryChanged(String query) {
404 query = SmartDialNameMatcher.normalizeNumber(/* context = */ mainActivity, query);
407 fragment.setQuery(query, CallInitiationType.Type.DIALPAD);
409 getDialpadFragment().process_quote_emergency_unquote(query);