Home | History | Annotate | Download | only in graphics

Lines Matching refs:pathMeasure

30  * Delegate implementing the native methods of {@link android.graphics.PathMeasure}
32 * Through the layoutlib_create tool, the original native methods of PathMeasure have been
38 * and the original PathMeasure class.
83 "PathMeasure.getPostTan is not supported.", null, null);
91 "PathMeasure.getMatrix is not supported.", null, null);
98 "PathMeasure.nextContour is not supported.", null, null);
105 PathMeasure_Delegate pathMeasure = sManager.getDelegate(native_instance);
106 assert pathMeasure != null;
116 pathMeasure.mOriginalPathIterator = new CachedPathIteratorFactory(pathDelegate.getJavaShape()
120 pathMeasure.mNativePath = native_path;
125 PathMeasure_Delegate pathMeasure = sManager.getDelegate(native_instance);
126 assert pathMeasure != null;
128 if (pathMeasure.mOriginalPathIterator == null) {
132 return pathMeasure.mOriginalPathIterator.iterator().getTotalLength();
137 PathMeasure_Delegate pathMeasure = sManager.getDelegate(native_instance);
138 assert pathMeasure != null;
140 Path_Delegate path = Path_Delegate.getDelegate(pathMeasure.mNativePath);
166 PathMeasure_Delegate pathMeasure = sManager.getDelegate(native_instance);
167 assert pathMeasure != null;
169 CachedPathIterator iterator = pathMeasure.mOriginalPathIterator.iterator();