Searched defs:completions (Results 1 - 4 of 4) 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.java284 * The completions that were last provided by the served view.
709 public void displayCompletions(View view, CompletionInfo[] completions) { argument
717 mCompletions = completions;
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodSessionWrapper.java149 public void displayCompletions(CompletionInfo[] completions) { argument
151 DO_DISPLAY_COMPLETIONS, completions));
H A DInputMethodService.java183 * {@link #onDisplayCompletions(CompletionInfo[])} to show completions
459 public void displayCompletions(CompletionInfo[] completions) { argument
463 mCurCompletions = completions;
464 onDisplayCompletions(completions);
722 CompletionInfo[] completions = mCurCompletions;
735 if (completions != null) {
736 mCurCompletions = completions;
737 onDisplayCompletions(completions);
1584 * completions shown by the application.
1588 public void onDisplayCompletions(CompletionInfo[] completions) { argument
[all...]

Completed in 53 milliseconds