Searched defs:outPath (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/util/
H A DPathParser.java42 * @param outPath The Path object where path commands will be inserted.
44 public static void createPathFromPathData(Path outPath, PathData data) { argument
45 nCreatePathFromPathData(outPath.mNativePath, data.mNativePathData);
/frameworks/base/tools/aapt2/util/
H A DFiles.cpp159 std::string outPath; local
161 appendPath(&outPath, part);
163 return outPath;
/frameworks/base/libs/hwui/
H A DVectorDrawable.cpp116 void Path::getStagingPath(SkPath* outPath) { argument
117 outPath->reset();
118 VectorDrawableUtils::verbsToPath(outPath, mStagingProperties.getData());
134 static void applyTrim(SkPath* outPath, const SkPath& inPath, float trimPathStart, float trimPathEnd, argument
137 *outPath = inPath;
140 outPath->reset();
151 measure.getSegment(start, len, outPath, true);
153 measure.getSegment(0, end, outPath, true);
156 measure.getSegment(start, end, outPath, true);
175 void FullPath::getStagingPath(SkPath* outPath) { argument
[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/tools/aapt2/link/
H A DLink.cpp134 static bool copyFileToArchive(io::IFile* file, const std::string& outPath, argument
160 context->getDiagnostics()->note(DiagMessage() << "writing " << outPath << " to archive");
163 if (writer->startEntry(outPath, compressionFlags)) {
171 context->getDiagnostics()->error(DiagMessage() << "failed to write file " << outPath);
731 std::string outPath = mOptions.generateJavaClassPath.value(); local
732 file::appendPath(&outPath, file::packageToPath(util::utf16ToUtf8(outPackage)));
733 if (!file::mkdirs(outPath)) {
735 DiagMessage() << "failed to create directory '" << outPath << "'");
739 file::appendPath(&outPath, "R.java");
741 std::ofstream fout(outPath, st
788 std::string outPath = mOptions.generateJavaClassPath.value(); local
819 const std::string& outPath = mOptions.generateProguardRulesPath.value(); local
[all...]

Completed in 1391 milliseconds