Home
last modified time | relevance | path

Searched refs:insertNameLookup (Results 1 – 7 of 7) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DNameLookupBuilderTest.java61 protected void insertNameLookup(long rawContactId, long dataId, int lookupType, in insertNameLookup() method in NameLookupBuilderTest.TestNameLookupBuilder
77 mBuilder.insertNameLookup(0, 0, "", FullNameStyle.UNDEFINED); in testEmptyName()
82 mBuilder.insertNameLookup(0, 0, "Foo", FullNameStyle.UNDEFINED); in testSingleUniqueName()
87 mBuilder.insertNameLookup(0, 0, "Mr. Foo", FullNameStyle.UNDEFINED); in testSingleUniqueNameWithPrefix()
92 mBuilder.insertNameLookup(0, 0, "Foo Bar", FullNameStyle.UNDEFINED); in testTwoUniqueNames()
97 mBuilder.insertNameLookup(0, 0, "Foo Bar Baz", FullNameStyle.UNDEFINED); in testThreeUniqueNames()
112 mBuilder.insertNameLookup(0, 0, "Foo Bar Baz Biz", FullNameStyle.UNDEFINED); in testFourUniqueNames()
151 mBuilder.insertNameLookup(0, 0, "\u695A\u8FAD", FullNameStyle.CHINESE); in testChineseName()
165 mBuilder.insertNameLookup(0, 0, "\uC774\uC0C1\uC77C", FullNameStyle.KOREAN); in testKoreanName()
179 mBuilder.insertNameLookup(0, 0, "\uC120\uC6B0\uC6A9\uB140", FullNameStyle.KOREAN); in testKoreanNameWithTwoCharactersFamilyName()
[all …]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DNameLookupBuilder.java82 protected abstract void insertNameLookup(long rawContactId, long dataId, int lookupType, in insertNameLookup() method in NameLookupBuilder
88 public void insertNameLookup(long rawContactId, long dataId, String name, int fullNameStyle) { in insertNameLookup() method in NameLookupBuilder
260 insertNameLookup(rawContactId, dataId, lookupType, mStringBuilder.toString()); in insertNameVariant()
277 insertNameLookup(rawContactId, dataId, NameLookupType.NAME_COLLATION_KEY, in insertCollationKey()
DDataRowHandlerForStructuredName.java70 mNameLookupBuilder.insertNameLookup(rawContactId, dataId, name, in insert()
99 mNameLookupBuilder.insertNameLookup(rawContactId, dataId, name, in update()
DContactsDatabaseHelper.java902 protected void insertNameLookup( in insertNameLookup() method in ContactsDatabaseHelper.StructuredNameLookupBuilder
2735 insertNameLookup(db); in rebuildNameLookup()
2786 insertNameLookup(db); in rebuildLocaleData()
2839 private void insertNameLookup(SQLiteDatabase db) { in insertNameLookup() method in ContactsDatabaseHelper
2877 nameLookupBuilder.insertNameLookup(rawContactId, dataId, name, fullNameStyle); in insertStructuredNameLookup()
2898 insertNameLookup(nameLookupInsert, rawContactId, dataId, in insertEmailLookup()
2919 insertNameLookup(nameLookupInsert, rawContactId, dataId, in insertNicknameLookup()
2930 public void insertNameLookup(SQLiteStatement stmt, long rawContactId, long dataId, in insertNameLookup() method in ContactsDatabaseHelper
5095 public void insertNameLookup(long rawContactId, long dataId, int lookupType, String name) { in insertNameLookup() method in ContactsDatabaseHelper
5135 insertNameLookup(rawContactId, dataId, in insertNameLookupForEmail()
[all …]
DContactsProvider2.java9852 protected void insertNameLookup(long rawContactId, long dataId, int lookupType, in insertNameLookup() method in ContactsProvider2.StructuredNameLookupBuilder
9854 mDbHelper.get().insertNameLookup(rawContactId, dataId, lookupType, name); in insertNameLookup()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DAbstractContactAggregator.java1085 protected void insertNameLookup( in insertNameLookup() method in AbstractContactAggregator.NameLookupSelectionBuilder
1120 builder.insertNameLookup(0, 0, query, FullNameStyle.UNDEFINED); in updateMatchScoresBasedOnNameMatches()
DContactAggregator2.java637 builder.insertNameLookup(0, 0, query, FullNameStyle.UNDEFINED); in updateMatchScoresBasedOnNameMatches()