Searched defs:given (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
H A DPhonebookEntry.java30 public String given; field in class:PhonebookEntry.Name
45 && (Objects.equals(given, n.given) || given != null && given.equals(n.given))
55 result = 23 * result + (given == null ? 0 : given.hashCode());
67 sb.append(" given: ");
68 sb.append(given);
[all...]
/packages/apps/Contacts/src/com/android/contacts/util/
H A DNameConverter.java48 * Converts the given structured name (provided as ContentValues) into a display name string.
64 * Helper method for fetching the display name via the given URI.
92 * Parses phonetic name and returns parsed data (family, middle, given) as ContentValues.
96 * If this method cannot parse given phoneticName, null values will be stored.
107 String given = null;
117 given = strings[1];
122 given = strings[2];
132 item.setPhoneticGivenName(given);
137 * Constructs and returns a phonetic full name from given parts.
139 public static String buildPhoneticName(String family, String middle, String given) { argument
[all...]

Completed in 97 milliseconds