Home
last modified time | relevance | path

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

/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
DAlertServiceTest.java477 int id1 = at.addAlertRow(1, SCHEDULED, ACCEPTED, 0, createTimeInMillis(1, 0), in testGenerateAlerts_multiple() local
490 new int[] {id3, id2, id1}, PRIORITY_MIN); in testGenerateAlerts_multiple()
503 new int[] {id6, id4, id3, id2, id1}, PRIORITY_MIN); in testGenerateAlerts_multiple()
512 new int[] {id8, id7, id6, id5, id4, id3, id2, id1}, PRIORITY_MIN); in testGenerateAlerts_multiple()
549 int id1 = at.addAlertRow(1, SCHEDULED, ACCEPTED, 0, createTimeInMillis(1, 0), in testGenerateAlerts_maxAlerts() local
562 new int[] {id3, id2, id1}, PRIORITY_MIN); in testGenerateAlerts_maxAlerts()
575 new int[] {id9, id8, id3, id2, id1}, PRIORITY_MIN); in testGenerateAlerts_maxAlerts()
643 int id1 = at.addAlertRow(1, SCHEDULED, ACCEPTED, 0, in testGenerateAlerts_refreshTime() local
653 ntm.expectTestNotification(4, id1, PRIORITY_HIGH); in testGenerateAlerts_refreshTime()
665 ntm.expectTestNotification(3, id1, PRIORITY_HIGH); in testGenerateAlerts_refreshTime()
[all …]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsDatabaseHelperTest.java135 final long id1 = ContactsDatabaseHelper.insertWithOneArgAndReturnId(mDb, insert, "value1"); in testQueryIdWithOneArg_insertWithOneArgAndReturnId() local
136 MoreAsserts.assertNotEqual(-1, id1); in testQueryIdWithOneArg_insertWithOneArgAndReturnId()
138 assertEquals(id1, ContactsDatabaseHelper.queryIdWithOneArg(mDb, query, "value1")); in testQueryIdWithOneArg_insertWithOneArgAndReturnId()
146 assertEquals(id1, ContactsDatabaseHelper.queryIdWithOneArg(mDb, query, "value1")); in testQueryIdWithOneArg_insertWithOneArgAndReturnId()
DBaseContactsProvider2Test.java799 long id1 = o1.getAsLong(ContactsContract.Data._ID); in compare() local
801 if (id1 == id2) return 0; in compare()
802 return (id1 < id2) ? -1 : 1; in compare()
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
Dndldic.c1844 NJ_UINT16 id1 = 0; in njd_l_check_dic() local
1865 id1 = GET_UINT16(ptr); in njd_l_check_dic()
1867 if (id1 >= max) { in njd_l_check_dic()
1877 id1 = GET_UINT16(ptr); in njd_l_check_dic()
1879 if (id1 >= max) { in njd_l_check_dic()
1910 id1 = GET_UINT16(ptr); in njd_l_check_dic()
1911 if (get_hyouki(iwnn, handle, id1, &slen) == NULL) { in njd_l_check_dic()
1920 id1 = GET_UINT16(ptr); in njd_l_check_dic()
1922 if (id1 >= max) { in njd_l_check_dic()
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DCustomContactListFilterActivity.java419 final Long id1 = object1.getId();
421 if (id1 == null && id2 == null) {
423 } else if (id1 == null) {
427 } else if (id1 < id2) {
429 } else if (id1 > id2) {
/packages/apps/Email/tests/src/com/android/emailcommon/internet/
DMimeMessageTest.java113 String id1 = message1.getMessageId(); in testMessageId() local
115 assertNotNull(id1); in testMessageId()
117 assertFalse("Message-ID should be unique", id1.equals(id2)); in testMessageId()