HomeSort by relevance Sort by last modified time
    Searched refs:PathDataNode (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/util/
PathParser.java 35 PathDataNode[] nodes = createNodesFromPathData(pathData);
38 PathDataNode.nodesToPath(nodes, path);
49 * @return an array of the PathDataNode.
51 public static PathDataNode[] createNodesFromPathData(String pathData) {
58 ArrayList<PathDataNode> list = new ArrayList<PathDataNode>();
73 return list.toArray(new PathDataNode[list.size()]);
77 * @param source The array of PathDataNode to be duplicated.
80 public static PathDataNode[] deepCopyNodes(PathDataNode[] source)
    [all...]
  /frameworks/base/core/java/android/animation/
AnimatorInflater.java 252 * The path is represented as an array of PathDataNode here, which is
255 private static class PathDataEvaluator implements TypeEvaluator<PathParser.PathDataNode[]> {
256 private PathParser.PathDataNode[] mNodeArray;
259 * Create a PathParser.PathDataNode[] that does not reuse the animated value.
261 * a new <code>PathParser.PathDataNode[]</code> will be allocated.
273 public PathDataEvaluator(PathParser.PathDataNode[] nodeArray) {
278 public PathParser.PathDataNode[] evaluate(float fraction,
279 PathParser.PathDataNode[] startPathData,
280 PathParser.PathDataNode[] endPathData) {
377 PathParser.PathDataNode[] nodesFrom = PathParser.createNodesFromPathData(fromString)
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
VectorDrawable.java     [all...]

Completed in 163 milliseconds