Lines Matching refs:path

117  * <dt><code>&lt;path></code></dt>
121 * <dd>Defines the name of the path.</dd>
123 * <dd>Defines path string. This is using exactly same format as "d" attribute
124 * in the SVG's path data. This is defined in the viewport space.</dd>
126 * <dd>Defines the color to fill the path (none if not present).</dd>
128 * <dd>Defines the color to draw the path outline (none if not present).</dd>
130 * <dd>The width a path stroke.</dd>
132 * <dd>The opacity of a path stroke.</dd>
134 * <dd>The opacity to fill the path with.</dd>
136 * <dd>The fraction of the path to trim from the start, in the range from 0 to 1.</dd>
138 * <dd>The fraction of the path to trim from the end, in the range from 0 to 1.</dd>
143 * <dd>Sets the linecap for a stroked path: butt, round, square.</dd>
145 * <dd>Sets the lineJoin for a stroked path: miter,round,bevel.</dd>
147 * <dd>Sets the Miter limit for a stroked path.</dd>
152 * <dt><code>&lt;clip-path></code></dt>
153 * <dd>Defines path to be the current clip.
156 * <dd>Defines the name of the clip path.</dd>
158 * <dd>Defines clip path string. This is using exactly same format as "d" attribute
159 * in the SVG's path data.</dd>
174 * &lt;path
186 private static final String SHAPE_CLIP_PATH = "clip-path";
188 private static final String SHAPE_PATH = "path";
386 final VPathRenderer path = state.mVPathRenderer;
387 if (path != null && path.canApplyTheme()) {
388 path.applyTheme(t);
394 * This is used to calculate the path animation accuracy.
543 final VFullPath path = new VFullPath();
544 path.inflate(res, attrs, theme);
545 currentGroup.mChildren.add(path);
546 if (path.getPathName() != null) {
547 pathRenderer.mVGTargetsMap.put(path.getPathName(), path);
550 state.mChangingConfigurations |= path.mChangingConfigurations;
552 final VClipPath path = new VClipPath();
553 path.inflate(res, attrs, theme);
554 currentGroup.mChildren.add(path);
555 if (path.getPathName() != null) {
556 pathRenderer.mVGTargetsMap.put(path.getPathName(), path);
558 state.mChangingConfigurations |= path.mChangingConfigurations;
779 * Each node can be a group node, or a path.
780 * A group node can have groups or paths as children, but a path node has
861 // We can do a tree traverse here, if there is one path return true,
884 // Apply theme to every path of the tree.
948 final Path path = mPath;
953 mRenderPath.addPath(path, mFinalPathMatrix);
969 path.reset();
971 mPathMeasure.getSegment(start, len, path, true);
972 mPathMeasure.getSegment(0f, end, path, true);
974 mPathMeasure.getSegment(start, end, path, true);
976 path.rLineTo(0, 0); // fix bug in measure
978 mRenderPath.addPath(path, mFinalPathMatrix);
1242 * Common Path information for clip path and normal path.
1259 public void toPath(Path path) {
1260 path.reset();
1262 PathParser.PathDataNode.nodesToPath(mNodes, path);
1299 * Clip path, which only has name and pathData.
1339 * Normal path, which contains all the fill / paint information.