HomeSort by relevance Sort by last modified time
    Searched refs:Suggestion (Results 26 - 40 of 40) sorted by null

12

  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionView.java 21 import com.android.contacts.editor.AggregationSuggestionEngine.Suggestion;
39 * A view that contains a name, picture and other data for a contact aggregation suggestion.
80 public void bindSuggestion(Suggestion suggestion) {
81 mContactId = suggestion.contactId;
82 mLookupKey = suggestion.lookupKey;
83 mRawContacts = suggestion.rawContacts;
85 if (suggestion.photo != null) {
87 suggestion.photo, 0, suggestion.photo.length))
    [all...]
ContactEditorFragment.java 26 import com.android.contacts.editor.AggregationSuggestionEngine.Suggestion;
184 * - After the user has accepted an edit suggestion
245 private final List<Suggestion> mSuggestions;
248 AggregationSuggestionView.Listener listener, List<Suggestion> suggestions) {
257 Suggestion suggestion = (Suggestion) getItem(position); local
264 suggestionView.bindSuggestion(suggestion);
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.h 108 Suggestion, // Autocomplete/autofill popup.
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
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...]
ClusteredSuggestionsAdapter.java 21 import com.android.quicksearchbox.Suggestion;
153 public Suggestion getChild(int groupPosition, int childPosition) {
SuggestionsAdapterBase.java 19 import com.android.quicksearchbox.Suggestion;
146 private String suggestionViewType(Suggestion suggestion) {
147 String viewType = mViewFactory.getViewType(suggestion);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SourceShortcutRefresher.java 49 public void refresh(Suggestion shortcut, Listener listener) {
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...]
ShortcutCursor.java 95 public void refresh(Suggestion shortcut) {
SuggestionCursorBackedCursor.java 93 private Suggestion get() {
SuggestionData.java 29 public class SuggestionData implements Suggestion {
ShortcutRepositoryImplLog.java 310 private boolean shouldRefresh(Suggestion suggestion) {
311 return mRefresher.shouldRefresh(suggestion.getSuggestionSource(),
312 suggestion.getShortcutId());
416 // original suggestion.
528 private ContentValues makeShortcutRow(Suggestion suggestion) {
529 String intentAction = suggestion.getSuggestionIntentAction();
530 String intentComponent = componentNameToString(suggestion.getSuggestionIntentComponent());
531 String intentData = suggestion.getSuggestionIntentDataString()
    [all...]
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
RankAwarePromoterTest.java 70 // gets filtered out by the suggestion cursor) doesn't decrease the
74 Suggestion shortcut = new SuggestionPosition(corpora2);
105 assertEquals("Suggestion in position " + i,
  /external/webkit/Source/WebKit/chromium/src/
ChromeClientImpl.cpp 103 case PopupContainer::Suggestion:
WebViewImpl.cpp 656 // Pressing delete triggers the removal of the selected suggestion from the DB.
    [all...]

Completed in 1718 milliseconds

12