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

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DNameSplitter.java97 public int phoneticNameStyle; field in class:NameSplitter.Name
150 return phoneticNameStyle;
168 phoneticNameStyle = integer == null ? PhoneticNameStyle.UNDEFINED : integer;
181 values.put(StructuredName.PHONETIC_NAME_STYLE, phoneticNameStyle);
200 phoneticNameStyle = PhoneticNameStyle.UNDEFINED;
900 name.phoneticNameStyle);
908 public int getAdjustedNameStyleBasedOnPhoneticNameStyle(int nameStyle, int phoneticNameStyle) { argument
909 if (phoneticNameStyle != PhoneticNameStyle.UNDEFINED) {
911 if (phoneticNameStyle == PhoneticNameStyle.JAPANESE) {
913 } else if (phoneticNameStyle
[all...]
H A DContactsDatabaseHelper.java2697 structuredNameUpdate.bindLong(3, name.phoneticNameStyle);
2721 displayNameAlternative, name.phoneticNameStyle, phoneticName, sortKey,
2763 int phoneticNameStyle = splitter.guessPhoneticNameStyle(phoneticName);
2765 organizationUpdate.bindLong(1, phoneticNameStyle);
2785 company, phoneticNameStyle, phoneticName, sortKey, sortKey);
2793 String displayName, String displayNameAlternative, int phoneticNameStyle,
2798 rawContactUpdate.bindLong(4, phoneticNameStyle);
5053 name.phoneticNameStyle = c.isNull(RawContactNameQuery.PHONETIC_NAME_STYLE)
5131 bestPhoneticNameStyle = bestName.phoneticNameStyle;
2792 updateRawContact205(SQLiteStatement rawContactUpdate, long rawContactId, String displayName, String displayNameAlternative, int phoneticNameStyle, String phoneticName, String sortKeyPrimary, String sortKeyAlternative) argument

Completed in 66 milliseconds