Searched refs:getSortKey (Results 1 - 3 of 3) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactLocaleUtilsTest.java47 assertEquals(mContactLocaleUtils.getSortKey(LATIN_NAME, FullNameStyle.UNDEFINED),
58 assertTrue(mContactLocaleUtils.getSortKey(CHINESE_NAME,
61 assertTrue(mContactLocaleUtils.getSortKey(CHINESE_LATIN_MIX_NAME_1,
64 assertTrue(mContactLocaleUtils.getSortKey(CHINESE_LATIN_MIX_NAME_2,
86 mContactLocaleUtils.getSortKey(CHINESE_NAME, FullNameStyle.CHINESE).toUpperCase());
88 mContactLocaleUtils.getSortKey(CHINESE_NAME, FullNameStyle.CJK).toUpperCase());
91 mContactLocaleUtils.getSortKey(CHINESE_NAME, FullNameStyle.CHINESE).toUpperCase());
93 mContactLocaleUtils.getSortKey(CHINESE_NAME, FullNameStyle.CJK).toUpperCase());
94 assertEquals(LATIN_NAME, mContactLocaleUtils.getSortKey(LATIN_NAME, FullNameStyle.WESTERN));
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactLocaleUtils.java40 public String getSortKey(String displayName) { method in class:ContactLocaleUtils.ContactLocaleUtilsBase
64 public String getSortKey(String displayName) { method in class:ContactLocaleUtils.ChineseContactUtils
87 return super.getSortKey(displayName);
151 public String getSortKey(String displayName, int nameStyle) { method in class:ContactLocaleUtils
152 return getForSort(Integer.valueOf(nameStyle)).getSortKey(displayName);
H A DContactsDatabaseHelper.java2712 .getSortKey(displayName, name.fullNameStyle);
2776 .getSortKey(company, nameStyle);
5155 ContactLocaleUtils.getIntance().getSortKey(

Completed in 156 milliseconds