/frameworks/base/libs/hwui/jni/ |
D | android_util_PathParser.cpp | 43 PathData* pathData = new PathData(); in createEmptyPathData() 48 PathData* pathData = reinterpret_cast<PathData*>(pathDataPtr); in createPathData() 49 PathData* newPathData = new PathData(*pathData); in createPathData() 55 PathData* pathData = new PathData(); in createPathDataFromStringPath() 70 PathData* outPathData = reinterpret_cast<PathData*>(outPathDataPtr); in interpolatePathData() 71 PathData* fromPathData = reinterpret_cast<PathData*>(fromPathDataPtr); in interpolatePathData() 72 PathData* toPathData = reinterpret_cast<PathData*>(toPathDataPtr); in interpolatePathData() 78 PathData* pathData = reinterpret_cast<PathData*>(pathDataHandle); in deletePathData() 83 PathData* fromPathData = reinterpret_cast<PathData*>(fromPathDataPtr); in canMorphPathData() 84 PathData* toPathData = reinterpret_cast<PathData*>(toPathDataPtr); in canMorphPathData() [all …]
|
D | android_graphics_drawable_AnimatedVectorDrawable.cpp | 115 PathData* startData = reinterpret_cast<PathData*>(startValuePtr); in createPathDataPropertyHolder() 116 PathData* endData = reinterpret_cast<PathData*>(endValuePtr); in createPathDataPropertyHolder()
|
D | android_graphics_drawable_VectorDrawable.cpp | 188 PathData data; in setPathString() 272 PathData* pathData = reinterpret_cast<PathData*>(pathDataPtr); in setPathData()
|
/frameworks/base/libs/hwui/utils/ |
D | VectorDrawableUtils.h | 31 static bool canMorph(const PathData& morphFrom, const PathData& morphTo); 32 static bool interpolatePathData(PathData* outData, const PathData& morphFrom, 33 const PathData& morphTo, float fraction); 34 static void verbsToPath(SkPath* outPath, const PathData& data); 35 static void interpolatePaths(PathData* outPathData, const PathData& from, const PathData& to,
|
D | VectorDrawableUtils.cpp | 39 bool VectorDrawableUtils::canMorph(const PathData& morphFrom, const PathData& morphTo) { in canMorph() 53 bool VectorDrawableUtils::interpolatePathData(PathData* outData, const PathData& morphFrom, in interpolatePathData() 54 const PathData& morphTo, float fraction) { in interpolatePathData() 65 void VectorDrawableUtils::verbsToPath(SkPath* outPath, const PathData& data) { in verbsToPath() 88 void VectorDrawableUtils::interpolatePaths(PathData* outData, const PathData& from, in interpolatePaths() 89 const PathData& to, float fraction) { in interpolatePaths()
|
/frameworks/base/core/java/android/util/ |
D | PathParser.java | 49 public static void createPathFromPathData(Path outPath, PathData data) { in createPathFromPathData() 58 public static boolean canMorph(PathData pathDataFrom, PathData pathDataTo) { in canMorph() 68 public static class PathData { class in PathParser 70 public PathData() { in PathData() method in PathParser.PathData 74 public PathData(PathData data) { in PathData() method in PathParser.PathData 78 public PathData(String pathString) { in PathData() method in PathParser.PathData 95 public void setPathData(PathData source) { in setPathData() 118 public static boolean interpolatePathData(PathData outData, PathData fromData, PathData toData, in interpolatePathData()
|
/frameworks/base/core/java/com/android/internal/widget/remotecompose/player/platform/ |
D | FloatsToPath.java | 23 import com.android.internal.widget.remotecompose.core.operations.PathData; 31 case PathData.MOVE: in genPath() 36 case PathData.LINE: in genPath() 41 case PathData.QUADRATIC: in genPath() 47 case PathData.CONIC: in genPath() 59 case PathData.CUBIC: in genPath() 67 case PathData.CLOSE: in genPath() 71 case PathData.DONE: in genPath()
|
D | AndroidPlatformServices.java | 26 import com.android.internal.widget.remotecompose.core.operations.PathData; 120 pathFloat[count++] = PathData.MOVE_NAN; in androidPathToFloatArray() 123 pathFloat[count++] = PathData.LINE_NAN; in androidPathToFloatArray() 126 pathFloat[count++] = PathData.QUADRATIC_NAN; in androidPathToFloatArray() 129 pathFloat[count++] = PathData.CONIC_NAN; in androidPathToFloatArray() 132 pathFloat[count++] = PathData.CUBIC_NAN; in androidPathToFloatArray() 135 pathFloat[count++] = PathData.CLOSE_NAN; in androidPathToFloatArray() 138 pathFloat[count++] = PathData.DONE_NAN; in androidPathToFloatArray()
|
/frameworks/base/libs/hwui/ |
D | PropertyValuesHolder.h | 58 class PathEvaluator : public Evaluator<PathData> { 59 virtual void evaluate(PathData* out, const PathData& from, const PathData& to, 135 class PathDataPropertyValuesHolder : public PropertyValuesHolderImpl<PathData> { 137 PathDataPropertyValuesHolder(VectorDrawable::Path* ptr, PathData* startValue, in PathDataPropertyValuesHolder() 138 PathData* endValue) in PathDataPropertyValuesHolder() 146 PathData mPathData;
|
D | PathParser.h | 42 static void getPathDataFromAsciiString(PathData* outData, ParseResult* result, 44 static void dump(const PathData& data);
|
D | PropertyValuesHolder.cpp | 49 void PathEvaluator::evaluate(PathData* out, const PathData& from, const PathData& to, in evaluate()
|
D | PathParser.cpp | 215 void PathParser::getPathDataFromAsciiString(PathData* data, ParseResult* result, in getPathDataFromAsciiString() 266 void PathParser::dump(const PathData& data) { in dump() 289 PathData pathData; in parseAsciiStringForSkPath()
|
D | VectorDrawable.h | 690 typedef VectorDrawable::Path::Data PathData; typedef
|
/frameworks/base/libs/hwui/tests/unit/ |
D | VectorDrawableTests.cpp | 37 const PathData pathData; 258 static bool hasSameVerbs(const PathData& from, const PathData& to) { in hasSameVerbs() 266 PathData pathData; in TEST() 274 PathData pathData; in TEST() 333 PathData outData; in TEST() 344 PathData toPathData = fromData.pathData; in TEST() 348 const PathData& fromPathData = fromData.pathData; in TEST() 349 PathData outData; in TEST()
|
/frameworks/base/core/java/android/animation/ |
D | AnimatorInflater.java | 261 private static class PathDataEvaluator implements TypeEvaluator<PathParser.PathData> { 262 private final PathParser.PathData mPathData = new PathParser.PathData(); 265 public PathParser.PathData evaluate(float fraction, PathParser.PathData startPathData, in evaluate() 266 PathParser.PathData endPathData) { in evaluate() 301 PathParser.PathData nodesFrom = fromString == null in getPVH() 302 ? null : new PathParser.PathData(fromString); in getPVH() 303 PathParser.PathData nodesTo = toString == null in getPVH() 304 ? null : new PathParser.PathData(toString); in getPVH() 461 PathParser.PathData pathDataFrom = fromString == null in setupAnimatorForPath() 462 ? null : new PathParser.PathData(fromString); in setupAnimatorForPath() [all …]
|
D | PropertyValuesHolder.java | 1084 if (values.startValue instanceof PathParser.PathData) { in getPropertyValues() 1087 values.startValue = new PathParser.PathData((PathParser.PathData) values.startValue); in getPropertyValues() 1090 if (values.endValue instanceof PathParser.PathData) { in getPropertyValues() 1093 values.endValue = new PathParser.PathData((PathParser.PathData) values.endValue); in getPropertyValues()
|
/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/operations/ |
D | PathData.java | 37 public class PathData extends Operation implements VariableSupport, Serializable { class 45 PathData(int instanceId, float[] floatPath) { in PathData() method in PathData 165 operations.add(new PathData(imageId, data)); in read()
|
D | PathCreate.java | 47 mFloatPath = new float[] {PathData.MOVE_NAN, startX, startY}; in PathCreate()
|
D | PathAppend.java | 81 return PathData.pathString(mFloatPath); in deepToString()
|
/frameworks/base/libs/hwui/tests/microbench/ |
D | PathParserBench.cpp | 45 PathData outData; in BM_PathParser_parseStringPathForPathData()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | VectorDrawable.java | 1605 protected PathParser.PathData mPathData = null; 1610 private static final Property<VPath, PathParser.PathData> PATH_DATA = 1611 new Property<VPath, PathParser.PathData>(PathParser.PathData.class, "pathData") { 1613 public void set(VPath object, PathParser.PathData data) { 1618 public PathParser.PathData get(VPath object) { 1638 mPathData = copy.mPathData == null ? null : new PathParser.PathData(copy.mPathData); in VPath() 1647 public PathParser.PathData getPathData() { in getPathData() 1653 public void setPathData(PathParser.PathData pathData) { in setPathData() 1732 mPathData = new PathParser.PathData(pathDataString); in updateStateFromTypedArray() 2028 mPathData = new PathParser.PathData(pathString); in updateStateFromTypedArray()
|
D | AnimatedVectorDrawable.java | 1343 if (mTmpValues.endValue instanceof PathParser.PathData && in createRTAnimator() 1399 long startPathDataPtr = ((PathParser.PathData) mTmpValues.startValue) in createRTAnimatorForPath() 1401 long endPathDataPtr = ((PathParser.PathData) mTmpValues.endValue) in createRTAnimatorForPath()
|
/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/ |
D | Operations.java | 73 import com.android.internal.widget.remotecompose.core.operations.PathData; 338 map.put(DATA_PATH, PathData::read); in map.put()
|
D | RemoteComposeBuffer.java | 76 import com.android.internal.widget.remotecompose.core.operations.PathData; 1012 PathData.apply(mBuffer, id, pathData); in addPathData()
|
/frameworks/base/boot/ |
D | boot-image-profile.txt | 190 …;->evaluate(FLandroid/util/PathParser$PathData;Landroid/util/PathParser$PathData;)Landroid/util/Pa… 16190 HSPLandroid/util/PathParser$PathData;-><init>(Landroid/util/PathParser$PathData;)V 16191 HSPLandroid/util/PathParser$PathData;-><init>(Ljava/lang/String;)V 16192 HSPLandroid/util/PathParser$PathData;->finalize()V 16193 HSPLandroid/util/PathParser$PathData;->getNativePtr()J 32110 Landroid/util/PathParser$PathData;
|