Home
last modified time | relevance | path

Searched refs:setX (Results 1 – 25 of 60) sorted by relevance

123

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DForEachTest.java59 Type t = new Type.Builder(mRS, Element.I8(mRS)).setX(x).create(); in testForEach()
66 t = new Type.Builder(mRS, Element.U8(mRS)).setX(x).create(); in testForEach()
80 t = new Type.Builder(mRS, Element.I8_2(mRS)).setX(x).create(); in testForEach()
82 t = new Type.Builder(mRS, Element.U8_2(mRS)).setX(x).create(); in testForEach()
96 t = new Type.Builder(mRS, Element.I8_3(mRS)).setX(x).create(); in testForEach()
98 t = new Type.Builder(mRS, Element.U8_3(mRS)).setX(x).create(); in testForEach()
112 t = new Type.Builder(mRS, Element.I8_4(mRS)).setX(x).create(); in testForEach()
114 t = new Type.Builder(mRS, Element.U8_4(mRS)).setX(x).create(); in testForEach()
128 t = new Type.Builder(mRS, Element.I16(mRS)).setX(x).create(); in testForEach()
130 t = new Type.Builder(mRS, Element.U16(mRS)).setX(x).create(); in testForEach()
[all …]
DKernelTest.java59 Type t = new Type.Builder(mRS, Element.I8(mRS)).setX(x).create(); in testForEach()
66 t = new Type.Builder(mRS, Element.U8(mRS)).setX(x).create(); in testForEach()
80 t = new Type.Builder(mRS, Element.I8_2(mRS)).setX(x).create(); in testForEach()
82 t = new Type.Builder(mRS, Element.U8_2(mRS)).setX(x).create(); in testForEach()
96 t = new Type.Builder(mRS, Element.I8_3(mRS)).setX(x).create(); in testForEach()
98 t = new Type.Builder(mRS, Element.U8_3(mRS)).setX(x).create(); in testForEach()
112 t = new Type.Builder(mRS, Element.I8_4(mRS)).setX(x).create(); in testForEach()
114 t = new Type.Builder(mRS, Element.U8_4(mRS)).setX(x).create(); in testForEach()
128 t = new Type.Builder(mRS, Element.I16(mRS)).setX(x).create(); in testForEach()
130 t = new Type.Builder(mRS, Element.U16(mRS)).setX(x).create(); in testForEach()
[all …]
DTypeTest.java27 b.setX(x).setY(y); in testBuilderSizes()
92 b.setX(x).setY(y); in testGetCount()
102 Type t = b.setX(8).setY(1).create(); in testGetCount()
106 t = b.setX(8).setY(8).create(); in testGetCount()
110 t = b.setX(8).setY(4).create(); in testGetCount()
114 t = b.setX(4).setY(8).create(); in testGetCount()
117 t = b.setX(7).setY(1).create(); in testGetCount()
121 t = b.setX(7).setY(3).create(); in testGetCount()
128 b.setX(1); in testGetElement()
134 b.setX(3); in testGetX()
[all …]
DLaunchClip.java69 tb.setX(mDimX); in setup()
170 tb.setX(ax); in makeAdapter()
180 a.setX(ox); in makeAdapter()
197 sc.setX(9, 77); in testWrite1D()
208 sc.setX(9, 77); in testWrite1DAdapter1D()
221 sc.setX(9, 77); in testWrite2D()
233 sc.setX(9, 77); in testWrite2DAdapter1D()
246 sc.setX(9, 77); in testWrite2DAdapter2D()
260 sc.setX(9, 37); in testWrite3D()
273 sc.setX(9, 37); in testWrite3DAdapter1D()
[all …]
DVoidPtr.java32 Type t = typeBuilder.setX(1).create(); in setupVoidPtr()
67 Type t = typeBuilder.setX(10).setY(15).create(); in testVoidOutInt()
95 Type t = typeBuilder.setX(10).setY(15).create(); in testVoidOutChar()
124 Type t = typeBuilder.setX(10).setY(15).create(); in testVoidInInt()
155 Type t = typeBuilder.setX(10).setY(15).create(); in testVoidInChar()
DAllocationCopyPaddedTest.java35 typeBuilder.setX(width); in test_AllocationPadded_Byte3_1D()
64 typeBuilder.setX(width).setY(height); in test_AllocationPadded_Byte3_2D()
94 typeBuilder.setX(w).setY(h).setZ(d); in test_AllocationPadded_Byte3_3D()
125 typeBuilder.setX(width); in test_AllocationPadded_Short3_1D_Helper()
162 typeBuilder.setX(width).setY(height); in test_AllocationPadded_Short3_2D_Helper()
200 typeBuilder.setX(w).setY(h).setZ(d); in test_AllocationPadded_Short3_3D_Helper()
236 typeBuilder.setX(width); in test_AllocationPadded_Int3_1D()
268 typeBuilder.setX(width).setY(height); in test_AllocationPadded_Int3_2D()
301 typeBuilder.setX(w).setY(h).setZ(d); in test_AllocationPadded_Int3_3D()
332 typeBuilder.setX(width); in test_AllocationPadded_Float3_1D()
[all …]
DAllocationTest.java47 typeBuilder.setX(x).setY(y); in createTypedHelper()
59 Allocation.createTyped(mRS, typeBuilder.setX(8).create(), in createTypedTextureHelper()
80 Allocation.createTyped(mRS, typeBuilder.setX(7).setY(1).create(), in createTypedTextureHelper()
83 Allocation.createTyped(mRS, typeBuilder.setX(7).setY(3).create(), in createTypedTextureHelper()
86 Allocation.createTyped(mRS, typeBuilder.setX(7).setY(7).create(), in createTypedTextureHelper()
91 Allocation.createTyped(mRS, typeBuilder.setX(7).setY(1).create(), in createTypedTextureHelper()
95 Allocation.createTyped(mRS, typeBuilder.setX(7).setY(3).create(), in createTypedTextureHelper()
99 Allocation.createTyped(mRS, typeBuilder.setX(7).setY(7).create(), in createTypedTextureHelper()
276 b.setX(8).setY(8); in testAllocationMipmapControl()
284 b.setX(8).setY(8).setFaces(true); in testCubemapFaces()
[all …]
DBaseObjTest.java29 Type T = TB.setX(1).create(); in testBaseObj()
40 T = TB.setX(2).create(); in testBaseObj()
DAllocationCopyToTest.java45 typeBuilder.setX(width); in test_Allocationcopy1DRangeTo_Byte()
82 typeBuilder.setX(width); in test_Allocationcopy1DRangeTo_Short_Helper()
130 typeBuilder.setX(width); in test_Allocationcopy1DRangeTo_Int()
167 typeBuilder.setX(width); in test_Allocationcopy1DRangeTo_Float()
204 typeBuilder.setX(width); in test_Allocationcopy1DRangeTo_Long()
243 typeBuilder.setX(width).setY(height); in test_Allocationcopy2DRangeTo_Byte()
277 typeBuilder.setX(width).setY(height); in test_Allocationcopy2DRangeTo_Short_Helper()
322 typeBuilder.setX(width).setY(height); in test_Allocationcopy2DRangeTo_Int()
356 typeBuilder.setX(width).setY(height); in test_Allocationcopy2DRangeTo_Float()
390 typeBuilder.setX(width).setY(height); in test_Allocationcopy2DRangeTo_Long()
[all …]
DSingleSourceForEachTest.java45 i32TypeBuilder.setX(X).setY(Y); in setUp()
103 sc.setX(0, X); in testKernelLaunchWithOptions()
117 sc.setX(0, X); in testAllocationlessKernelLaunch()
DRsAllocationCopyTest.java39 typeBuilder.setX(width); in test_RsAllocationCopy1D_Byte()
86 typeBuilder.setX(width); in test_RsAllocationCopy1D_Short()
133 typeBuilder.setX(width); in test_RsAllocationCopy1D_Int()
180 typeBuilder.setX(width); in test_RsAllocationCopy1D_Float()
228 typeBuilder.setX(width); in test_RsAllocationCopy1D_Long()
277 typeBuilder.setX(width).setY(height); in test_RsAllocationCopy2D_Byte()
333 typeBuilder.setX(width).setY(height); in test_RsAllocationCopy2D_Short()
389 typeBuilder.setX(width).setY(height); in test_RsAllocationCopy2D_Int()
445 typeBuilder.setX(width).setY(height); in test_RsAllocationCopy2D_Float()
501 typeBuilder.setX(width).setY(height); in test_RsAllocationCopy2D_Long()
DSampleTest.java72 mAlloc_RGBA_1D = createAlloc(b.setX(8).create()); in setUp()
73 mAlloc_RGBA_2D = createAlloc(b.setX(8).setY(8).create()); in setUp()
DTestCtxDim.java29 typeBuilder.setX(X); in test()
DDebugContext.java51 Type t = typeBuilder.setX(1).create(); in setupDebugContext()
132 typeBuilder.setX(Width); in SetupAllocationCopyTests()
134 typeBuilder.setX(Width).setY(Height); in SetupAllocationCopyTests()
442 typeBuilder1.setX(width); in testDebugContextRsAllocationCopy2D_Short_WrongD()
446 typeBuilder2.setX(width).setY(height); in testDebugContextRsAllocationCopy2D_Short_WrongD()
/cts/tests/tests/hardware/src/android/hardware/input/cts/tests/
DVirtualStylusMotionEventTest.java54 .setX(x) in parcelAndUnparcel_matches()
97 .setX(0) in stylusMotionEvent_noAction_throwsIae()
107 .setX(0) in stylusMotionEvent_invalidAction_throwsIae()
117 .setX(0) in stylusMotionEvent_invalidToolType_throwsIae()
136 .setX(5) in stylusMotionEvent_noY_throwsIae()
145 .setX(0) in stylusMotionEvent_invalidEventTime_throwsIae()
156 .setX(0) in stylusMotionEvent_invalidPressure_throwsIae()
163 .setX(0) in stylusMotionEvent_invalidPressure_throwsIae()
174 .setX(0) in stylusMotionEvent_invalidTiltX_throwsIae()
181 .setX(0) in stylusMotionEvent_invalidTiltX_throwsIae()
[all …]
DVirtualTouchEventTest.java45 .setX(x) in parcelAndUnparcel_matches()
85 .setX(0f) in touchEvent_noAction_throwsIae()
96 .setX(0f) in touchEvent_noPointerId_throwsIae()
105 .setX(0f) in touchEvent_noToolType_throwsIae()
126 .setX(0f) in touchEvent_noY_throwsIae()
136 .setX(0f) in touchEvent_invalidEventTime_throwsIae()
148 .setX(0f) in touchEvent_cancelUsedImproperly_throwsIae()
159 .setX(0f) in touchEvent_palmUsedImproperly_throwsIae()
175 .setX(x) in touchEvent_palmAndCancelUsedProperly()
202 .setX(x) in touchEvent_valid_created()
[all …]
DVirtualTouchscreenTest.java75 .setX(x) in sendTouchEvent()
93 builder.setX(x + i) in sendTouchEvent()
104 .setX(x + moveEventCount) in sendTouchEvent()
143 .setX(x) in sendTouchEvent_withoutCreateVirtualDevicePermission_throwsException()
155 .setX(x) in sendHoverEvent()
DVirtualDeviceMirrorDisplayTest.java242 .setX(x) in virtualTouchscreen_touchEvent()
262 builder.setX(x + i) in virtualTouchscreen_touchEvent()
274 .setX(x + moveEventCount) in virtualTouchscreen_touchEvent()
357 .setX(x) in virtualNavigationTouchpad_touchEvent()
366 .setX(x) in virtualNavigationTouchpad_touchEvent()
410 .setX(x) in virtualStylus_touchEvent()
422 builder.setX(x + i) in virtualStylus_touchEvent()
435 .setX(x + moveEventCount) in virtualStylus_touchEvent()
DVirtualStylusTest.java86 .setX(x) in sendTouchEvents()
96 builder.setX(x + i) in sendTouchEvents()
107 .setX(x + moveEventCount) in sendTouchEvents()
232 .setX(x) in sendTouchEvent_withoutCreateVirtualDevicePermission_throwsException()
289 .setX(x) in sendMotionEvent()
/cts/tests/tests/rscpp/librscpptest/
Drs_jni_type.cpp50 b.setX(x); in testTypeBuilderHelper()
120 b.setX(x); in Java_android_cts_rscpp_RSTypeTest_testGetCount()
131 b.setX(8); in Java_android_cts_rscpp_RSTypeTest_testGetCount()
138 b.setX(8); in Java_android_cts_rscpp_RSTypeTest_testGetCount()
144 b.setX(8); in Java_android_cts_rscpp_RSTypeTest_testGetCount()
150 b.setX(4); in Java_android_cts_rscpp_RSTypeTest_testGetCount()
155 b.setX(7); in Java_android_cts_rscpp_RSTypeTest_testGetCount()
161 b.setX(7); in Java_android_cts_rscpp_RSTypeTest_testGetCount()
187 b.setX(4); in Java_android_cts_rscpp_RSTypeTest_testGet()
/cts/tests/tests/rsblas/src/android/renderscript/cts/
DBNNMTest.java133 Type a_type = builder.setX(k).setY(m).create(); in runBNNM()
134 Type b_type = builder.setX(k).setY(n).create(); in runBNNM()
135 Type c_type = builder.setX(n).setY(m).create(); in runBNNM()
451 Type a_type = builder.setX(k).setY(m).create(); in testExceptionHandling()
452 Type b_type = builder.setX(k).setY(n).create(); in testExceptionHandling()
453 Type c_type = builder.setX(n).setY(m).create(); in testExceptionHandling()
/cts/tests/tests/rscpp/src/android/cts/rscpp/
DRSColorMatrixTest.java55 build.setX(X); in testRSColorMatrix0()
86 build.setX(X); in testRSColorMatrix1()
120 build.setX(X); in testRSColorMatrix2()
152 build.setX(X); in testRSColorMatrix3()
183 build.setX(X); in testRSColorMatrix4()
DRS3DLUTTest.java52 build.setX(X); in testRSLUT()
59 buildCube.setX(lutSize); in testRSLUT()
DRSBlurTest.java44 build.setX(X); in testRSBlurOneChannel()
73 build.setX(X); in testRSBlurFourChannels()
/cts/tests/tests/renderscriptlegacy/src/android/renderscriptlegacy/cts/
DLeakTest.java62 Type t = new Type.Builder(mRS, Element.I32(mRS)).setX(x).create(); in testForLeaks()

123