Searched refs:given (Results 1 - 4 of 4) sorted by relevance

/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...]
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
H A DPhonebookEntry.java30 public String given; field in class:PhonebookEntry.Name
45 (given == n.given || given != null && given.equals(n.given)) &&
54 result = 23 * result + (given == null ? 0 : given.hashCode());
66 sb.append(" given: ");
67 sb.append(given);
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DUtils.java211 * Returns the UserManager for a given context
400 final String given = getLocalProfileGivenName(context);
401 return !TextUtils.isEmpty(given) ? given : getProfileDisplayName(context);
488 * Start a new instance of the activity, showing only the given fragment.
489 * When launched in this mode, the given preference fragment will be instantiated and fill the
512 * Start a new instance of the activity, showing only the given fragment.
513 * When launched in this mode, the given preference fragment will be instantiated and fill the
590 * @return Returns an Intent that can be launched to display the given
653 * Retrieves the id for the given use
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsDatabaseHelper.java3745 * Stores statistics for a given index.
3808 * Return the {@link ApplicationInfo#uid} for the given package name.
3945 * Find the mimetype for the given {@link Data#_ID}.
4174 * Returns contact ID for the given contact or zero if it is NULL.
4249 * Adds query for selecting the contact with the given {@code sipAddress} to the given
4425 * Test if the given column appears in the given projection.
4440 * Tests if any of the columns appear in the given projection.
4603 final String given
[all...]

Completed in 288 milliseconds