/cts/tests/tests/renderscript/src/android/renderscript/cts/generated/ |
D | TestDistance.rscript | 26 return distance(inLeftVector, inRightVector); 31 return distance(inLeftVector, inRightVector); 36 return distance(inLeftVector, inRightVector); 41 return distance(inLeftVector, inRightVector); 46 return distance(inLeftVector, inRightVector); 51 return distance(inLeftVector, inRightVector); 56 return distance(inLeftVector, inRightVector); 61 return distance(inLeftVector, inRightVector);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/Path/ |
D | ReferencePath.java | 74 float distance, pathRemaining = 0; in calculatePathRemaining() local 79 distance = MathsUtils.distanceCalculationOnXYPlane( in calculatePathRemaining() 82 pathRemaining += distance; in calculatePathRemaining() 159 float distance = MathsUtils.distanceCalculationInXYZSpace( in validateBackToStart() local 166 if (distance > maximumDistanceFromFirstWaypoint) { in validateBackToStart()
|
D | Path.java | 65 float distance = MathsUtils.distanceCalculationOnXYPlane( in getLengthOfCurrentPath() local 68 length += Math.abs(distance); in getLengthOfCurrentPath()
|
D | ComplexMovementPath.java | 134 for (Float distance : referencePathDistances) { in calculateSectionDistance() 135 arrayToReturn.add(distance / (RINGS_PER_PATH + 1f)); in calculateSectionDistance()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/TestPhase/ |
D | Test.java | 130 float distance; in markerTest() local 132 distance = MathsUtils.distanceCalculationInXYZSpace( in markerTest() 135 mMarkerAccuracy.add(distance); in markerTest() 196 float totalDistance, distance; in calculatePathDistance() local 202 distance = MathsUtils.distanceCalculationOnXYPlane( in calculatePathDistance() 205 totalDistance += distance; in calculatePathDistance()
|
D | RobustnessTest.java | 54 for (float distance : mReferencePathDistances) { in RobustnessTest() 55 mPathTotalDistance += distance; in RobustnessTest()
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
D | PathMeasureTest.java | 61 float distance = 1f; in testGetPosTanArraysTooSmall() local 65 mPathMeasure.getPosTan(distance, pos, tan); in testGetPosTanArraysTooSmall() 70 float distance = 1f; in testGetPosTan() local 73 assertFalse(mPathMeasure.getPosTan(distance, pos2, tan2)); in testGetPosTan()
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/ |
D | layered_filter_d1new_helper.rsh | 33 // active pixel to (x,y). Sets the closest distance to sharp->matte and sets the 48 // Initializes the minimum distance from this pixel to the active pixels on 51 min_dist *= min_dist; // Prepares for L2 distance. 62 // L_2 distance: 64 // Whether or not this is an active pixel with a smaller distance. 89 // Initializes the minimum distance from this pixel to the active pixels on 92 min_dist *= min_dist; // Prepares for L2 distance. 103 // L_2 distance: 105 // Whether or not this is an active pixel with a smaller distance.
|
D | layered_filter_f32_helper.rsh | 16 // active pixel to (x,y). Sets the closest distance to sharp->matte and sets the 29 // Initializes the minimum distance from this pixel to the active pixels on 32 min_dist *= min_dist; // Prepares for L2 distance. 42 // L_2 distance: 44 // Whether or not this is an active pixel with a smaller distance.
|
D | layered_filter_fast_d1new.rscript | 168 // The dilated_depth will then be updated in distance transform later. 169 // A valid, non-zero dilated_depth indicates distance transform is 170 // needed for the pixel. Otherwise, the distance transform will be 228 // The dilated_depth will then be updated in distance transform later. 229 // A valid, non-zero dilated_depth indicates distance transform is 230 // needed for the pixel. Otherwise, the distance transform will be 481 // For such a pixel, its matte value can still be zero if its distance 535 // For such a pixel, its matte value can still be zero if its distance 598 // For such a pixel, its matte value can still be zero if its distance 645 // For such a pixel, its matte value can still be zero if its distance
|
D | layer_info.rsh | 19 // distance transform result to be a matte value within [0,1].
|
D | layer_info_fast.rsh | 19 // distance transform result to be a matte value within [0,1].
|
D | layered_filter_fast_f32.rscript | 190 // The dilated_depth will then be updated in distance transform later. 191 // A valid, non-zero dilated_depth indicates distance transform is 192 // needed for the pixel. Otherwise, the distance transform will be 349 // For such a pixel, its matte value can still be zero if its distance 412 // For such a pixel, its matte value can still be zero if its distance
|
/cts/tests/tests/location/src/android/location/cts/ |
D | LocationTest.java | 249 float distance; in testDistanceTo() local 258 distance = zeroLocation.distanceTo(zeroLocation); in testDistanceTo() 259 assertEquals(0, distance, DELTA); in testDistanceTo() 261 distance = zeroLocation.distanceTo(testLocation); in testDistanceTo() 262 assertEquals(6244139.0, distance, 1); in testDistanceTo()
|
/cts/tests/openglperf2/jni/graphics/ |
D | Vector2D.h | 29 float distance(const Vector2D& v);
|
D | Vector2D.cpp | 46 float Vector2D::distance(const Vector2D& v) { in distance() function in Vector2D
|
/cts/tests/tests/animation/src/android/animation/cts/ |
D | ObjectAnimatorTest.java | 700 public void setDistance(float distance) { in testOfObject_Converter() 746 float distance = (Float) anim1.getAnimatedValue(); in testOfObject_Converter() 754 assertEquals(distance, distanceFromPosition, 0.0001f); in testOfObject_Converter() 758 assertTrue(distance >= mLastDistance); in testOfObject_Converter() 760 assertTrue(distance <= mLastDistance); in testOfObject_Converter() 762 mLastDistance = distance; in testOfObject_Converter()
|
D | PropertyValuesHolderTest.java | 594 float distance = (Float) anim1.getAnimatedValue(); in testOfObject_Converter() 605 assertEquals(distance, distanceFromPosition, 0.0001f); in testOfObject_Converter() 609 assertTrue(distance >= mLastDistance); in testOfObject_Converter() 611 assertTrue(distance <= mLastDistance); in testOfObject_Converter() 613 mLastDistance = distance; in testOfObject_Converter()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/ |
D | Manager.java | 133 String distance = String.valueOf( in addPoseDataToPath() 138 + distance in addPoseDataToPath()
|
/cts/tests/openglperf2/jni/reference/scene/flocking/ |
D | Boid.cpp | 33 float dist = mPosition.distance(b->mPosition); in flock()
|
/cts/tests/tests/telephony/current/src/android/telephony/cts/ |
D | CbGeoUtilsTest.java | 56 assertEquals(DIST, p1.distance(p2), DELTA); in testLatLong()
|
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/ |
D | MagnificationGestureHandlerTest.java | 25 import static android.accessibilityservice.cts.utils.GestureUtils.distance; 211 waitOn(mZoomLock, () -> distance(mCurrentZoomCenter, oldCenter) >= mPan / 5); in tripleTapAndDragViewport()
|
/cts/apps/CameraITS/pymodules/its/ |
D | cv2image.py | 84 def __init__(self, chart_file=None, height=None, distance=None, argument 100 self._distance = distance or CHART_DISTANCE_RFOV
|
/cts/apps/CameraITS/tests/sensor_fusion/ |
D | test_sensor_fusion.py | 182 dist = scipy.spatial.distance.correlation(cam_rots, gyro_rots) 209 dists.append(scipy.spatial.distance.correlation(cam_rots, gyro_rots))
|
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/ |
D | GestureUtils.java | 111 public static float distance(PointF a, PointF b) { in distance() method in GestureUtils
|