/cts/tests/tests/provider/src/android/provider/cts/ |
D | BlockedNumberContractTest.java | 163 ContentValues cv = new ContentValues(); in testInsert_failsWithInvalidInputs() local 164 cv.put(BlockedNumbers.COLUMN_ORIGINAL_NUMBER, "1234"); in testInsert_failsWithInvalidInputs() 182 ContentValues cv = new ContentValues(); in testInsert_failsWithInvalidInputs() local 183 cv.put(BlockedNumbers.COLUMN_E164_NUMBER, "+1234"); in testInsert_failsWithInvalidInputs() 184 mAddedUris.add(mContentResolver.insert(BlockedNumbers.CONTENT_URI, cv)); in testInsert_failsWithInvalidInputs() 191 ContentValues cv = new ContentValues(); in testInsert_failsWithInvalidInputs() local 192 cv.put(BlockedNumbers.COLUMN_ID, "1"); in testInsert_failsWithInvalidInputs() 193 mAddedUris.add(mContentResolver.insert(BlockedNumbers.CONTENT_URI, cv)); in testInsert_failsWithInvalidInputs() 319 ContentValues cv = new ContentValues(); in assertInsertBlockedNumberSucceeds() local 320 cv.put(BlockedNumbers.COLUMN_ORIGINAL_NUMBER, originalNumber); in assertInsertBlockedNumberSucceeds() [all …]
|
D | ContactsContract_DataTest.java | 434 ContentValues cv = new ContentValues(); in testContactablesUri() local 435 cv.put(Email.DATA, "test@test.com"); in testContactablesUri() 436 cv.put(Email.TYPE, Email.TYPE_WORK); in testContactablesUri() 441 new long[] {rawContact.getId()}, cv); in testContactablesUri() 452 cv.put(Phone.DATA, "123456789"); in testContactablesUri() 453 cv.put(Phone.TYPE, Phone.TYPE_MOBILE); in testContactablesUri() 458 null, false, cv, cv2); in testContactablesUri() 746 ArrayList<ContentValues> cv = new ArrayList<ContentValues>(); in getContentValues() local 751 cv.add(sContentValues[0]); in getContentValues() 752 cv.add(sContentValues[1]); in getContentValues() [all …]
|
D | BlockedNumberBackupRestoreTest.java | 139 ContentValues cv = new ContentValues(); in insertBlockedNumber() local 140 cv.put(BlockedNumberContract.BlockedNumbers.COLUMN_ORIGINAL_NUMBER, number); in insertBlockedNumber() 141 mContentResolver.insert(BlockedNumberContract.BlockedNumbers.CONTENT_URI, cv); in insertBlockedNumber()
|
D | SettingsTest.java | 140 ContentValues cv = new ContentValues(); in tryBadTableAccess() local 141 cv.put("name", "name"); in tryBadTableAccess() 142 cv.put("value", "xxxTESTxxx"); in tryBadTableAccess() 145 cr.insert(uri, cv); in tryBadTableAccess() 153 cr.update(uri, cv, NAME_EQ_PLACEHOLDER, new String[]{name}); in tryBadTableAccess()
|
D | CalendarTest.java | 1625 ContentValues cv = CalendarHelper.getNewCalendarValues(account, seed++); in testCalendarColors() local 1626 cv.put(Calendars.CALENDAR_COLOR_KEY, "badIndex"); in testCalendarColors() 1631 Uri uri = mContentResolver.insert(calSyncUri, cv); in testCalendarColors() 1639 cv.clear(); in testCalendarColors() 1640 cv.put(Calendars.CALENDAR_COLOR_KEY, "badIndex2"); in testCalendarColors() 1643 mContentResolver.update(calendarUri, cv, null, null); in testCalendarColors() 1652 cv = CalendarHelper.getNewCalendarValues(account, seed++); in testCalendarColors() 1653 cv.put(Calendars.CALENDAR_COLOR_KEY, ColorHelper.DEFAULT_INDICES[ColorHelper.C_COLOR_0]); in testCalendarColors() 1655 Uri uri = mContentResolver.insert(calSyncUri, cv); in testCalendarColors() 1659 cv.put(Calendars.CALENDAR_COLOR, ColorHelper.DEFAULT_COLORS[ColorHelper.C_COLOR_0]); in testCalendarColors() [all …]
|
/cts/tests/tests/content/src/android/content/cts/ |
D | ContentValuesTest.java | 218 ContentValues cv = new ContentValues(); in testEquals() local 219 cv.put("Boolean", false); in testEquals() 220 cv.put("String", "string"); in testEquals() 222 assertTrue(mContentValues.equals(cv)); in testEquals() 233 ContentValues cv = new ContentValues(); in testEqualsFailure() local 234 cv.put("Boolean", true); in testEqualsFailure() 235 cv.put("String", "111"); in testEqualsFailure() 237 assertFalse(mContentValues.equals(cv)); in testEqualsFailure() 491 ContentValues cv = new ContentValues(); in testPutAll() local 492 cv.put("String", "cts"); in testPutAll() [all …]
|
/cts/hostsidetests/numberblocking/app/src/com/android/cts/numberblocking/hostside/ |
D | NumberBlockingAppTest.java | 61 ContentValues cv = new ContentValues(); in verifyInsertBlockedNumberSucceeds() local 62 cv.put(BlockedNumberContract.BlockedNumbers.COLUMN_ORIGINAL_NUMBER, mBlockedPhoneNumber); in verifyInsertBlockedNumberSucceeds() 64 BlockedNumberContract.BlockedNumbers.CONTENT_URI, cv); in verifyInsertBlockedNumberSucceeds()
|
/cts/hostsidetests/net/app/src/com/android/cts/net/hostside/ |
D | RemoteSocketFactoryClient.java | 50 final ConditionVariable cv = new ConditionVariable(); in bind() local 55 cv.open(); in bind() 66 cv.block(TIMEOUT_MS); in bind()
|
/cts/hostsidetests/appsecurity/test-apps/SplitApp/src/com/android/cts/splitapp/ |
D | SplitAppTest.java | 312 final ConditionVariable cv = new ConditionVariable(); in testBaseInstalled() local 318 cv.open(); in testBaseInstalled() 326 assertTrue(cv.block(2000L)); in testBaseInstalled() 337 final ConditionVariable cv = new ConditionVariable(); in testFeatureInstalled() local 343 cv.open(); in testFeatureInstalled() 351 assertTrue(cv.block(2000L)); in testFeatureInstalled()
|
/cts/tests/tests/telecom/src/android/telecom/cts/ |
D | ExtendedInCallServiceTest.java | 249 ContentValues cv = new ContentValues(); in blockNumber() local 250 cv.put(BlockedNumberContract.BlockedNumbers.COLUMN_ORIGINAL_NUMBER, in blockNumber() 253 BlockedNumberContract.BlockedNumbers.CONTENT_URI, cv); in blockNumber()
|
/cts/tests/tests/telephony/src/android/telephony/cts/ |
D | SmsManagerTest.java | 510 ContentValues cv = new ContentValues(); in blockNumber() local 511 cv.put(BlockedNumberContract.BlockedNumbers.COLUMN_ORIGINAL_NUMBER, phoneNumber); in blockNumber() 513 BlockedNumberContract.BlockedNumbers.CONTENT_URI, cv); in blockNumber()
|
/cts/tests/tests/database/src/android/database/cts/ |
D | DatabaseCursorTest.java | 132 ContentValues cv = new ContentValues(); in testBlob() local 133 DatabaseUtils.cursorRowToContentValues(testCursor, cv); in testBlob()
|
/cts/tests/tests/media/assets/ |
D | fileSequence1.ts | 3495 �_��3���}jznj�r�����ݡ���8=ZE|�3�3����!��_�å�cvi&Ω�%l���~Ix�}��B|�o�^z��aAA�j�Q~7�[�=q�n�SK�…
|
/cts/tests/tests/media/res/raw/ |
D | football_qvga.yuv | 20 …bcfijmokkjhggijjiijjgffffhhhijjgeehmrtuzxwxvvvussrpnkhlv���������wxx{�����cv���������������������… 22 …Ƴ��צ���gotmrqoov|wmmqrqrx||{~�~wpha[WPJFB?=CHIMOPQQQTWX_cly�����������ĸ���cv������|r���sEX~������… 93 …babfgecbaZYZXX\]_ksxwz{qggiklqwwpkqw|����}sg]QPSTY\_a``aa_]\YXXUTTPOOQSW[\\cv������������vjYNQTQRR… 95 …cv�����������������ugdhhjmpqrsuwvtqoonjgdbc`^`bdeebcdfiknrqqpnlmnprtw#&(( +Io��������{��~����}vp… 110 … !" !!""!""!##!$$%%',7JV]eghhggdcccehjlle`cija]eoqWKt��yuvrd[NEOZ^fqz|vna[cv�kQa�����������������… 121 …dcccddecm����������������tmppqtrpsuuvxuv�������~~~{}{ty����{uxxv|��hcdgi^cv{}��~|zxxxzyttz}~{{… 130 …utqrsmfddddddccbccb{���p_abacdfifbbaabcbbccdeedddccccccdgjjjmmjhlt�tmpja^cv�ypgdhkjmvvrsuwxz{zzz… 153 …wyyyy{{xww{zslmlcabcbabeeefffghfcccbabccbbbccdedddegfecbccbbbbccbdffcbcddc^cv�����������������ynoq… 176 …������������������xn\>)29CYgo{���]P��}Fk����������x\>;=<<9:==<:977:8778?MW[cv~z��������gkomhdbeij… 201 …mjjmnqstsqqpnmmz�]5$*+%&'&&()'%%##$,#�����������������������������������|cv�����{C"#$# $*421Ket… [all …]
|