Searched defs:completions (Results 1 - 7 of 7) 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.java326 * The completions that were last provided by the served view.
884 public void displayCompletions(View view, CompletionInfo[] completions) { argument
892 mCompletions = 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.java200 * {@link #onDisplayCompletions(CompletionInfo[])} to show completions
521 public void displayCompletions(CompletionInfo[] completions) { argument
525 mCurCompletions = completions;
526 onDisplayCompletions(completions);
930 CompletionInfo[] completions = mCurCompletions;
943 if (completions != null) {
944 mCurCompletions = completions;
945 onDisplayCompletions(completions);
1862 * completions shown by the application.
1866 public void onDisplayCompletions(CompletionInfo[] completions) { argument
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DSearchFragment.java559 * Displays the completions shown by the IME. An application may provide
560 * a list of query completions that the system will show in the IME.
562 * @param completions A list of completions to show in the IME. Setting to
565 public void displayCompletions(List<String> completions) { argument
566 mSearchBar.displayCompletions(completions);
570 * Displays the completions shown by the IME. An application may provide
571 * a list of query completions that the system will show in the IME.
573 * @param completions A list of completions t
576 displayCompletions(CompletionInfo[] completions) argument
[all...]
H A DSearchSupportFragment.java556 * Displays the completions shown by the IME. An application may provide
557 * a list of query completions that the system will show in the IME.
559 * @param completions A list of completions to show in the IME. Setting to
562 public void displayCompletions(List<String> completions) { argument
563 mSearchBar.displayCompletions(completions);
567 * Displays the completions shown by the IME. An application may provide
568 * a list of query completions that the system will show in the IME.
570 * @param completions A list of completions t
573 displayCompletions(CompletionInfo[] completions) argument
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DSearchBar.java453 * @param completions list of completions shown in the IME, can be null or empty to clear them
455 public void displayCompletions(List<String> completions) { argument
457 if (null != completions) {
458 for (String completion : completions) {
469 * @param completions list of completions shown in the IME, can be null or empty to clear them
471 public void displayCompletions(CompletionInfo[] completions) { argument
472 mInputMethodManager.displayCompletions(mSearchTextEditor, completions);

Completed in 153 milliseconds