Searched refs:PathIterator (Results 1 – 12 of 12) sorted by relevance
/external/robolectric/integration_tests/nativegraphics/src/test/java/org/robolectric/shadows/ |
D | ShadowNativePathIteratorTest.java | 22 import static android.graphics.PathIterator.VERB_CLOSE; 23 import static android.graphics.PathIterator.VERB_CONIC; 24 import static android.graphics.PathIterator.VERB_CUBIC; 25 import static android.graphics.PathIterator.VERB_DONE; 26 import static android.graphics.PathIterator.VERB_LINE; 27 import static android.graphics.PathIterator.VERB_MOVE; 28 import static android.graphics.PathIterator.VERB_QUAD; 36 import android.graphics.PathIterator; 59 PathIterator iterator = mPath.getPathIterator(); in testIteratorExists() 65 PathIterator iterator = mPath.getPathIterator(); in testEmptyPath() [all …]
|
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | CachedPathIteratorFactory.java | 4 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 …]
|
D | ShadowPathIterator.java | 3 import android.graphics.PathIterator; 12 value = PathIterator.class, 24 return PathIterator.VERB_DONE; in nNext() 31 return PathIterator.VERB_DONE; in nNextHost()
|
D | ShadowNativePathIterator.java | 4 import android.graphics.PathIterator; 19 value = PathIterator.class, 54 PathIterator.class, in nNext()
|
D | ShadowLegacyPath.java | 18 import java.awt.geom.PathIterator; 112 PathIterator iterator = mPath.getPathIterator(null, acceptableError); in approximate() 122 if (previousPoint != null && type != PathIterator.SEG_MOVETO) { in approximate() 236 for (PathIterator it = mPath.getPathIterator(null); !it.isDone(); it.next()) { in isEmpty() 498 PathIterator iterator = mPath.getPathIterator(new AffineTransform(0, 0, dx, 0, 0, dy)); in offset() 520 PathIterator iterator = mPath.getPathIterator(shadowMatrix.getAffineTransform()); in transform()
|
D | RoundRectangle.java | 4 import java.awt.geom.PathIterator; 269 public PathIterator getPathIterator(final AffineTransform at) { in getPathIterator() 270 return new PathIterator() { in getPathIterator()
|
/external/skia/third_party/vello/src/ |
D | lib.rs | 218 path_iter: Pin<&mut PathIterator>, in fill() argument 225 path_iter: Pin<&mut PathIterator>, in stroke() argument 227 fn begin_clip(self: &mut Encoding, transform: Affine, path_iter: Pin<&mut PathIterator>); in begin_clip() argument 255 type PathIterator; typedef 256 unsafe fn next_element(self: Pin<&mut PathIterator>, out_elem: *mut PathElement) -> bool; in next_element() argument
|
D | encoding.rs | 52 path_iter: Pin<&mut ffi::PathIterator>, in fill() argument 67 path_iter: Pin<&mut ffi::PathIterator>, in stroke() argument 81 pub fn begin_clip(&mut self, transform: ffi::Affine, path_iter: Pin<&mut ffi::PathIterator>) { in begin_clip() argument 127 iter: Pin<&mut ffi::PathIterator>, in encode_path() argument 143 iter: Pin<&'a mut ffi::PathIterator>, 228 impl Iterator for Pin<&mut ffi::PathIterator> {
|
/external/skia/third_party/vello/cpp/ |
D | path_iterator.h | 13 class PathIterator { 15 virtual ~PathIterator() = default;
|
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowPathTest.java | 12 import android.graphics.PathIterator; 129 for (PathIterator pathIterator = path.getPathIterator(); in iterate_doesNotOOM()
|
/external/skia/src/gpu/graphite/compute/ |
D | VelloRenderer.cpp | 115 class PathIter : public vello_cpp::PathIterator {
|
/external/ow2-asm/tools/retrofitter/src/main/resources/ |
D | jdk1.5.0.12.txt.gz |
|