HomeSort by relevance Sort by last modified time
    Searched defs:suggestion (Results 1 - 7 of 7) sorted by null

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ShortcutRepositoryImplLog.java 269 private boolean shouldRefresh(Suggestion suggestion) {
270 return mRefresher.shouldRefresh(suggestion.getSuggestionSource(),
271 suggestion.getShortcutId());
441 private ContentValues makeShortcutRow(Suggestion suggestion) {
442 String intentAction = suggestion.getSuggestionIntentAction();
443 String intentData = suggestion.getSuggestionIntentDataString();
444 String intentQuery = suggestion.getSuggestionQuery();
445 String intentExtraData = suggestion.getSuggestionIntentExtraData()
    [all...]
ShortcutsProvider.java 164 SuggestionData suggestion = new SuggestionData(source); local
165 suggestion.setFormat(format);
166 suggestion.setText1(text1);
167 suggestion.setText2(text2);
168 suggestion.setText2Url(text2Url);
169 suggestion.setIcon1(icon1);
170 suggestion.setIcon2(icon2);
171 suggestion.setShortcutId(shortcutId);
172 suggestion.setSpinnerWhileRefreshing(spinnerWhileRefreshing);
173 suggestion.setIntentAction(intentAction)
    [all...]
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
CandidateView.java 182 String suggestion = mSuggestions.get(i); local
183 float textWidth = paint.measureText(suggestion);
206 canvas.drawText(suggestion, x + X_GAP, y, paint);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
GlobalSearchSupport.java 383 SearchSuggestion suggestion = suggestionMap.get(contactId); local
384 if (suggestion == null) {
385 suggestion = new SearchSuggestion(contactId);
386 suggestionList.add(suggestion);
387 suggestionMap.put(contactId, suggestion);
391 suggestion.text1 = c.getString(SearchSuggestionQuery.DISPLAY_NAME);
394 suggestion.presence = c.getInt(SearchSuggestionQuery.PRESENCE_STATUS);
399 suggestion.titleIsName = true;
401 if (isSuperPrimary || suggestion.organization == null) {
402 suggestion.organization = c.getString(SearchSuggestionQuery.ORGANIZATION)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
CandidateView.java 138 // Slightly reluctant to scroll to be able to easily choose the suggestion
236 CharSequence suggestion = mSuggestions.get(i); local
237 if (suggestion == null) continue;
238 final int wordLength = suggestion.length();
247 // HACK: even if i == 0, we use mColorOther when this suggestion's length is 1 and
253 float textWidth = paint.measureText(suggestion, 0, wordLength);
268 mSelectedString = suggestion;
273 canvas.drawText(suggestion, 0, wordLength, x + wordWidth / 2, y, paint);
321 for (CharSequence suggestion : suggestions) {
322 mSuggestions.add(suggestion);
    [all...]
LatinIME.java 195 // Bigram Suggestion is disabled in this version.
223 // Indicates whether the suggestion strip is to be on in landscape
1927 TextEntryState.acceptedSuggestion(mComposing.toString(), suggestion); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/
VoiceInput.java 73 // Dummy word suggestion which means "delete current word"
428 public void logTextModifiedByChooseSuggestion(String suggestion, int index,
433 // in suggestion and wordToBeReplaced.
434 mLogger.textModifiedByChooseSuggestion(suggestion.length(), wordToBeReplaced.length(),
435 index, wordToBeReplaced, suggestion); local

Completed in 924 milliseconds