Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DNameSplitter.java172 putValueIfPresent(values, StructuredName.PREFIX, prefix); in toValues()
173 putValueIfPresent(values, StructuredName.GIVEN_NAME, givenNames); in toValues()
174 putValueIfPresent(values, StructuredName.MIDDLE_NAME, middleName); in toValues()
175 putValueIfPresent(values, StructuredName.FAMILY_NAME, familyName); in toValues()
176 putValueIfPresent(values, StructuredName.SUFFIX, suffix); in toValues()
178 putValueIfPresent(values, StructuredName.PHONETIC_FAMILY_NAME, phoneticFamilyName); in toValues()
179 putValueIfPresent(values, StructuredName.PHONETIC_MIDDLE_NAME, phoneticMiddleName); in toValues()
180 putValueIfPresent(values, StructuredName.PHONETIC_GIVEN_NAME, phoneticGivenName); in toValues()
184 private void putValueIfPresent(ContentValues values, String name, String value) { in putValueIfPresent() method in NameSplitter.Name