Home | History | Annotate | Download | only in util

Lines Matching refs:given

51      * Converts the given structured name (provided as a map from {@link StructuredName} fields to
73 * Converts the given structured name (provided as ContentValues) into a display name string.
89 * Helper method for fetching the display name via the given URI.
110 * Converts the given display name string into a structured name (as a map from
143 * Converts the given display name string into a structured name (inserting the structured
174 * Parses phonetic name and returns parsed data (family, middle, given) as ContentValues.
178 * If this method cannot parse given phoneticName, null values will be stored.
189 String given = null;
199 given = strings[1];
204 given = strings[2];
214 item.setPhoneticGivenName(given);
219 * Constructs and returns a phonetic full name from given parts.
221 public static String buildPhoneticName(String family, String middle, String given) {
223 || !TextUtils.isEmpty(given)) {
231 if (!TextUtils.isEmpty(given)) {
232 sb.append(given.trim()).append(' ');