Searched refs:getNameLookupKeys (Results 1 – 3 of 3) sorted by relevance
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | ContactLocaleUtilsTest.java | 110 private Iterator<String> getNameLookupKeys(String name, int nameStyle) { in getNameLookupKeys() method in ContactLocaleUtilsTest 112 return utils.getNameLookupKeys(name, nameStyle); in getNameLookupKeys() 135 assertNull(getNameLookupKeys(LATIN_NAME, FullNameStyle.UNDEFINED)); in testEnglishContactLocaleUtils() 148 assertNull(getNameLookupKeys(CHINESE_NAME, FullNameStyle.CJK)); in testJapaneseContactLocaleUtils() 149 assertNull(getNameLookupKeys(CHINESE_NAME, FullNameStyle.CHINESE)); in testJapaneseContactLocaleUtils() 173 Iterator<String> keys = getNameLookupKeys(CHINESE_NAME, in testChineseContactLocaleUtils() 177 keys = getNameLookupKeys(CHINESE_LATIN_MIX_NAME_1, FullNameStyle.CHINESE); in testChineseContactLocaleUtils() 180 keys = getNameLookupKeys(CHINESE_LATIN_MIX_NAME_2, FullNameStyle.CHINESE); in testChineseContactLocaleUtils() 193 Iterator<String> keys = getNameLookupKeys(CHINESE_NAME, in testPinyinEnabledSecondaryLocale() 203 assertNull(getNameLookupKeys(CHINESE_NAME, FullNameStyle.CHINESE)); in testPinyinDisabledSecondaryLocale() [all …]
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactLocaleUtils.java | 219 public Iterator<String> getNameLookupKeys(String name, int nameStyle) { in getNameLookupKeys() method in ContactLocaleUtils.ContactLocaleUtilsBase 331 public Iterator<String> getNameLookupKeys(String name, int nameStyle) { in getNameLookupKeys() method in ContactLocaleUtils.JapaneseContactUtils 394 public Iterator<String> getNameLookupKeys(String name, int nameStyle) { in getNameLookupKeys() method in ContactLocaleUtils.SimplifiedChineseContactUtils 525 public Iterator<String> getNameLookupKeys(String name, int nameStyle) { in getNameLookupKeys() method in ContactLocaleUtils 538 return mUtils.getNameLookupKeys(name, nameStyle); in getNameLookupKeys()
|
D | NameLookupBuilder.java | 329 ContactLocaleUtils.getInstance().getNameLookupKeys(name, fullNameStyle); in appendNameShorthandLookup()
|