HomeSort by relevance Sort by last modified time
    Searched refs:suggestions (Results 26 - 50 of 108) sorted by null

12 3 4 5

  /packages/apps/UnifiedEmail/src/com/android/mail/ui/settings/
GeneralPrefsFragment.java 169 final SuggestionsProvider suggestions = local
171 suggestions.clearHistory();
172 suggestions.cleanup();
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
StringUtils.java 179 public static void removeDupes(@Nonnull final ArrayList<String> suggestions) {
180 if (suggestions.size() < 2) {
184 // Don't cache suggestions.size(), since we may be removing items
185 while (i < suggestions.size()) {
186 final String cur = suggestions.get(i);
189 final String previous = suggestions.get(j);
191 suggestions.remove(i);
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
SoftKeyboard.java 570 public void setSuggestions(List<String> suggestions, boolean completions,
572 if (suggestions != null && suggestions.size() > 0) {
578 mCandidateView.setSuggestions(suggestions, completions, typedWordValid);
691 // If we were generating candidate suggestions for the current
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/suggestions/
SuggestionStripLayoutHelperTests.java 17 package com.android.inputmethod.latin.suggestions;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
InputView.java 28 import com.android.inputmethod.latin.suggestions.MoreSuggestionsView;
29 import com.android.inputmethod.latin.suggestions.SuggestionStripView;
BinaryDictionary.java 119 * @param useFullEditDistance whether to use the full edit distance in suggestions
138 * @param useFullEditDistance whether to use the full edit distance in suggestions
321 final ArrayList<SuggestedWordInfo> suggestions = new ArrayList<>(); local
330 suggestions.add(new SuggestedWordInfo(
340 return suggestions;
ExpandableBinaryDictionary.java 442 final ArrayList<SuggestedWordInfo> suggestions = local
451 return suggestions;
LatinIME.java 82 import com.android.inputmethod.latin.suggestions.SuggestionStripView;
83 import com.android.inputmethod.latin.suggestions.SuggestionStripViewAccessor;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
InputLogic.java 55 import com.android.inputmethod.latin.suggestions.SuggestionStripViewAccessor;
116 * @param dictionaryFacilitator facilitator for getting suggestions and updating user history
193 // suggestionsSpan will be added. This will allow resuming on the same suggestions
332 // That's going to be predictions (or punctuation suggestions), so INPUT_STYLE_NONE.
388 // Another option would be to send suggestions each time we set the composing
391 // Also, we're posting a resume suggestions message, and this will update the
392 // suggestions strip in a few milliseconds, so if we cleared the suggestion strip here
394 // it here, which means we'll keep outdated suggestions for a split second but the
551 * onUpdateBatchInput method twice without having recomputed suggestions yet, or having
552 * received new suggestions generated from not-yet-trimmed input pointers. In this case, th
1677 final ArrayList<String> suggestions = new ArrayList<>(); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
GeneralPreferences.java 409 SearchRecentSuggestions suggestions = new SearchRecentSuggestions(getActivity(), local
412 suggestions.clearHistory();
SearchActivity.java 214 SearchRecentSuggestions suggestions = new SearchRecentSuggestions(this, local
217 suggestions.saveRecentQuery(searchQuery, null);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
SuggestionStripView.java 17 package com.android.inputmethod.latin.suggestions;
53 import com.android.inputmethod.latin.suggestions.MoreSuggestionsView.MoreSuggestionsListener;
126 * Construct a {@link SuggestionStripView} for showing suggestions to be picked by the user.
400 // Ignore any touch event while more suggestions panel hasn't been shown.
483 // This may be overriden by showing suggestions later, if applicable.
MoreSuggestions.java 17 package com.android.inputmethod.latin.suggestions;
SuggestionStripLayoutHelper.java 17 package com.android.inputmethod.latin.suggestions;
152 // Assuming there are at least three suggestions. Also, note that the suggestions are
339 * Layout suggestions to the suggestions strip. And returns the start index of more
340 * suggestions.
342 * @param suggestedWords suggestions to be shown in the suggestions strip.
343 * @param stripView the suggestions strip view.
345 * @return the start index of more suggestions
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
ContactAggregator2Test.java     [all...]
ContactAggregatorTest.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorBaseFragment.java 268 * Adapter for aggregation suggestions displayed in a PopupWindow when
278 AggregationSuggestionView.Listener listener, List<Suggestion> suggestions) {
282 mSuggestions = suggestions;
    [all...]
  /frameworks/base/docs/html/guide/
guide_toc.cs 285 <li><a href="<?cs var:toroot ?>guide/topics/search/adding-recent-query-suggestions.html">Adding Recent Query Suggestions</a></li>
286 <li><a href="<?cs var:toroot ?>guide/topics/search/adding-custom-suggestions.html">Adding Custom Suggestions</a></li>
  /frameworks/base/core/java/android/widget/
Editor.java 631 // One is the true focus lost where suggestions pop-up (if any) should be dismissed, and the
632 // other is an side effect of showing the suggestions pop-up itself. We use isShowingUp()
2893 String[] suggestions = suggestionSpan.getSuggestions(); local
3076 String[] suggestions = suggestionInfo.suggestionSpan.getSuggestions(); local
    [all...]
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar 
  /build/tools/droiddoc/templates-ndk/assets/js/
docs.js 35 // load json file for JD doc search suggestions
37 // load json file for Android API search suggestions
39 // load json files for Google services API suggestions
    [all...]
  /build/tools/droiddoc/templates-sdk-dev/assets/js/
docs.js 35 // load json file for JD doc search suggestions
37 // load json file for Android API search suggestions
39 // load json files for Google services API suggestions
    [all...]
  /frameworks/base/services/core/java/com/android/server/
InputMethodManagerService.java 1838 final String[] suggestions = span.getSuggestions(); local
    [all...]
  /build/tools/droiddoc/templates-sac/assets/js/
docs.js 20 // load json file for Android API search suggestions
22 // load json files for Google services API suggestions
61 // set search's onkeyup handler here so we can show suggestions
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.2.0/
lint-checks-22.2.0.jar 

Completed in 661 milliseconds

12 3 4 5