Home
last modified time | relevance | path

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

/cts/tests/tests/widget/src/android/widget/cts/
DRemoteViewsTest.java745 MyRemotableView customView = (MyRemotableView) mResult.findViewById(R.id.remoteView_custom); in testSetByte() local
746 assertEquals(0, customView.getByteField()); in testSetByte()
751 assertEquals(b, customView.getByteField()); in testSetByte()
760 MyRemotableView customView = (MyRemotableView) mResult.findViewById(R.id.remoteView_custom); in testSetChar() local
761 assertEquals('\u0000', customView.getCharField()); in testSetChar()
765 assertEquals('q', customView.getCharField()); in testSetChar()
774 MyRemotableView customView = (MyRemotableView) mResult.findViewById(R.id.remoteView_custom); in testSetDouble() local
775 assertEquals(0.0, customView.getDoubleField(), 0.0f); in testSetDouble()
779 assertEquals(0.5, customView.getDoubleField(), 0.001f); in testSetDouble()
788 MyRemotableView customView = (MyRemotableView) mResult.findViewById(R.id.remoteView_custom); in testSetShort() local
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/
DDialogTestListActivity.java162 View customView = test.getCustomView(); in showManualTestDialog() local
163 if (customView != null) { in showManualTestDialog()
164 dialogBuilder.setView(customView); in showManualTestDialog()