Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DAbstractContactAggregator.java349 + Contacts.SEND_TO_VOICEMAIL + "=(CASE WHEN (SELECT COUNT( " in AbstractContactAggregator()
350 + RawContacts.SEND_TO_VOICEMAIL + ") FROM " + Tables.RAW_CONTACTS in AbstractContactAggregator()
352 + RawContacts.SEND_TO_VOICEMAIL + "=1) = (SELECT COUNT(" in AbstractContactAggregator()
353 + RawContacts.SEND_TO_VOICEMAIL + ") FROM " + Tables.RAW_CONTACTS + " WHERE " in AbstractContactAggregator()
1277 + RawContacts.SEND_TO_VOICEMAIL + ","
1313 int SEND_TO_VOICEMAIL = 8; field
1332 + Contacts.SEND_TO_VOICEMAIL + "=?, "
1348 + Contacts.SEND_TO_VOICEMAIL + ", "
1363 int SEND_TO_VOICEMAIL = 4; field
1441 if (!c.isNull(RawContactsQuery.SEND_TO_VOICEMAIL)) { in computeAggregateData()
[all …]
/packages/apps/Dialer/java/com/android/dialer/blocking/
DFilteredNumbersUtil.java163 newValues.put(Contacts.SEND_TO_VOICEMAIL, 0); in importSendToVoicemailContacts()
336 static final String SELECT_SEND_TO_VOICEMAIL_TRUE = Contacts.SEND_TO_VOICEMAIL + "=1";
349 public static final String SELECT_SEND_TO_VOICEMAIL_TRUE = Contacts.SEND_TO_VOICEMAIL + "=1";
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DMetadataEntryParser.java45 private final static String SEND_TO_VOICEMAIL = "send_to_voicemail"; field in MetadataEntryParser
161 final boolean sendToVoicemail = contactPrefs.has(SEND_TO_VOICEMAIL) in parseDataToMetaDataEntry()
162 ? contactPrefs.getBoolean(SEND_TO_VOICEMAIL) : false; in parseDataToMetaDataEntry()
DLegacyApiSupport.java346 peopleProjectionMap.put(People.SEND_TO_VOICEMAIL, People.SEND_TO_VOICEMAIL); in peopleProjectionMap.put() argument
548 Tables.RAW_CONTACTS + "." + RawContacts.SEND_TO_VOICEMAIL in createViews()
549 + " AS " + People.SEND_TO_VOICEMAIL + ", " + in createViews()
1297 ContactsDatabaseHelper.copyLongValue(mValues, RawContacts.SEND_TO_VOICEMAIL, in parsePeopleValues()
1298 values, People.SEND_TO_VOICEMAIL); in parsePeopleValues()
DContactsDatabaseHelper.java446 + Contacts.SEND_TO_VOICEMAIL;
484 Tables.RAW_CONTACTS + "." + RawContacts.SEND_TO_VOICEMAIL;
1274 Contacts.SEND_TO_VOICEMAIL + " INTEGER NOT NULL DEFAULT 0," + in onCreate()
1312 RawContacts.SEND_TO_VOICEMAIL + " INTEGER NOT NULL DEFAULT 0," + in onCreate()
1977 + " AS " + Contacts.SEND_TO_VOICEMAIL + "," in createContactsViews()
2053 + RawContacts.SEND_TO_VOICEMAIL + "," in createContactsViews()
2099 + " AS " + Contacts.SEND_TO_VOICEMAIL + ", " in createContactsViews()
DContactsProvider2.java630 .add(Contacts.SEND_TO_VOICEMAIL)
825 .add(RawContacts.SEND_TO_VOICEMAIL)
941 .add(PhoneLookup.SEND_TO_VOICEMAIL, "contacts_view." + Contacts.SEND_TO_VOICEMAIL)
4614 if (flagExists(values, RawContacts.SEND_TO_VOICEMAIL)) { in updateRawContact()
4737 values, RawContacts.SEND_TO_VOICEMAIL, in updateContactOptions()
4738 inputValues, Contacts.SEND_TO_VOICEMAIL); in updateContactOptions()
4758 final boolean hasVoiceMailValue = flagExists(values, RawContacts.SEND_TO_VOICEMAIL); in updateContactOptions()
4802 values, RawContacts.SEND_TO_VOICEMAIL, in updateContactOptions()
4803 inputValues, Contacts.SEND_TO_VOICEMAIL); in updateContactOptions()
4878 || flagExists(values, RawContacts.SEND_TO_VOICEMAIL)); in shouldMarkMetadataDirtyForRawContact()
[all …]
/packages/services/Telephony/src/com/android/phone/
DCallerInfoCache.java58 Data.SEND_TO_VOICEMAIL // 3
67 + "(" + Data.CUSTOM_RINGTONE + " IS NOT NULL OR " + Data.SEND_TO_VOICEMAIL + "=1)"
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsProvider2Test.java231 Contacts.SEND_TO_VOICEMAIL, in testContactsProjection()
272 Contacts.SEND_TO_VOICEMAIL, in testContactsStrequentProjection()
317 Contacts.SEND_TO_VOICEMAIL, in testContactsStrequentPhoneOnlyProjection()
366 Contacts.SEND_TO_VOICEMAIL, in testContactsWithSnippetProjection()
411 RawContacts.SEND_TO_VOICEMAIL, in testRawContactsProjection()
496 Contacts.SEND_TO_VOICEMAIL, in testDataProjection()
579 Contacts.SEND_TO_VOICEMAIL, in testDistinctDataProjection()
672 Contacts.SEND_TO_VOICEMAIL, in testEntityProjection()
767 PhoneLookup.SEND_TO_VOICEMAIL, in testPhoneLookupProjection()
803 PhoneLookup.SEND_TO_VOICEMAIL, in testPhoneLookupEnterpriseProjection()
[all …]
DCallerInfoIntegrationTest.java43 values.put(RawContacts.SEND_TO_VOICEMAIL, 1); in testCallerInfo()
DContactMetadataProviderTest.java223 assertStoredValue(rawContactUri, RawContacts.SEND_TO_VOICEMAIL, "1"); in testInsertAndUpdateMetadataSync()
255 assertStoredValue(rawContactUri, RawContacts.SEND_TO_VOICEMAIL, "0"); in testInsertAndUpdateMetadataSync()
DEnterpriseContactsCursorWrapperTest.java48 /* column 15 */ PhoneLookup.SEND_TO_VOICEMAIL, in testWrappedResults()
DContactsDatabaseHelperUpgradeTest.java236 new TableColumn(Contacts.SEND_TO_VOICEMAIL, INTEGER, true, "0"),
270 new TableColumn(RawContacts.SEND_TO_VOICEMAIL, INTEGER, true, "0"),
DLegacyContactsProviderTest.java939 values.put(People.SEND_TO_VOICEMAIL, 1); in putContactValuesExceptName()
951 values.put(People.SEND_TO_VOICEMAIL, 0); in putContactValues2()
DBaseContactsProvider2Test.java558 values.put(RawContacts.SEND_TO_VOICEMAIL, sendToVoiceMail); in setRawContactCustomization()
/packages/apps/Dialer/java/com/android/incallui/
DCallerInfo.java58 PhoneLookup.SEND_TO_VOICEMAIL
286 columnIndex = cursor.getColumnIndex(PhoneLookup.SEND_TO_VOICEMAIL); in getCallerInfo()
/packages/apps/Contacts/tests/src/com/android/contacts/model/
DRawContactDeltaTests.java326 after.put(RawContacts.SEND_TO_VOICEMAIL, 1); in testEntityDiffInsert()
348 after.put(RawContacts.SEND_TO_VOICEMAIL, 1); in testEntityDiffInsertInsert()
DContactLoaderTest.java342 Contacts.SEND_TO_VOICEMAIL, in fetchAllData()
DRawContactDeltaListTests.java104 after.put(RawContacts.SEND_TO_VOICEMAIL, 1); in getInsert()
/packages/apps/Dialer/java/com/android/contacts/common/model/
DContactLoader.java434 final boolean sendToVoicemail = cursor.getInt(ContactQuery.SEND_TO_VOICEMAIL) == 1; in loadContactHeaderData()
848 public static final int SEND_TO_VOICEMAIL = 59; field in ContactLoader.ContactQuery
915 Contacts.SEND_TO_VOICEMAIL,
/packages/apps/Contacts/src/com/android/contacts/model/
DContactLoader.java182 Contacts.SEND_TO_VOICEMAIL,
261 public static final int SEND_TO_VOICEMAIL = 59; field in ContactLoader.ContactQuery
598 final boolean sendToVoicemail = cursor.getInt(ContactQuery.SEND_TO_VOICEMAIL) == 1; in loadContactHeaderData()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
DContactAggregatorTest.java828 Contacts.SEND_TO_VOICEMAIL, 0); in testReAggregateToConnectedComponent()
841 Contacts.SEND_TO_VOICEMAIL, 1); in testReAggregateToConnectedComponent()
846 Contacts.SEND_TO_VOICEMAIL, 0); in testReAggregateToConnectedComponent()
851 Contacts.SEND_TO_VOICEMAIL, 0); in testReAggregateToConnectedComponent()
DContactAggregator2Test.java844 Contacts.SEND_TO_VOICEMAIL, 0); in testReAggregateToConnectedComponent()
857 Contacts.SEND_TO_VOICEMAIL, 1); in testReAggregateToConnectedComponent()
862 Contacts.SEND_TO_VOICEMAIL, 0); in testReAggregateToConnectedComponent()
867 Contacts.SEND_TO_VOICEMAIL, 0); in testReAggregateToConnectedComponent()
/packages/apps/Contacts/src/com/android/contacts/
DContactSaveService.java1094 values.put(Contacts.SEND_TO_VOICEMAIL, value); in setSendToVoicemail()