/frameworks/base/libs/hwui/tests/unit/ |
D | VectorDrawableTests.cpp | 53 [](SkPath* outPath) { in __anon6c41bec80102() 54 outPath->moveTo(2, 22); in __anon6c41bec80102() 55 outPath->rLineTo(20, 0); in __anon6c41bec80102() 56 outPath->rLineTo(1, -2000); in __anon6c41bec80102() 57 outPath->close(); in __anon6c41bec80102() 58 outPath->moveTo(2, 22); in __anon6c41bec80102() 77 [](SkPath* outPath) { in __anon6c41bec80202() 78 outPath->moveTo(1.0, 1.0); in __anon6c41bec80202() 79 outPath->rMoveTo(2.0, 2.0); in __anon6c41bec80202() 80 outPath->rLineTo(3.0, 3.0); in __anon6c41bec80202() [all …]
|
/frameworks/base/libs/hwui/utils/ |
D | VectorDrawableUtils.cpp | 35 void addCommand(SkPath* outPath, char previousCmd, char cmd, const std::vector<float>* points, 65 void VectorDrawableUtils::verbsToPath(SkPath* outPath, const PathData& data) { in verbsToPath() argument 69 outPath->reset(); in verbsToPath() 72 resolver.addCommand(outPath, previousCommand, data.verbs[i], &data.points, start, in verbsToPath() 100 void PathResolver::addCommand(SkPath* outPath, char previousCmd, char cmd, in addCommand() argument 109 outPath->close(); in addCommand() 117 outPath->moveTo(currentX, currentY); in addCommand() 158 outPath->rLineTo(points->at(k + 0), points->at(k + 1)); in addCommand() 160 outPath->rMoveTo(points->at(k + 0), points->at(k + 1)); in addCommand() 172 outPath->lineTo(points->at(k + 0), points->at(k + 1)); in addCommand() [all …]
|
D | VectorDrawableUtils.h | 34 static void verbsToPath(SkPath* outPath, const PathData& data);
|
/frameworks/base/libs/hwui/ |
D | VectorDrawable.cpp | 84 static void applyTrim(SkPath* outPath, const SkPath& inPath, float trimPathStart, float trimPathEnd, in applyTrim() argument 87 *outPath = inPath; in applyTrim() 90 outPath->reset(); in applyTrim() 101 measure.getSegment(start, len, outPath, true); in applyTrim() 103 measure.getSegment(0, end, outPath, true); in applyTrim() 106 measure.getSegment(start, end, outPath, true); in applyTrim() 115 SkPath* outPath; in getUpdatedPath() local 120 outPath = tempStagingPath; in getUpdatedPath() 126 outPath = &mTrimmedSkPath; in getUpdatedPath() 128 outPath = &mSkPath; in getUpdatedPath() [all …]
|
D | PathParser.h | 40 static void parseAsciiStringForSkPath(SkPath* outPath, ParseResult* result,
|
/frameworks/base/core/java/android/util/ |
D | PathParser.java | 49 public static void createPathFromPathData(Path outPath, PathData data) { in createPathFromPathData() argument 50 nCreatePathFromPathData(outPath.mNativePath, data.mNativePathData); in createPathFromPathData()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ExpandableOutlineView.java | 150 Path outPath) { in getRoundedRectPath() argument 151 outPath.reset(); in getRoundedRectPath() 160 outPath.addRoundRect(left, top, right, bottom, mTmpCornerRadii, Path.Direction.CW); in getRoundedRectPath()
|
/frameworks/compile/slang/ |
D | slang_rs_reflect_utils.h | 116 bool startFile(const std::string &outPath, const std::string &outFileName,
|
/frameworks/libs/systemui/monet/tests/com/android/systemui/monet/ |
D | ColorSchemeTest.kt | 219 val outPath = context.filesDir.path + "/" + fileName in saveFile() constant 221 val writer = FileWriter(File(outPath)) in saveFile()
|
/frameworks/base/core/java/android/app/backup/ |
D | BackupAgent.java | 1029 String outPath = outFile.getCanonicalPath(); in onRestoreFile() local 1030 if (outPath.startsWith(basePath + File.separatorChar)) { in onRestoreFile() 1031 if (DEBUG) Log.i(TAG, "[" + domain + " : " + path + "] mapped to " + outPath); in onRestoreFile() 1037 Log.e(TAG, "Cross-domain restore attempt: " + outPath); in onRestoreFile()
|
/frameworks/av/services/audiopolicy/fuzzer/ |
D | audiopolicy_fuzzer.cpp | 501 std::string outPath = sFuzzedConfig; in fuzzXML() local 510 xmlSaveFileEnc(outPath.c_str(), pDoc, "UTF-8"); in fuzzXML() 513 return outPath; in fuzzXML()
|
/frameworks/native/cmds/dumpstate/ |
D | dumpstate.cpp | 3505 std::string outPath = ds.bugreport_internal_dir_ + "/tmp_serialize_perfetto_trace"; in MaybeSnapshotSystemTraceAsync() local 3507 open(outPath.c_str(), O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC | O_NOFOLLOW, in MaybeSnapshotSystemTraceAsync() 3510 MYLOGE("Could not open %s to serialize perfetto trace.\n", outPath.c_str()); in MaybeSnapshotSystemTraceAsync() 3519 std::launch::async, [this, outPath = std::move(outPath), outFd = std::move(outFd)] { in MaybeSnapshotSystemTraceAsync() 3534 return outPath; in MaybeSnapshotSystemTraceAsync()
|
/frameworks/av/media/libstagefright/xmlparser/ |
D | MediaCodecsXmlParser.cpp | 72 std::string *outPath) { in findFileInDirs() argument 76 *outPath = path; in findFileInDirs()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | LauncherAppsService.java | 2086 Path outPath = Paths.get(fileName); in dumpViewCaptureDataToWmTrace() local 2087 try (OutputStream os = Files.newOutputStream(outPath, StandardOpenOption.CREATE, in dumpViewCaptureDataToWmTrace() 2090 Files.setPosixFilePermissions(outPath, WM_TRACE_FILE_PERMISSIONS); in dumpViewCaptureDataToWmTrace()
|