Searched refs:getNameLookupKeys (Results 1 – 3 of 3) sorted by relevance
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | ContactLocaleUtilsTest.java | 49 assertNull(mContactLocaleUtils.getNameLookupKeys(LATIN_NAME, in testContactLocaleUtilsBase() 67 Iterator<String> keys = mContactLocaleUtils.getNameLookupKeys(CHINESE_NAME, in testChineseContactLocaleUtils() 71 keys = mContactLocaleUtils.getNameLookupKeys(CHINESE_LATIN_MIX_NAME_1, in testChineseContactLocaleUtils() 75 keys = mContactLocaleUtils.getNameLookupKeys(CHINESE_LATIN_MIX_NAME_2, in testChineseContactLocaleUtils() 97 Iterator<String> keys = mContactLocaleUtils.getNameLookupKeys(CHINESE_NAME, in testChineseStyleNameWithDifferentLocale() 100 keys = mContactLocaleUtils.getNameLookupKeys(CHINESE_NAME, FullNameStyle.CJK); in testChineseStyleNameWithDifferentLocale() 103 keys = mContactLocaleUtils.getNameLookupKeys(CHINESE_NAME, FullNameStyle.CJK); in testChineseStyleNameWithDifferentLocale() 105 keys = mContactLocaleUtils.getNameLookupKeys(LATIN_NAME, FullNameStyle.WESTERN); in testChineseStyleNameWithDifferentLocale()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactLocaleUtils.java | 44 public Iterator<String> getNameLookupKeys(String name) { in getNameLookupKeys() method in ContactLocaleUtils.ContactLocaleUtilsBase 91 public Iterator<String> getNameLookupKeys(String name) { in getNameLookupKeys() method in ContactLocaleUtils.ChineseContactUtils 155 public Iterator<String> getNameLookupKeys(String name, int nameStyle) { in getNameLookupKeys() method in ContactLocaleUtils 156 return getForNameLookup(Integer.valueOf(nameStyle)).getNameLookupKeys(name); in getNameLookupKeys()
|
D | NameLookupBuilder.java | 324 ContactLocaleUtils.getIntance().getNameLookupKeys(name, fullNameStyle); in appendNameShorthandLookup()
|