Lines Matching refs:actionKey

1025         SearchableInfo.ActionKeyInfo actionKey = mSearchable.findActionKey(keyCode);
1026 if ((actionKey != null) && (actionKey.getQueryActionMsg() != null)) {
1027 launchQuerySearch(keyCode, actionKey.getQueryActionMsg(), mSearchSrcTextView.getText()
1073 SearchableInfo.ActionKeyInfo actionKey = mSearchable.findActionKey(keyCode);
1074 if ((actionKey != null) && (actionKey.getQueryActionMsg() != null)) {
1075 launchQuerySearch(keyCode, actionKey.getQueryActionMsg(), mSearchSrcTextView
1132 SearchableInfo.ActionKeyInfo actionKey = mSearchable.findActionKey(keyCode);
1133 if ((actionKey != null)
1134 && ((actionKey.getSuggestActionMsg() != null) || (actionKey
1141 final String actionMsg = getActionKeyMessage(c, actionKey);
1158 * @param actionKey The actionkey record being examined
1163 private static String getActionKeyMessage(Cursor c, SearchableInfo.ActionKeyInfo actionKey) {
1166 final String column = actionKey.getSuggestActionMsgColumn();
1174 result = actionKey.getSuggestActionMsg();
1476 private boolean onItemClicked(int position, int actionKey, String actionMsg) {
1556 * @param actionKey The key code of the action key that was pressed,
1562 private boolean launchSuggestion(int position, int actionKey, String actionMsg) {
1566 Intent intent = createIntentFromSuggestion(c, actionKey, actionMsg);
1601 private void launchQuerySearch(int actionKey, String actionMsg, String query) {
1603 Intent intent = createIntent(action, null, null, query, actionKey, actionMsg);
1614 * @param actionKey The key code of the action key that was pressed,
1623 int actionKey, String actionMsg) {
1643 if (actionKey != KeyEvent.KEYCODE_UNKNOWN) {
1644 intent.putExtra(SearchManager.ACTION_KEY, actionKey);
1734 * @param actionKey The key code of the action key that was pressed,
1740 private Intent createIntentFromSuggestion(Cursor c, int actionKey, String actionMsg) {
1769 return createIntent(action, dataUri, extraData, query, actionKey, actionMsg);