Home
last modified time | relevance | path

Searched refs:PathIterator (Results 1 – 4 of 4) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DCachedPathIteratorFactory.java4 import java.awt.geom.PathIterator;
33 public CachedPathIteratorFactory(PathIterator iterator) { in CachedPathIteratorFactory()
68 case PathIterator.SEG_CUBICTO: in CachedPathIteratorFactory()
80 case PathIterator.SEG_QUADTO: in CachedPathIteratorFactory()
90 case PathIterator.SEG_CLOSE: in CachedPathIteratorFactory()
98 mTypes[i] = PathIterator.SEG_LINETO; in CachedPathIteratorFactory()
102 case PathIterator.SEG_MOVETO: in CachedPathIteratorFactory()
107 case PathIterator.SEG_LINETO: in CachedPathIteratorFactory()
192 case PathIterator.SEG_QUADTO: in getNumberOfPoints()
194 case PathIterator.SEG_CUBICTO: in getNumberOfPoints()
[all …]
DShadowPath.java21 import java.awt.geom.PathIterator;
116 PathIterator iterator = mPath.getPathIterator(null, acceptableError); in approximate()
126 if (previousPoint != null && type != PathIterator.SEG_MOVETO) { in approximate()
295 for (PathIterator it = mPath.getPathIterator(null); !it.isDone(); it.next()) { in isEmpty()
556 PathIterator iterator = mPath.getPathIterator(new AffineTransform(0, 0, dx, 0, 0, dy)); in offset()
578 PathIterator iterator = mPath.getPathIterator(shadowMatrix.getAffineTransform()); in transform()
DRoundRectangle.java4 import java.awt.geom.PathIterator;
269 public PathIterator getPathIterator(final AffineTransform at) { in getPathIterator()
270 return new PathIterator() { in getPathIterator()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DPath.cpp248 TEST(Support, PathIterator) { in TEST() argument