Home | History | Annotate | Download | only in editor

Lines Matching defs:suggestion

60     public static final class Suggestion {
72 return MoreObjects.toStringHelper(Suggestion.class)
378 public List<Suggestion> getSuggestions() {
379 final ArrayList<Suggestion> list = Lists.newArrayList();
382 Suggestion suggestion = null;
388 suggestion = new Suggestion();
389 suggestion.rawContactId = rawContactId;
390 suggestion.contactId = mDataCursor.getLong(DataQuery.CONTACT_ID);
391 suggestion.contactLookupKey = mDataCursor.getString(DataQuery.LOOKUP_KEY);
398 list.add(suggestion);
408 && (superprimary != 0 || suggestion.phoneNumber == null)) {
409 suggestion.phoneNumber = data;
415 && (superprimary != 0 || suggestion.emailAddress == null)) {
416 suggestion.emailAddress = data;
421 suggestion.nickname = data;
426 if (!TextUtils.isEmpty(data) && suggestion.name == null) {
427 suggestion.name = data;
431 if (suggestion.photoId == -1) {
432 suggestion.photoId = id;