HomeSort by relevance Sort by last modified time
    Searched refs:SEND_TO_VOICEMAIL (Results 1 - 25 of 44) sorted by null

1 2

  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
CallerInfoIntegrationTest.java 43 values.put(RawContacts.SEND_TO_VOICEMAIL, 1);
EnterpriseContactsCursorWrapperTest.java 49 /* column 15 */ PhoneLookup.SEND_TO_VOICEMAIL,
80 null, // PhoneLookup.SEND_TO_VOICEMAIL,
103 1, // PhoneLookup.SEND_TO_VOICEMAIL,
126 null, // PhoneLookup.SEND_TO_VOICEMAIL,
149 null, // PhoneLookup.SEND_TO_VOICEMAIL,
172 null, // PhoneLookup.SEND_TO_VOICEMAIL,
ContactMetadataProviderTest.java 62 " \"send_to_voicemail\": true,\n" +
81 " \"send_to_voicemail\": true,\n" +
154 " \"send_to_voicemail\": false,\n" +
200 " \"send_to_voicemail\": true,\n" +
224 assertStoredValue(rawContactUri, RawContacts.SEND_TO_VOICEMAIL, "1");
238 " \"send_to_voicemail\": false,\n" +
256 assertStoredValue(rawContactUri, RawContacts.SEND_TO_VOICEMAIL, "0");
273 " \"send_to_voicemail\": true,\n" +
304 " \"send_to_voicemail\": false,\n" +
391 " \"send_to_voicemail\": true,\n"
    [all...]
ContactsProvider2Test.java 204 Contacts.SEND_TO_VOICEMAIL,
245 Contacts.SEND_TO_VOICEMAIL,
290 Contacts.SEND_TO_VOICEMAIL,
339 Contacts.SEND_TO_VOICEMAIL,
384 RawContacts.SEND_TO_VOICEMAIL,
467 Contacts.SEND_TO_VOICEMAIL,
548 Contacts.SEND_TO_VOICEMAIL,
639 Contacts.SEND_TO_VOICEMAIL,
726 PhoneLookup.SEND_TO_VOICEMAIL,
754 PhoneLookup.SEND_TO_VOICEMAIL,
    [all...]
ContactsDatabaseHelperUpgradeTest.java 173 new TableColumn(Contacts.SEND_TO_VOICEMAIL, INTEGER, true, "0"),
205 new TableColumn(RawContacts.SEND_TO_VOICEMAIL, INTEGER, true, "0"),
LegacyContactsProviderTest.java     [all...]
  /packages/apps/Dialer/src/com/android/dialer/filterednumber/
FilteredNumbersUtil.java 100 static final String SELECT_SEND_TO_VOICEMAIL_TRUE = Contacts.SEND_TO_VOICEMAIL + "=1";
116 static final String SELECT_SEND_TO_VOICEMAIL_TRUE = Contacts.SEND_TO_VOICEMAIL + "=1";
120 * Checks if there exists a contact with {@code Contacts.SEND_TO_VOICEMAIL} set to true.
161 * Blocks all the phone numbers of any contacts marked as SEND_TO_VOICEMAIL, then clears the
162 * SEND_TO_VOICEMAIL flag on those contacts.
177 // Get the phone number of contacts marked as SEND_TO_VOICEMAIL.
205 // Clear SEND_TO_VOICEMAIL on all contacts. The setting has been imported to Dialer.
207 newValues.put(Contacts.SEND_TO_VOICEMAIL, 0);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
MetadataEntryParser.java 45 private final static String SEND_TO_VOICEMAIL = "send_to_voicemail";
161 final boolean sendToVoicemail = contactPrefs.has(SEND_TO_VOICEMAIL)
162 ? contactPrefs.getBoolean(SEND_TO_VOICEMAIL) : false;
LegacyApiSupport.java 377 peopleProjectionMap.put(People.SEND_TO_VOICEMAIL, People.SEND_TO_VOICEMAIL);
577 Tables.RAW_CONTACTS + "." + RawContacts.SEND_TO_VOICEMAIL
578 + " AS " + People.SEND_TO_VOICEMAIL + ", " +
    [all...]
ContactsDatabaseHelper.java 408 + Contacts.SEND_TO_VOICEMAIL;
446 Tables.RAW_CONTACTS + "." + RawContacts.SEND_TO_VOICEMAIL;
    [all...]
  /packages/services/Telephony/src/com/android/phone/
CallerInfoCache.java 62 Data.SEND_TO_VOICEMAIL // 3
71 + "(" + Data.CUSTOM_RINGTONE + " IS NOT NULL OR " + Data.SEND_TO_VOICEMAIL + "=1)"
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
CallerInfo.java 62 PhoneLookup.SEND_TO_VOICEMAIL
77 PhoneLookup.SEND_TO_VOICEMAIL
313 columnIndex = cursor.getColumnIndex(PhoneLookup.SEND_TO_VOICEMAIL);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
AbstractContactAggregator.java 347 + Contacts.SEND_TO_VOICEMAIL + "=(CASE WHEN (SELECT COUNT( "
348 + RawContacts.SEND_TO_VOICEMAIL + ") FROM " + Tables.RAW_CONTACTS
350 + RawContacts.SEND_TO_VOICEMAIL + "=1) = (SELECT COUNT("
351 + RawContacts.SEND_TO_VOICEMAIL + ") FROM " + Tables.RAW_CONTACTS + " WHERE "
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_FrequentsStrequentsTest.java 70 Contacts.SEND_TO_VOICEMAIL,
107 Contacts.SEND_TO_VOICEMAIL,
ContactsContract_RawContactsTest.java 56 RawContacts.SEND_TO_VOICEMAIL,
ContactsContract_ContactsTest.java 203 Contacts.SEND_TO_VOICEMAIL,
ContactsContract_DataTest.java 116 Contacts.SEND_TO_VOICEMAIL,
342 Contacts.SEND_TO_VOICEMAIL,
    [all...]
ContactsTest.java 73 People.CUSTOM_RINGTONE, People.SEND_TO_VOICEMAIL,};
97 value.put(PeopleColumns.SEND_TO_VOICEMAIL, 1);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AlertDialogSamples.java 290 ContactsContract.Contacts.SEND_TO_VOICEMAIL
297 ContactsContract.Contacts.SEND_TO_VOICEMAIL,
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
RawContactDeltaTests.java 330 after.put(RawContacts.SEND_TO_VOICEMAIL, 1);
352 after.put(RawContacts.SEND_TO_VOICEMAIL, 1);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
ContactLoader.java 183 Contacts.SEND_TO_VOICEMAIL,
265 public static final int SEND_TO_VOICEMAIL = 59;
657 final boolean sendToVoicemail = cursor.getInt(ContactQuery.SEND_TO_VOICEMAIL) == 1;
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfo.java 279 columnIndex = cursor.getColumnIndex(PhoneLookup.SEND_TO_VOICEMAIL);
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
ContactLoaderTest.java 348 Contacts.SEND_TO_VOICEMAIL,
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
ContactAggregator2Test.java     [all...]
ContactAggregatorTest.java     [all...]

Completed in 530 milliseconds

1 2