HomeSort by relevance Sort by last modified time
    Searched refs:suggestion (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionNonFormatter.java 30 public CharSequence formatSuggestion(String query, String suggestion) {
31 return suggestion;
ListSuggestionCursorNoDuplicates.java 40 public boolean add(Suggestion suggestion) {
41 String key = SuggestionUtils.getSuggestionKey(suggestion);
43 return super.add(suggestion);
SuggestionUtils.java 34 public static Intent getSuggestionIntent(SuggestionCursor suggestion, Bundle appSearchData) {
35 String action = suggestion.getSuggestionIntentAction();
37 String data = suggestion.getSuggestionIntentDataString();
38 String query = suggestion.getSuggestionQuery();
39 String userQuery = suggestion.getUserQuery();
40 String extraData = suggestion.getSuggestionIntentExtraData();
62 intent.setComponent(suggestion.getSuggestionIntentComponent());
67 * Gets a unique key that identifies a suggestion. This is used to avoid
70 public static String getSuggestionKey(Suggestion suggestion) {
    [all...]
ListSuggestionCursor.java 48 public ListSuggestionCursor(String userQuery, Suggestion...suggestions) {
50 for (Suggestion suggestion : suggestions) {
51 add(suggestion);
61 * Adds a suggestion from another suggestion cursor.
63 * @return {@code true} if the suggestion was added.
65 public boolean add(Suggestion suggestion) {
66 mSuggestions.add(new Entry(suggestion));
    [all...]
LevenshteinSuggestionFormatter.java 28 * Suggestion formatter using the Levenshtein distance (minumum edit distance) to calculate the
40 public Spanned formatSuggestion(String query, String suggestion) {
41 if (DBG) Log.d(TAG, "formatSuggestion('" + query + "', '" + suggestion + "')");
44 final Token[] suggestionTokens = tokenize(suggestion);
51 final SpannableString str = new SpannableString(suggestion);
76 * @param target List of target tokens (i.e. suggestion)
SuggestionFormatter.java 22 * Suggestion formatter interface. This is used to bold (or otherwise highlight) portions of a
23 * suggestion which were not a part of the query.
34 * Formats a suggestion for display in the UI.
37 * @param suggestion the suggestion
38 * @return Formatted suggestion text.
40 public abstract CharSequence formatSuggestion(String query, String suggestion);
SearchActivity.java 269 // Close all open suggestion cursors. The query will be redone in onResume()
385 Log.w(TAG, "Invalid suggestion position " + position + ", count = " + count);
400 // Since the intents for suggestions specified by suggestion providers,
407 SuggestionPosition suggestion = getCurrentSuggestions(adapter, id); local
408 if (suggestion == null) return false;
410 if (DBG) Log.d(TAG, "Launching suggestion " + id);
413 // Log suggestion click
414 getLogger().logSuggestionClick(id, suggestion.getCursor(),
418 launchSuggestion(suggestion.getCursor(), suggestion.getPosition())
431 SuggestionPosition suggestion = getCurrentSuggestions(adapter, id); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
AutoCorrectionUtils.java 32 public static boolean suggestionExceedsThreshold(final SuggestedWordInfo suggestion,
34 if (null != suggestion) {
36 if (suggestion.isKindOf(SuggestedWordInfo.KIND_WHITELIST)) {
39 // TODO: return suggestion.isAprapreateForAutoCorrection();
40 if (!suggestion.isAprapreateForAutoCorrection()) {
43 final int autoCorrectionSuggestionScore = suggestion.mScore;
44 // TODO: when the normalized score of the first suggestion is nearly equals to
45 // the normalized score of the second suggestion, behave less aggressive.
47 consideredWord, suggestion.mWord, autoCorrectionSuggestionScore);
49 Log.d(TAG, "Normalized " + consideredWord + "," + suggestion + ",
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
DefaultSuggestionViewFactory.java 22 import com.android.quicksearchbox.Suggestion;
30 * Suggestion view factory for Google suggestions.
64 public View getView(SuggestionCursor suggestion, String userQuery,
67 if (factory.canCreateView(suggestion)) {
68 return factory.getView(suggestion, userQuery, convertView, parent);
71 return mDefaultFactory.getView(suggestion, userQuery, convertView, parent);
75 public String getViewType(Suggestion suggestion) {
77 if (factory.canCreateView(suggestion)) {
78 return factory.getViewType(suggestion);
    [all...]
SuggestionViewFactory.java 19 import com.android.quicksearchbox.Suggestion;
28 * Factory interface for suggestion views.
37 * View types must be unique across all suggestion view factories.
42 * Returns the view type to be used for displaying the given suggestion. This MUST correspond to
45 String getViewType(Suggestion suggestion);
48 * Gets a view corresponding to the current suggestion in the given cursor.
54 * @return A View corresponding to the data within this suggestion.
56 View getView(SuggestionCursor suggestion, String userQuery, View convertView, ViewGroup parent);
59 * Checks whether this factory can create views for the given suggestion
    [all...]
SuggestionView.java 19 import com.android.quicksearchbox.Suggestion;
26 * Set the view's contents based on the given suggestion.
28 void bindAsSuggestion(Suggestion suggestion, String userQuery);
WebSearchSuggestionView.java 21 import com.android.quicksearchbox.Suggestion;
58 public void bindAsSuggestion(Suggestion suggestion, String userQuery) {
59 super.bindAsSuggestion(suggestion, userQuery);
62 suggestion.getSuggestionText1());
64 setIsHistorySuggestion(suggestion.isHistorySuggestion());
97 public boolean canCreateView(Suggestion suggestion) {
98 return suggestion.isWebSearchSuggestion();
SuggestionViewInflater.java 19 import com.android.quicksearchbox.Suggestion;
31 * Suggestion view factory that inflates views from XML.
62 public View getView(SuggestionCursor suggestion, String userQuery,
71 ((SuggestionView) convertView).bindAsSuggestion(suggestion, userQuery);
75 public String getViewType(Suggestion suggestion) {
79 public boolean canCreateView(Suggestion suggestion) {
DefaultSuggestionView.java 21 import com.android.quicksearchbox.Suggestion;
87 public void bindAsSuggestion(Suggestion suggestion, String userQuery) {
88 super.bindAsSuggestion(suggestion, userQuery);
90 CharSequence text1 = formatText(suggestion.getSuggestionText1(), suggestion);
91 CharSequence text2 = suggestion.getSuggestionText2Url();
95 text2 = formatText(suggestion.getSuggestionText2(), suggestion);
109 mAsyncIcon1.set(suggestion.getSuggestionSource(), suggestion.getSuggestionIcon1())
    [all...]
BaseSuggestionView.java 20 import com.android.quicksearchbox.Suggestion;
31 * Base class for suggestion views.
64 public void bindAsSuggestion(Suggestion suggestion, String userQuery) {
74 protected boolean isFromHistory(Suggestion suggestion) {
75 return suggestion.isSuggestionShortcut() || suggestion.isHistorySuggestion();
SuggestionsAdapterBase.java 18 import com.android.quicksearchbox.Suggestion;
131 private String suggestionViewType(Suggestion suggestion) {
132 String viewType = mViewFactory.getViewType(suggestion);
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionView.java 31 import com.android.contacts.editor.AggregationSuggestionEngine.Suggestion;
42 * A view that contains a name, picture and other data for a contact aggregation suggestion.
83 public void bindSuggestion(Suggestion suggestion) {
84 mContactId = suggestion.contactId;
85 mLookupKey = suggestion.lookupKey;
86 mRawContacts = suggestion.rawContacts;
88 if (suggestion.photo != null) {
90 suggestion.photo, 0, suggestion.photo.length))
    [all...]
AggregationSuggestionEngine.java 70 public static final class Suggestion {
376 public List<Suggestion> getSuggestions() {
377 ArrayList<Suggestion> list = Lists.newArrayList();
379 Suggestion suggestion = null; local
385 suggestion = new Suggestion();
386 suggestion.contactId = contactId;
387 suggestion.name = mDataCursor.getString(DataQuery.DISPLAY_NAME);
388 suggestion.lookupKey = mDataCursor.getString(DataQuery.LOOKUP_KEY)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
GlobalSearchSupport.java 255 SearchSuggestion suggestion = new SearchSuggestion(); local
256 suggestion.filter = filter;
259 suggestion.contactId = c.getLong(0);
260 suggestion.lookupKey = c.getString(1);
261 suggestion.photoUri = c.getString(2);
262 suggestion.text1 = c.getString(3);
263 suggestion.presence = c.isNull(4) ? -1 : c.getInt(4);
264 suggestion.lastAccessTime = c.getString(5);
266 suggestion.text2 = shortenSnippet(c.getString(6));
268 cursor.addRow(suggestion.asList(projection))
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MaterialSearchSuggestionsList.java 105 mController.onSearchPerformed(mSuggestions.get(position).suggestion);
132 final String suggestion = c.getString(textIndex); local
134 result.add(new SuggestionItem(suggestion, iconUri));
160 final String suggestion; field in class:MaterialSearchSuggestionsList.SuggestionItem
164 suggestion = s;
212 text.setText(item.suggestion);
214 item.suggestion));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidWordLevelSpellCheckerSession.java 296 for (String suggestion : result.mSuggestions) {
298 builder.append(suggestion);
347 final String suggestion; local
349 suggestion = suggestedWordInfo.mWord.toUpperCase(locale);
351 suggestion = StringUtils.capitalizeFirstCodePoint(
354 suggestion = suggestedWordInfo.mWord;
356 suggestions.add(suggestion);
  /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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DictionaryFacilitator.java 151 void addToUserHistory(final String suggestion, final boolean wasAutoCapitalized,
159 // TODO: Revise the way to fusion suggestion results.
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
LevenshteinFormatterTest.java 151 private void verifyFormatSuggestion(String query, String suggestion, SpanFormat... spans) {
152 Spanned s = mFormatter.formatSuggestion(query, suggestion);
163 verifyFormatSuggestion("", "suggestion",
164 new SpanFormat(0, "suggestion", mSuggestedStyle));
  /external/glide/library/src/main/java/com/bumptech/glide/request/
GenericRequest.java 232 private static void check(String name, Object object, String suggestion) {
236 if (suggestion != null) {
238 message.append(suggestion);

Completed in 474 milliseconds

1 2 3 4