Searched defs:outPath (Results 1 - 3 of 3) sorted by last modified time

/frameworks/base/libs/hwui/
H A DVectorDrawable.cpp80 static void applyTrim(SkPath* outPath, const SkPath& inPath, float trimPathStart, float trimPathEnd, argument
83 *outPath = inPath;
86 outPath->reset();
97 measure.getSegment(start, len, outPath, true);
99 measure.getSegment(0, end, outPath, true);
102 measure.getSegment(start, end, outPath, true);
111 SkPath *outPath; local
116 outPath = tempStagingPath;
122 outPath = &mTrimmedSkPath;
124 outPath
[all...]
/frameworks/base/libs/hwui/utils/
H A DVectorDrawableUtils.cpp35 void addCommand(SkPath* outPath, char previousCmd,
65 void VectorDrawableUtils::verbsToPath(SkPath* outPath, const PathData& data) { argument
69 outPath->reset();
72 resolver.addCommand(outPath, previousCommand, data.verbs[i], &data.points, start,
250 void PathResolver::addCommand(SkPath* outPath, char previousCmd, argument
260 outPath->close();
268 outPath->moveTo(currentX, currentY);
309 outPath->rLineTo(points->at(k + 0), points->at(k + 1));
311 outPath->rMoveTo(points->at(k + 0), points->at(k + 1));
323 outPath
[all...]
/frameworks/base/core/java/android/util/
H A DPathParser.java44 * @param outPath The Path object where path commands will be inserted.
46 public static void createPathFromPathData(Path outPath, PathData data) { argument
47 nCreatePathFromPathData(outPath.mNativePath, data.mNativePathData);

Completed in 74 milliseconds