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

  /external/clang/lib/Basic/
Warnings.cpp 36 StringRef Suggestion = DiagnosticIDs::getNearestWarningOption(Opt);
37 if (!Suggestion.empty())
40 << (Prefix.str() += Opt) << (Prefix.str() += Suggestion);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
Suggestion.java 23 public interface Suggestion {
26 * Gets the source that produced the current suggestion.
31 * Gets the shortcut ID of the current suggestion.
49 * Gets the first text line for the current suggestion.
54 * Gets the second text line for the current suggestion.
59 * Gets the second text line URL for the current suggestion.
64 * Gets the left-hand-side icon for the current suggestion.
71 * Gets the right-hand-side icon for the current suggestion.
78 * Gets the intent action for the current suggestion.
83 * Gets the name of the activity that the intent for the current suggestion will be sent to
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionEngine.java 70 public static final class Suggestion {
377 public List<Suggestion> getSuggestions() {
378 ArrayList<Suggestion> list = Lists.newArrayList();
380 Suggestion suggestion = null; local
386 suggestion = new Suggestion();
387 suggestion.contactId = contactId;
388 suggestion.name = mDataCursor.getString(DataQuery.DISPLAY_NAME);
389 suggestion.lookupKey = mDataCursor.getString(DataQuery.LOOKUP_KEY)
    [all...]

Completed in 236 milliseconds