Home
last modified time | relevance | path

Searched refs:indices (Results 1 – 15 of 15) sorted by relevance

/cts/tests/sensor/src/android/hardware/cts/helpers/sensorverification/
DEventOrderingVerificationTest.java66 List<Integer> indices = getIndices(stats); in testSingleOutofOrder() local
67 assertTrue(indices.contains(2)); in testSingleOutofOrder()
83 List<Integer> indices = getIndices(stats); in testMultipleOutOfOrder() local
84 assertTrue(indices.contains(1)); in testMultipleOutOfOrder()
85 assertTrue(indices.contains(2)); in testMultipleOutOfOrder()
86 assertTrue(indices.contains(3)); in testMultipleOutOfOrder()
87 assertTrue(indices.contains(4)); in testMultipleOutOfOrder()
109 List<Integer> indices = new ArrayList<Integer>(primitiveIndices.length); in getIndices() local
111 indices.add(index); in getIndices()
113 return indices; in getIndices()
DEventGapVerificationTest.java69 int[] indices) { in runVerification() argument
86 assertEquals(indices.length, stats.getValue(SensorStats.EVENT_GAP_COUNT_KEY)); in runVerification()
89 assertEquals(indices.length, actualIndices.length); in runVerification()
91 for (int i = 0; i < indices.length; i++) { in runVerification()
92 assertEquals(indices[i], actualIndices[i]); in runVerification()
DAbstractSensorVerification.java52 int[] indices = new int[eventsCount]; in getIndexArray() local
54 indices[i] = indexedEvents.get(i).index; in getIndexArray()
56 return indices; in getIndexArray()
DTimestampClockSourceVerificationTest.java165 int[] indices) { in runVerification() argument
183 … assertEquals(indices.length, stats.getValue(SensorStats.EVENT_TIME_WRONG_CLOCKSOURCE_COUNT_KEY)); in runVerification()
189 assertEquals(indices.length, actualIndices.length); in runVerification()
191 for (int i = 0; i < indices.length; i++) { in runVerification()
192 assertEquals(indices[i], actualIndices[i]); in runVerification()
/cts/suite/audio_quality/test/
DTaskSequentialTest.cpp53 std::list<TaskCase::IndexPair>* indices = mTestCase->findAllIndices(RE); in TEST_F() local
54 ASSERT_TRUE(indices != NULL); in TEST_F()
55 ASSERT_TRUE(indices->size() == 1); in TEST_F()
60 delete indices; in TEST_F()
/cts/tests/tests/graphics/src/android/graphics/cts/
DCanvas_VertexModeTest.java52 short[] indices = { 0, 1, 2, 3, 4, 1 }; in testValues() local
66 indices, in testValues()
79 indices, in testValues()
DCanvasTest.java1674 final short[] indices = { in testDrawVerticesTooFewVerts() local
1680 mCanvas.drawVertices(VertexMode.TRIANGLES, 10, verts, 8, texs, 0, colors, 0, indices, in testDrawVerticesTooFewVerts()
1689 final short[] indices = { in testDrawVerticesTooFewTexs() local
1695 mCanvas.drawVertices(VertexMode.TRIANGLES, 10, verts, 0, texs, 30, colors, 0, indices, in testDrawVerticesTooFewTexs()
1704 final short[] indices = { in testDrawVerticesTooFewColors() local
1710 mCanvas.drawVertices(VertexMode.TRIANGLES, 10, verts, 0, texs, 0, colors, 30, indices, in testDrawVerticesTooFewColors()
1719 final short[] indices = { in testDrawVerticesTooFewIndices() local
1725 mCanvas.drawVertices(VertexMode.TRIANGLES, 10, verts, 0, texs, 0, colors, 0, indices, in testDrawVerticesTooFewIndices()
1734 final short[] indices = { in testDrawVertices() local
1740 mCanvas.drawVertices(VertexMode.TRIANGLES, 0, verts, 0, null, 0, colors, 0, indices, 0, 0, in testDrawVertices()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/cube/
DCube.java55 byte indices[] = { in Cube()
84 mIndexBuffer = ByteBuffer.allocateDirect(indices.length); in Cube()
85 mIndexBuffer.put(indices); in Cube()
/cts/tests/tests/openglperf/src/android/openglperf/cts/
DPlanetsRenderer.java206 ShortBuffer[] indices = mSpheres[i].getIndices(); in onDrawFrame() local
220 indices[j]); in onDrawFrame()
410 ShortBuffer[] indices = mSpheres[i].getIndices(); in createVbo() local
416 indices[j].limit() * Sphere.SHORT_SIZE, indices[j], in createVbo()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/RenderUtils/
DObjImporter.java155 int[] indices = new int[]{0, 1, 2, 0, 2, 3}; in parse() local
158 int index = indices[i]; in parse()
/cts/tests/tests/jni/libjnitest/
Dandroid_jni_cts_InstanceNonce.c100 static int indices[] = { 0, 50, 99 }; in InstanceNonce_returnStringArray() local
129 (*env)->SetObjectArrayElement(env, result, indices[i], s); in InstanceNonce_returnStringArray()
Dandroid_jni_cts_StaticNonce.c99 static int indices[] = { 0, 50, 99 }; in StaticNonce_returnStringArray() local
128 (*env)->SetObjectArrayElement(env, result, indices[i], s); in StaticNonce_returnStringArray()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java562 ArrayList<Integer> indices = remainingResultIndicesMap.get(request); in getTotalCaptureResultsForRequests() local
563 if (indices == null) { in getTotalCaptureResultsForRequests()
564 indices = new ArrayList<>(); in getTotalCaptureResultsForRequests()
565 remainingResultIndicesMap.put(request, indices); in getTotalCaptureResultsForRequests()
567 indices.add(i); in getTotalCaptureResultsForRequests()
575 ArrayList<Integer> indices = remainingResultIndicesMap.get(request); in getTotalCaptureResultsForRequests() local
576 if (indices != null) { in getTotalCaptureResultsForRequests()
577 results[indices.get(0)] = result; in getTotalCaptureResultsForRequests()
578 indices.remove(0); in getTotalCaptureResultsForRequests()
581 if (indices.isEmpty()) { in getTotalCaptureResultsForRequests()
/cts/tests/tests/media/src/android/media/cts/
DMediaCodecTest.java822 List<Integer> indices = new ArrayList<>(); in getOutputBufferIndices() local
824 feedMoreFrames = indices.isEmpty(); in getOutputBufferIndices()
829 indices.add(index); in getOutputBufferIndices()
833 assertFalse(indices.isEmpty()); in getOutputBufferIndices()
834 return indices; in getOutputBufferIndices()
/cts/tools/vm-tests-tf/lib/
Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/ ...