Searched refs:completions (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSession.java86 * input method about the completions it has available. This can be used
90 * @param completions Array of text completions that are available, starting with
91 * the best. If this array is null, any existing completions will be
94 public void displayCompletions(CompletionInfo[] completions); argument
H A DInputMethodManager.java323 * The completions that were last provided by the served view.
855 public void displayCompletions(View view, CompletionInfo[] completions) { argument
863 mCompletions = completions;
/frameworks/base/core/java/com/android/internal/view/
H A DIInputMethodSession.aidl44 void displayCompletions(in CompletionInfo[] completions);
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodSessionWrapper.java158 public void displayCompletions(CompletionInfo[] completions) { argument
160 DO_DISPLAY_COMPLETIONS, completions));
H A DInputMethodService.java197 * {@link #onDisplayCompletions(CompletionInfo[])} to show completions
488 public void displayCompletions(CompletionInfo[] completions) { argument
492 mCurCompletions = completions;
493 onDisplayCompletions(completions);
899 CompletionInfo[] completions = mCurCompletions;
912 if (completions != null) {
913 mCurCompletions = completions;
914 onDisplayCompletions(completions);
1827 * completions shown by the application.
1831 public void onDisplayCompletions(CompletionInfo[] completions) { argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAutoCompleteTextView.java696 * list of completions is dismissed.
697 * @param dismissListener Listener to invoke when completions are dismissed
1236 CompletionInfo[] completions = new CompletionInfo[count];
1243 completions[realCount] = new CompletionInfo(id, realCount,
1251 System.arraycopy(completions, 0, tmp, 0, realCount);
1252 completions = tmp;
1255 imm.displayCompletions(this, completions);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DSearchBar.java430 * @param completions list of completions shown in the IME, can be null or empty to clear them
432 public void displayCompletions(List<String> completions) { argument
434 if (null != completions) {
435 for (String completion : completions) {
446 * @param completions list of completions shown in the IME, can be null or empty to clear them
448 public void displayCompletions(CompletionInfo[] completions) { argument
449 mInputMethodManager.displayCompletions(mSearchTextEditor, completions);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DSearchFragment.java516 * Displays the completions shown by the IME. An application may provide
517 * a list of query completions that the system will show in the IME.
519 * @param completions A list of completions to show in the IME. Setting to
522 public void displayCompletions(List<String> completions) { argument
523 mSearchBar.displayCompletions(completions);
527 * Displays the completions shown by the IME. An application may provide
528 * a list of query completions that the system will show in the IME.
530 * @param completions A list of completions t
533 displayCompletions(CompletionInfo[] completions) argument
[all...]
H A DSearchSupportFragment.java518 * Displays the completions shown by the IME. An application may provide
519 * a list of query completions that the system will show in the IME.
521 * @param completions A list of completions to show in the IME. Setting to
524 public void displayCompletions(List<String> completions) { argument
525 mSearchBar.displayCompletions(completions);
529 * Displays the completions shown by the IME. An application may provide
530 * a list of query completions that the system will show in the IME.
532 * @param completions A list of completions t
535 displayCompletions(CompletionInfo[] completions) argument
[all...]

Completed in 274 milliseconds