Home | History | Annotate | Download | only in util

Lines Matching refs:given

48      * 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) {
141 || !TextUtils.isEmpty(given)) {
149 if (!TextUtils.isEmpty(given)) {
150 sb.append(given.trim()).append(' ');