Home
last modified time | relevance | path

Searched refs:intersection (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/libs/hwui/
DSpotShadow.h85 static int intersection(const Vector2* poly1, int poly1length, Vector2* poly2, int poly2length);
107 const Vector2* intersection, int intersectionLength);
DSpotShadow.cpp235 int SpotShadow::intersection(const Vector2* poly1, int poly1Length, in intersection() function in android::uirenderer::SpotShadow
282 Vector2 intersection = {0, 0}; in intersection() local
294 intersection); in intersection()
296 poly[count].x = intersection.x; in intersection()
297 poly[count].y = intersection.y; in intersection()
867 return intersection(umbra, umbraLength, in calculateOccludedUmbra()
1610 const Vector2* intersection, int intersectionLength) { in testIntersection() argument
1632 if (testPointInsidePolygon(testPoint, intersection, intersectionLength)) { in testIntersection()
1650 dumpPolygon(intersection, intersectionLength, "intersection"); in testIntersection()
1652 Vector2 delta = intersection[i] - intersection[i - 1]; in testIntersection()
/frameworks/base/test-runner/src/android/test/
DMoreAsserts.java223 Set<Object> intersection = new HashSet<Object>(expected); in assertEquals() local
224 intersection.retainAll(actual); in assertEquals()
229 + "\nIntersection: " + intersection); in assertEquals()
/frameworks/base/core/java/android/view/
DViewGroup.java804 RectF intersection = intersections.get(i); in translateBoundsAndIntersectionsInWindowCoordinates() local
805 matrix.mapRect(intersection); in translateBoundsAndIntersectionsInWindowCoordinates()
870 RectF intersection = new RectF(siblingBounds); in translateBoundsAndIntersectionsInWindowCoordinates() local
871 intersections.add(intersection); in translateBoundsAndIntersectionsInWindowCoordinates()
DView.java5832 RectF intersection = intersections.remove(i); in computeClickPointInScreenForAccessibility() local
5833 region.op((int) intersection.left, (int) intersection.top, in computeClickPointInScreenForAccessibility()
5834 (int) intersection.right, (int) intersection.bottom, in computeClickPointInScreenForAccessibility()
5883 RectF intersection = rects.get(i); in offsetRects() local
5884 intersection.offset(offsetX, offsetY); in offsetRects()