| /foundation/distributeddatamgr/preferences/frameworks/js/napi/storage/src/ |
| H A D | napi_storage_helper.cpp | 33 std::string path; member 58 char *path = new (std::nothrow) char[PATH_MAX]; in ParseString() local 59 if (path == nullptr) { in ParseString() 60 LOG_ERROR("ParseString new failed, path is nullptr"); in ParseString() 64 napi_get_value_string_utf8(env, value, path, PATH_MAX, &pathLen); in ParseString() 65 asyncContext->path = path; in ParseString() 66 delete[] path; in ParseString() 80 OHOS::NativePreferences::PreferencesHelper::GetPreferences(context->path, errCode); in GetStorage() 85 napi_value path in GetStorage() 113 char *path = new (std::nothrow) char[PATH_MAX]; GetInputPath() local 127 std::string path; DeleteStorageSync() local 172 std::string path; RemoveStorageFromCacheSync() local [all...] |
| /third_party/typescript/src/testRunner/unittests/tsserver/ |
| H A D | partialSemanticServer.ts | 5 path: `${tscWatch.projectRoot}/a.ts`,
11 path: `${tscWatch.projectRoot}/b.ts`,
17 path: `${tscWatch.projectRoot}/c.ts`,
21 path: `${tscWatch.projectRoot}/node_modules/something/index.d.ts`,
25 path: `${tscWatch.projectRoot}/tsconfig.json`,
46 checkProjectActualFiles(project, [libFile.path, file1.path, file2.path]);
67 arguments: { file: file1.path }
78 project.getLanguageService().getSemanticDiagnostics(file1.path);
[all...] |
| /third_party/mesa3d/src/freedreno/ci/ |
| H A D | traces-freedreno.yml | 20 - path: valve/half-life-2-v2.trace 34 - path: valve/portal-2-v2.trace 49 - path: valve/counterstrike-source-v2.trace 63 - path: xonotic/xonotic-keybench-high.trace 75 - path: supertuxkart/supertuxkart-mansion-egl-gles.trace 87 - path: 0ad/0ad.trace 100 - path: valve/counterstrike-v2.trace 116 # - path: minetest/minetest.trace 126 - path: neverball/neverball.trace 138 - path [all...] |
| /foundation/resourceschedule/memmgr/common/src/ |
| H A D | kernel_interface.cpp | 55 bool KernelInterface::EchoToPath(const char* path, const char* content) in EchoToPath() argument 57 int fd = open(path, O_WRONLY); in EchoToPath() 59 HILOGE("echo %{public}s > %{public}s failed: file is not open", content, path); in EchoToPath() 63 HILOGE("echo %{public}s > %{public}s failed: write failed", content, path); in EchoToPath() 68 HILOGI("echo %{public}s > %{public}s", content, path); in EchoToPath() 72 bool KernelInterface::IsFileExists(const std::string& path) in IsFileExists() argument 74 if (path.empty()) { in IsFileExists() 78 if (stat(path.c_str(), &st) == 0 && S_ISREG(st.st_mode)) { in IsFileExists() 84 bool KernelInterface::CreateFile(const std::string& path, const mode_t& mode) in CreateFile() argument 86 if (path in CreateFile() 106 CreateFile(const std::string& path) CreateFile() argument 111 RemoveFile(const std::string& path) RemoveFile() argument 116 WriteToFile(const std::string& path, const std::string& content, bool truncated) WriteToFile() argument 152 ReadFromFile(const std::string& path, std::string& content) ReadFromFile() argument 157 ReadLinesFromFile(const std::string& path, std::vector<std::string>& lines) ReadLinesFromFile() argument 178 IsDirExists(const std::string& path) IsDirExists() argument 202 IsExists(const std::string& path) IsExists() argument 207 IsEmptyDir(const std::string& path) IsEmptyDir() argument 212 CreateDir(const std::string& path) CreateDir() argument 217 RemoveDirRecursively(const std::string& path) RemoveDirRecursively() argument 222 RmDelimiter(const std::string& path) RmDelimiter() argument 230 AddDelimiter(const std::string& path) AddDelimiter() argument 432 std::string path = JoinPath(ROOT_PROC_PATH, std::to_string(pid), "status"); GetUidByPid() local 462 ReadSwapOutKBSinceKernelBoot(const std::string &path, const std::string &tagStr, unsigned long long &ret) ReadSwapOutKBSinceKernelBoot() argument 583 std::string path = JoinPath(memcgPath, FILE_MEMCG_PROCS); GetMemcgPids() local [all...] |
| /third_party/protobuf/src/google/protobuf/io/ |
| H A D | io_win32_unittest.cc | 35 // Unit tests for long-path-aware open/mkdir/access/etc. on Windows, as well as 98 bool CreateAllUnder(wstring path); 99 bool DeleteAllUnder(wstring path); 151 bool CreateEmptyFile(const wstring& path) { in CreateEmptyFile() argument 152 HANDLE h = CreateFileW(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, in CreateEmptyFile() 214 bool IoWin32Test::CreateAllUnder(wstring path) { in CreateAllUnder() argument 215 // Prepend UNC prefix if the path doesn't have it already. Don't bother in CreateAllUnder() 216 // checking if the path is shorter than MAX_PATH, let's just do it in CreateAllUnder() 218 if (path.find(L"\\\\?\\") != 0) { in CreateAllUnder() 219 path in CreateAllUnder() 238 DeleteAllUnder(wstring path) DeleteAllUnder() argument 288 string path = test_tmpdir; TEST_F() local 328 string path = test_tmpdir; TEST_F() local 353 string path = test_tmpdir; TEST_F() local [all...] |
| /third_party/skia/infra/bots/recipe_modules/flavor/ |
| H A D | default.py | 45 resource_dir=self.m.path['start_dir'].join('skia', 'resources'), 46 images_dir=self.m.path['start_dir'].join('skimage'), 47 lotties_dir=self.m.path['start_dir'].join('lottie-samples'), 48 skp_dir=self.m.path['start_dir'].join('skp'), 49 svg_dir=self.m.path['start_dir'].join('svg'), 50 mskp_dir=self.m.path['start_dir'].join('mskp'), 52 texttraces_dir=self.m.path['start_dir'].join('text_blob_traces')) 56 """Like os.path.join(), but for paths on a connected device.""" 57 return self.m.path.join(*args) 89 def create_clean_device_dir(self, path) [all...] |
| /third_party/rust/crates/serde/serde_derive_internals/src/ |
| H A D | receiver.rs | 8 Path, PathArguments, QSelf, ReturnType, Token, Type, TypeParamBound, TypePath, WherePredicate, 31 fn self_to_qself(&self, qself: &mut Option<QSelf>, path: &mut Path) { in self_to_qself() 32 if path.leading_colon.is_some() || path.segments[0].ident != "Self" { in self_to_qself() 36 if path.segments.len() == 1 { in self_to_qself() 37 self.self_to_expr_path(path); in self_to_qself() 41 let span = path.segments[0].ident.span(); in self_to_qself() 44 ty: Box::new(Type::Path(self.self_ty(span))), in self_to_qself() 50 path in self_to_qself() [all...] |
| /third_party/rust/crates/serde/serde_derive/src/internals/ |
| H A D | receiver.rs | 8 Path, PathArguments, QSelf, ReturnType, Token, Type, TypeParamBound, TypePath, WherePredicate, 31 fn self_to_qself(&self, qself: &mut Option<QSelf>, path: &mut Path) { in self_to_qself() 32 if path.leading_colon.is_some() || path.segments[0].ident != "Self" { in self_to_qself() 36 if path.segments.len() == 1 { in self_to_qself() 37 self.self_to_expr_path(path); in self_to_qself() 41 let span = path.segments[0].ident.span(); in self_to_qself() 44 ty: Box::new(Type::Path(self.self_ty(span))), in self_to_qself() 50 path in self_to_qself() [all...] |
| /foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/ |
| H A D | rs_profiler_utils.cpp | 243 std::string Utils::GetRealPath(const std::string& path) in GetRealPath() argument 246 if (!PathToRealPath(path, realPath)) { in GetRealPath() 247 HRPE("PathToRealPath fails on %s !", path.data()); in GetRealPath() 258 std::string Utils::NormalizePath(const std::string& path) in NormalizePath() argument 260 return (path.rfind('/') != path.size() - 1) ? path + "/" : path; in NormalizePath() 263 std::string Utils::GetFileName(const std::string& path) in GetFileName() argument 266 return std::filesystem::path(pat in GetFileName() 277 GetDirectory(const std::string& path) GetDirectory() argument 291 IsDirectory(const std::string& path) IsDirectory() argument 301 IterateDirectory(const std::string& path, std::vector<std::string>& files) IterateDirectory() argument 338 LoadLine(const std::string& path, std::string& line) LoadLine() argument 353 LoadLines(const std::string& path, std::vector<std::string>& lines) LoadLines() argument 371 LoadContent(const std::string& path, std::string& content) LoadContent() argument 391 IsRecordInMemoryFile(const std::string& path) IsRecordInMemoryFile() argument 411 FileExists(const std::string& path) FileExists() argument 424 FileDelete(const std::string& path) FileDelete() argument 439 FileOpen(const std::string& path, const std::string& options) FileOpen() argument [all...] |
| /foundation/filemanagement/app_file_service/utils/src/b_filesystem/ |
| H A D | b_dir.cpp | 41 static bool IsEmptyDirectory(const string &path) in IsEmptyDirectory() argument 43 DIR *dir = opendir(path.c_str()); in IsEmptyDirectory() 60 static tuple<ErrCode, map<string, struct stat>, map<string, size_t>> GetFile(const string &path, off_t size = -1) in GetFile() argument 65 if (stat(path.data(), &sta) == -1) { in GetFile() 68 if (path == "/") { in GetFile() 72 smallFiles.insert(make_pair(path, sta.st_size)); in GetFile() 74 files.try_emplace(path, sta); in GetFile() 79 static uint32_t CheckOverLongPath(const string &path) in CheckOverLongPath() argument 81 uint32_t len = path.length(); in CheckOverLongPath() 83 size_t found = path in CheckOverLongPath() 90 GetDirFilesDetail(const string &path, bool recursion, off_t size = -1) GetDirFilesDetail() argument 148 GetDirFiles(const string &path) GetDirFiles() argument 315 IsNotPath(const string &path, vector<string> &bigFiles, vector<string> &smallFiles, off_t size) IsNotPath() argument 332 GetUser0DirFilesDetail(const string &path, off_t size = -1) GetUser0DirFilesDetail() argument [all...] |
| /third_party/littlefs/tests/ |
| H A D | test_exhaustion.toml | 26 char path[1024]; 27 sprintf(path, "roadrunner/test%d", i); 32 lfs_file_open(&lfs, &file, path, 57 char path[1024]; 58 sprintf(path, "roadrunner/test%d", i); 63 lfs_file_open(&lfs, &file, path, LFS_O_RDONLY) => 0; 83 char path[1024]; 84 sprintf(path, "roadrunner/test%d", i); 86 lfs_stat(&lfs, path, &info) => 0; 116 char path[102 [all...] |
| /base/request/request/frameworks/js/napi/src/ |
| H A D | js_initialize.cpp | 194 error.errInfo = "Parameter verification failed, UploadBodyFiles error empty path";
in CheckUploadBodyFiles() 199 std::string path = filePath + "/tmp_body_" + std::to_string(i) + "_" + std::to_string(timestamp);
in CheckUploadBodyFiles() local 200 REQUEST_HILOGD("Create upload body file, %{public}s", path.c_str());
in CheckUploadBodyFiles() 201 if (!NapiUtils::IsPathValid(path)) {
in CheckUploadBodyFiles() 202 REQUEST_HILOGE("IsPathValid error %{public}s", path.c_str());
in CheckUploadBodyFiles() 204 error.errInfo = "Parameter verification failed, UploadBodyFiles error fail path";
in CheckUploadBodyFiles() 207 int32_t bodyFd = open(path.c_str(), O_TRUNC | O_RDWR);
in CheckUploadBodyFiles() 209 bodyFd = open(path.c_str(), O_CREAT | O_RDWR, FILE_PERMISSION);
in CheckUploadBodyFiles() 217 chmod(path.c_str(), S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH | S_IWOTH);
in CheckUploadBodyFiles() 219 if (!JsTask::SetPathPermission(path)) {
in CheckUploadBodyFiles() 230 CheckPathIsFile(const std::string &path, ExceptionError &error) CheckPathIsFile() argument 246 GetFdDownload(const std::string &path, const Config &config, int32_t &fd, ExceptionError &error) GetFdDownload() argument 261 GetFdUpload(const std::string &path, const Config &config, int32_t &fd, ExceptionError &error) GetFdUpload() argument 272 GetFdInner(const std::string &path, const Config &config, int32_t &fd, ExceptionError &error) GetFdInner() argument 314 GetInternalPath(const std::shared_ptr<OHOS::AbilityRuntime::Context> &context, const Config &config, std::string &path, std::string &errInfo) GetInternalPath() argument 1068 std::string path = file.uri; CheckUploadFileSpec() local 1099 std::string path = config.saveas; CheckDownloadFile() local 1130 std::string path = config.saveas; CheckDownloadFilePath() local 1148 std::string path; CreateDirs() local 1171 IsUserFile(const std::string &path) IsUserFile() argument 1176 GetSandboxPath(const std::shared_ptr<OHOS::AbilityRuntime::Context> &context, const Config &config, std::string &path, std::vector<std::string> &pathVec, std::string &errInfo) GetSandboxPath() argument 1199 StandardizePath( const std::shared_ptr<OHOS::AbilityRuntime::Context> &context, const Config &config, std::string &path) StandardizePath() argument 1226 BaseToWhole(const std::shared_ptr<OHOS::AbilityRuntime::Context> &context, std::string &path) BaseToWhole() argument 1237 CacheToWhole(const std::shared_ptr<OHOS::AbilityRuntime::Context> &context, std::string &path) CacheToWhole() argument 1248 FileToWhole( const std::shared_ptr<OHOS::AbilityRuntime::Context> &context, const Config &config, std::string &path) FileToWhole() argument 1260 WholeToNormal(std::string &path, std::vector<std::string> &out) WholeToNormal() argument [all...] |
| /third_party/skia/infra/bots/recipes/perf_skottietrace.expected/ |
| H A D | skottietracing_parse_trace_error.json | 8 "/path/to/tmp/json", 42 "PATH": "<PATH>:RECIPE_REPO[depot_tools]" 58 "PATH": "<PATH>:RECIPE_REPO[depot_tools]" 100 "PATH": "<PATH>:RECIPE_REPO[depot_tools]" 111 "/path/to/tmp/json", 136 "PATH": "<PATH> [all...] |
| /third_party/node/deps/v8/tools/ |
| H A D | find_depot_tools.py | 4 """Small utility function to find depot_tools and add it to the python path. 15 return os.path.isfile(os.path.join(directory, 'gclient.py')) 19 """Search for depot_tools and add it to sys.path.""" 21 for i in sys.path: 26 # Then look if depot_tools is in PATH, common case. 27 for i in os.environ['PATH'].split(os.pathsep): 30 sys.path.insert(0, i.rstrip(os.sep)) 32 # Rare case, it's not even in PATH, look upward up to root. 33 root_dir = os.path [all...] |
| /third_party/node/test/parallel/ |
| H A D | test-snapshot-typescript.js | 11 const path = require('path'); 15 const blobPath = path.join(tmpdir.path, 'snapshot.blob'); 20 const file = path.join(tmpdir.path, 'snapshot.js'); 21 fs.copyFileSync(fixtures.path('snapshot', 'typescript.js'), file); 23 fs.readFileSync(fixtures.path('snapshot', 'typescript-main.js'))); 32 cwd: tmpdir.path 40 const stats = fs.statSync(path [all...] |
| /third_party/node/deps/npm/node_modules/read-cmd-shim/lib/ |
| H A D | index.js | 6 const extractPath = (path, cmdshimContents) => { 7 if (/[.]cmd$/.test(path)) { 9 } else if (/[.]ps1$/.test(path)) { 34 newError.path = thrown.path 38 const notaShim = (path, er) => { 44 er.message = `Can't read shim path from '${path}', ` + 49 const readCmdShim = path => { 54 return readFile(path) [all...] |
| /third_party/ltp/include/ |
| H A D | tst_safe_file_ops.h | 10 #define FILE_SCANF(path, fmt, ...) \ 11 file_scanf(__FILE__, __LINE__, (path), (fmt), ## __VA_ARGS__) 13 #define SAFE_FILE_SCANF(path, fmt, ...) \ 15 (path), (fmt), ## __VA_ARGS__) 17 #define FILE_LINES_SCANF(path, fmt, ...) \ 19 (path), (fmt), ## __VA_ARGS__) 21 #define SAFE_FILE_LINES_SCANF(path, fmt, ...) \ 23 (path), (fmt), ## __VA_ARGS__) 39 #define FILE_PRINTF(path, fmt, ...) \ 41 (path), (fm [all...] |
| /third_party/node/test/common/ |
| H A D | shared-lib-util.js | 3 const path = require('path'); 7 const kExecPath = path.dirname(process.execPath); 10 // shared lib path. 19 (env.LD_LIBRARY_PATH ? env.LD_LIBRARY_PATH + path.delimiter : '') + 23 (env.LIBPATH ? env.LIBPATH + path.delimiter : '') + 27 (env.DYLD_LIBRARY_PATH ? env.DYLD_LIBRARY_PATH + path.delimiter : '') + 30 env.PATH = (env.PATH ? env.PATH [all...] |
| /third_party/skia/docs/examples/ |
| H A D | Path_IsQuadDegenerate.cpp | 7 auto debugster = [](const SkPath& path, bool exact) -> void { in REG_FIDDLE() 9 path.getPoint(0).fX, path.getPoint(0).fY, path.getPoint(1).fX, in REG_FIDDLE() 10 path.getPoint(1).fY, path.getPoint(2).fX, path.getPoint(2).fY, in REG_FIDDLE() 11 SkPath::IsQuadDegenerate(path.getPoint(0), path.getPoint(1), path in REG_FIDDLE() 14 SkPath path, offset; REG_FIDDLE() local [all...] |
| /base/global/system_resources/systemres/main/resources/base/media/ |
| H A D | ohos_ic_normal_white_grid_compress.svg | 5 <path d="M16.4285714,0 L196.612403,0 L196.612403,0 L196.468677,65.674268 C196.446576,75.773165 204.615433,83.9778551 214.71433,83.9999562 C214.727669,83.9999854 214.741008,84 214.754347,84 L280.428571,84 L280.428571,84 L280.428571,304 C280.428571,312.836556 273.265127,320 264.428571,320 L16.4285714,320 C7.59201543,320 0.428571429,312.836556 0.428571429,304 L0.428571429,16 C0.428571429,7.163444 7.59201543,-1.53107837e-16 16.4285714,0 Z" id="矩形备份-82" fill="#61A4FF"></path> 6 <path d="M196.428571,0 L280.428571,84 L214.714286,84 C204.615365,84 196.428571,75.8132069 196.428571,65.7142857 L196.428571,0 L196.428571,0 Z" id="矩形备份-83" fill="#A2C9FF"></path> 8 <path d="M16,64 L41,64 C42.6568542,64 44,65.3431458 44,67 L44,77 C44,78.6568542 42.6568542,80 41,80 L16,80 L16,80 L16,64 Z" id="Rectangle-16-Copy-2"></path> 9 <path d="M16,96 L41,96 C42.6568542,96 44,97.3431458 44,99 L44,112 L44,112 L16,112 L16,96 Z" id="Rectangle-16-Copy-4"></path> 10 <path d="M0,48 L25,48 C26.6568542,48 28,49.3431458 28,51 L28,61 C28,62.6568542 26.6568542,64 25,64 L0,64 L0,64 L0,48 Z" id="Rectangle-16-Copy" transform="translate(14.000000, 56.000000) scale(-1, 1) translate(-14.000000, -56.000000) "></path> [all...] |
| /foundation/arkui/ace_engine/frameworks/core/components/svg/ |
| H A D | rosen_render_svg_circle.cpp | 50 SkPath path; in Paint() local 51 path.addCircle(ConvertDimensionToPx(cx_, LengthType::HORIZONTAL), ConvertDimensionToPx(cy_, LengthType::VERTICAL), in Paint() 57 RSRecordingPath path; in Paint() local 58 path.AddCircle(ConvertDimensionToPx(cx_, LengthType::HORIZONTAL), ConvertDimensionToPx(cy_, LengthType::VERTICAL), in Paint() 65 RosenSvgPainter::SetFillStyle(canvas, path, fillState_, renderInfo); in Paint() 66 RosenSvgPainter::SetStrokeStyle(canvas, path, strokeState_, renderInfo); in Paint() 84 SkPath path; in PaintDirectly() local 85 path.addCircle(ConvertDimensionToPx(cx_, LengthType::HORIZONTAL), ConvertDimensionToPx(cy_, LengthType::VERTICAL), in PaintDirectly() 94 RSRecordingPath path; in PaintDirectly() local 95 path in PaintDirectly() 103 UpdateMotion(const std::string& path, const std::string& rotate, double percent) UpdateMotion() argument 116 SkPath path; GetPaintBounds() local [all...] |
| /foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_common_utils_test/src/ |
| H A D | medialibrary_privacy_manager_test.cpp | 29 string path = ""; in HWTEST_F() local 32 MediaPrivacyManager mediaPrivacyManager(path, mode, fileId); in HWTEST_F() 39 string path = ".Open"; in HWTEST_F() local 42 MediaPrivacyManager mediaPrivacyManager(path, mode, fileId); in HWTEST_F() 49 string path = ".jpeg"; in HWTEST_F() local 52 MediaPrivacyManager mediaPrivacyManager(path, mode, fileId); in HWTEST_F() 59 string path = ".Open"; in HWTEST_F() local 62 MediaPrivacyManager mediaPrivacyManager(path, mode, fileId); in HWTEST_F() 69 string path(4096, 'a'); in HWTEST_F() 72 MediaPrivacyManager mediaPrivacyManager(path, mod in HWTEST_F() 79 string path = "data:image/;base64,Open.jpeg"; HWTEST_F() local 89 string path = "data:image/;base64,Open.jpeg"; HWTEST_F() local 99 string path = "/storage/cloud/files/open.jpeg"; HWTEST_F() local 109 string path = ""; HWTEST_F() local 119 string path = "/storage/cloud/files/"; HWTEST_F() local [all...] |
| /test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/animateMotion/router/ |
| H A D | index.hml | 26 <path fill="none" stroke="blue" stroke-width="3" d="m20,60 c0,-100 120,100 120,0 c0,-100 -120,100 -120,0 z"></path>
27 <path fill="red" d="M-5,-10 L15,0 L-5,10 L0,0 Z">
28 <animateMotion dur="2000" repeatCount="indefinite" rotate="auto" keyPoints="0;0.2;0.4;0.6;0.8;1" path="m20,60 c0,-100 120,100 120,0 c0,-100 -120,100 -120,0 z">
30 </path>>
38 <path fill="none" stroke="blue" stroke-width="3" d="m20,60 c0,-100 120,100 120,0 c0,-100 -120,100 -120,0 z"></path>
39 <path fill="red" d="M-5,-10 L15,0 L-5,10 L0,0 Z">
40 <animateMotion dur="2000" repeatCount="1" rotate="auto" keyPoints="0;0.2;0.4;0.6;0.8;1" path="m20,60 c0,-100 120,100 120,0 c0,-100 -120,100 -120,0 z">
42 </path>
[all...] |
| /test/xts/acts/arkui/ace_standard/entry/src/ohosTest/js/MainAbility/pages/animateMotion/router/ |
| H A D | index.hml | 26 <path fill="none" stroke="blue" stroke-width="3" d="m20,60 c0,-100 120,100 120,0 c0,-100 -120,100 -120,0 z"></path>
27 <path fill="red" d="M-5,-10 L15,0 L-5,10 L0,0 Z">
28 <animateMotion dur="2000" repeatCount="indefinite" rotate="auto" keyPoints="0;0.2;0.4;0.6;0.8;1" path="m20,60 c0,-100 120,100 120,0 c0,-100 -120,100 -120,0 z">
30 </path>>
38 <path fill="none" stroke="blue" stroke-width="3" d="m20,60 c0,-100 120,100 120,0 c0,-100 -120,100 -120,0 z"></path>
39 <path fill="red" d="M-5,-10 L15,0 L-5,10 L0,0 Z">
40 <animateMotion dur="2000" repeatCount="1" rotate="auto" keyPoints="0;0.2;0.4;0.6;0.8;1" path="m20,60 c0,-100 120,100 120,0 c0,-100 -120,100 -120,0 z">
42 </path>
[all...] |
| /test/xts/acts/arkui/ace_standard/entry/src/main/js/default/pages/animateMotion/router/ |
| H A D | index.hml | 26 <path fill="none" stroke="blue" stroke-width="3" d="m20,60 c0,-100 120,100 120,0 c0,-100 -120,100 -120,0 z"></path>
27 <path fill="red" d="M-5,-10 L15,0 L-5,10 L0,0 Z">
28 <animateMotion dur="2000" repeatCount="indefinite" rotate="auto" keyPoints="0;0.2;0.4;0.6;0.8;1" path="m20,60 c0,-100 120,100 120,0 c0,-100 -120,100 -120,0 z">
30 </path>>
38 <path fill="none" stroke="blue" stroke-width="3" d="m20,60 c0,-100 120,100 120,0 c0,-100 -120,100 -120,0 z"></path>
39 <path fill="red" d="M-5,-10 L15,0 L-5,10 L0,0 Z">
40 <animateMotion dur="2000" repeatCount="1" rotate="auto" keyPoints="0;0.2;0.4;0.6;0.8;1" path="m20,60 c0,-100 120,100 120,0 c0,-100 -120,100 -120,0 z">
42 </path>
[all...] |