Searched defs:completions (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSession.java77 * input method about the completions it has available. This can be used
81 * @param completions Array of text completions that are available, starting with
82 * the best. If this array is null, any existing completions will be
85 public void displayCompletions(CompletionInfo[] completions); argument
H A DInputMethodManager.java261 * The completions that were last provided by the served view.
632 public void displayCompletions(View view, CompletionInfo[] completions) { argument
640 mCompletions = completions;
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodSessionWrapper.java122 public void displayCompletions(CompletionInfo[] completions) { argument
124 DO_DISPLAY_COMPLETIONS, completions));
H A DInputMethodService.java179 * {@link #onDisplayCompletions(CompletionInfo[])} to show completions
417 public void displayCompletions(CompletionInfo[] completions) { argument
421 mCurCompletions = completions;
422 onDisplayCompletions(completions);
645 CompletionInfo[] completions = mCurCompletions;
658 if (completions != null) {
659 mCurCompletions = completions;
660 onDisplayCompletions(completions);
1473 * completions shown by the application.
1477 public void onDisplayCompletions(CompletionInfo[] completions) { argument
[all...]

Completed in 67 milliseconds