Searched refs:PathDataNode (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DPathParser.java64 PathDataNode[] nodes = createNodesFromPathData(pathData);
67 PathDataNode.nodesToPath(nodes, path);
78 * @return an array of the PathDataNode.
80 public static PathDataNode[] createNodesFromPathData(String pathData) {
87 ArrayList<PathDataNode> list = new ArrayList<PathDataNode>();
102 return list.toArray(new PathDataNode[list.size()]);
106 * @param source The array of PathDataNode to be duplicated.
109 public static PathDataNode[] deepCopyNodes(PathDataNode[] sourc
295 public static class PathDataNode { class in class:PathParser
300 PathDataNode(char type, float[] params) { method in class:PathParser.PathDataNode
305 PathDataNode(PathDataNode n) { method in class:PathParser.PathDataNode
[all...]
H A DVectorDrawableCompat.java1539 protected PathParser.PathDataNode[] mNodes = null;
1557 public String NodesToString(PathParser.PathDataNode[] nodes) {
1578 PathParser.PathDataNode.nodesToPath(mNodes, path);
1599 public PathParser.PathDataNode[] getPathData() {
1604 public void setPathData(PathParser.PathDataNode[] nodes) {
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DPathParser_Delegate.java52 private PathDataNode[] mPathDataNodes;
58 private PathParser_Delegate(@NonNull PathDataNode[] nodes) {
62 public PathDataNode[] getPathDataNodes() {
74 PathDataNode.nodesToPath(createNodesFromPathData(pathString), path_delegate);
84 PathDataNode.nodesToPath(source.mPathDataNodes, path_delegate);
89 PathParser_Delegate newDelegate = new PathParser_Delegate(new PathDataNode[0]);
107 PathDataNode[] nodes = createNodesFromPathData(pathString);
130 out.mPathDataNodes = new PathDataNode[length];
134 out.mPathDataNodes[i] = new PathDataNode(from.mPathDataNodes[i]);
171 * @return an array of the PathDataNode
385 public static class PathDataNode { class in class:PathParser_Delegate
390 private PathDataNode(char type, @NonNull float[] params) { method in class:PathParser_Delegate.PathDataNode
404 private PathDataNode(@NonNull PathDataNode n) { method in class:PathParser_Delegate.PathDataNode
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java965 protected PathParser_Delegate.PathDataNode[] mNodes = null;
982 PathParser_Delegate.PathDataNode.nodesToPath(mNodes,
996 private void setPathData(PathParser_Delegate.PathDataNode[] nodes) {

Completed in 165 milliseconds