| /test/xts/acts/arkui/ace_standard/entry/src/ohosTest/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...] |
| /third_party/icu/icu4c/packaging/ |
| H A D | distrelease.ps1 | 29 $icuDir = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent 30 $icuDir = Resolve-Path -Path '$icuDir\..' 35 New-Item -Path "$icuDir\source\dist" -ErrorAction SilentlyContinue -ItemType "directory" 37 Get-ChildItem -Path $source -ErrorAction SilentlyContinue | Remove-Item -Recurse 38 New-Item -Path $source -ItemType "directory" -ErrorAction SilentlyContinue 43 Copy-Item -Path "$icuDir\lib64" -Destination $source -Recurse 44 Copy-Item -Path "$icuDir\bin64" -Destination $source -Recurse 48 Copy-Item -Path " [all...] |
| /third_party/musl/porting/linux/user/include/fortify/ |
| H A D | fcntl.h | 44 int open(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) 49 return __open_chk(path, flags); 51 return __open_real(path, flags); 56 int open(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, unsigned modes) 60 return __open_real(path, flags, modes); 64 int openat(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) 69 return __openat_chk(dirfd, path, flags); 71 return __openat_real(dirfd, path, flags); 76 int openat(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, mode_t modes) 80 return __openat_real(dirfd, path, flag [all...] |
| /third_party/node/deps/npm/node_modules/just-diff-apply/ |
| H A D | index.cjs | 10 { "op": "remove", "path": ['b'] }, 11 { "op": "replace", "path": ['a'], "value": 4 }, 12 { "op": "add", "path": ['c'], "value": 5 } 22 { "op": "remove", "path": '/b' }, 23 { "op": "replace", "path": '/a', "value": 4 } 24 { "op": "add", "path": '/c', "value": 5 } 31 { "op": "replace", "path": ['a'], "value": 3 } 32 { "op": "replace", "path": ['b', 2], "value": 4 } 33 { "op": "add", "path": ['b', 3], "value": 9 } 40 { "op": "replace", "path" [all...] |
| H A D | index.mjs | 5 { "op": "remove", "path": ['b'] }, 6 { "op": "replace", "path": ['a'], "value": 4 }, 7 { "op": "add", "path": ['c'], "value": 5 } 17 { "op": "remove", "path": '/b' }, 18 { "op": "replace", "path": '/a', "value": 4 } 19 { "op": "add", "path": '/c', "value": 5 } 26 { "op": "replace", "path": ['a'], "value": 3 } 27 { "op": "replace", "path": ['b', 2], "value": 4 } 28 { "op": "add", "path": ['b', 3], "value": 9 } 35 { "op": "replace", "path" [all...] |
| /third_party/musl/include/fortify/linux/ |
| H A D | fcntl.h | 44 int open(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) 49 return __open_chk(path, flags); 51 return __open_real(path, flags); 56 int open(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, unsigned modes) 60 return __open_real(path, flags, modes); 64 int openat(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) 69 return __openat_chk(dirfd, path, flags); 71 return __openat_real(dirfd, path, flags); 76 int openat(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, mode_t modes) 80 return __openat_real(dirfd, path, flag [all...] |
| /third_party/skia/tests/ |
| H A D | PathOpsSimplifyDegenerateThreadedTest.cpp | 34 SkPath path, out; in testSimplifyDegeneratesMain() local 35 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay)); in testSimplifyDegeneratesMain() 36 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by)); in testSimplifyDegeneratesMain() 37 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy)); in testSimplifyDegeneratesMain() 38 path.close(); in testSimplifyDegeneratesMain() 39 path.moveTo(SkIntToScalar(dx), SkIntToScalar(dy)); in testSimplifyDegeneratesMain() 40 path.lineTo(SkIntToScalar(ex), SkIntToScalar(ey)); in testSimplifyDegeneratesMain() 41 path.lineTo(SkIntToScalar(fx), SkIntToScalar(fy)); in testSimplifyDegeneratesMain() 42 path.close(); in testSimplifyDegeneratesMain() 44 pathStr.appendf(" path in testSimplifyDegeneratesMain() [all...] |
| H A D | PathOpsSimplifyTrianglesThreadedTest.cpp | 37 SkPath path, out; in testSimplifyTrianglesMain() local 38 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay)); in testSimplifyTrianglesMain() 39 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by)); in testSimplifyTrianglesMain() 40 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy)); in testSimplifyTrianglesMain() 41 path.close(); in testSimplifyTrianglesMain() 42 path.moveTo(SkIntToScalar(dx), SkIntToScalar(dy)); in testSimplifyTrianglesMain() 43 path.lineTo(SkIntToScalar(ex), SkIntToScalar(ey)); in testSimplifyTrianglesMain() 44 path.lineTo(SkIntToScalar(fx), SkIntToScalar(fy)); in testSimplifyTrianglesMain() 45 path.close(); in testSimplifyTrianglesMain() 47 pathStr.appendf(" path in testSimplifyTrianglesMain() [all...] |
| H A D | PathOpsBuilderTest.cpp | 83 SkPath path; in DEF_TEST() local 84 path.moveTo(200, 170); in DEF_TEST() 85 path.lineTo(220, 170); in DEF_TEST() 86 path.lineTo(220, 230); in DEF_TEST() 87 path.lineTo(240, 230); in DEF_TEST() 88 path.lineTo(240, 210); in DEF_TEST() 89 path.lineTo(180, 210); in DEF_TEST() 90 path.lineTo(180, 190); in DEF_TEST() 91 path.lineTo(260, 190); in DEF_TEST() 92 path in DEF_TEST() 105 SkPath path; DEF_TEST() local 119 SkPath path; DEF_TEST() local 140 SkPath path, pathB; DEF_TEST() local 306 SkPath path; DEF_TEST() local 349 SkPath path; DEF_TEST() local [all...] |
| /third_party/typescript/src/testRunner/unittests/tsserver/ |
| H A D | documentRegistry.ts | 5 path: `${tscWatch.projectRoot}/index.ts`,
9 path: `${tscWatch.projectRoot}/module1.d.ts`,
13 path: `${tscWatch.projectRoot}/tsconfig.json`,
18 return service.configuredProjects.get(configFile.path)!;
25 checkProjectActualFiles(project, [file.path, libFile.path, configFile.path, ...(moduleIsOrphan ? [] : [moduleFile.path])]);
26 const moduleInfo = service.getScriptInfo(moduleFile.path)!;
30 assert.deepEqual(service.documentRegistry.getLanguageServiceRefCounts(moduleInfo.path, moduleInf [all...] |
| /third_party/node/lib/internal/modules/cjs/ |
| H A D | loader.js | 97 const path = require('path'); 181 * Get a path's properties, using an in-memory cache to minimize lookups. 182 * @param {string} filename Absolute path to the file 185 filename = path.toNamespacedPath(filename); 225 * @param {string} filename Absolute path of the module 235 * @param {string} basePath The absolute path that errored 240 process.send({ 'watch:require': ArrayPrototypeMap(extensions, (ext) => path.resolve(`${basePath}${ext}`)) }); 253 this.path = path [all...] |
| /third_party/python/Lib/http/ |
| H A D | server.py | 159 1. One line identifying the request type and path 167 <command> <path> <version> 170 <path> is a string containing path information for the request, 172 <path> is encoded using the URL encoding scheme (using %xx to signify 186 <command> <path> 225 - command, path and version are the broken-down request line; 271 are in self.command, self.path, self.request_version and 327 command, path = words[:2] 335 self.command, self.path [all...] |
| /third_party/libinput/doc/ |
| H A D | touchpad-edge-scrolling-state-machine.svg | 26 <path d="M 237 7 C 239 4 243 2 246 2 L 275 2 C 278 2 282 4 284 7 L 301 30 C 301 31 301 33 301 34 L 284 57 C 282 60 278 62 275 62 L 246 62 C 243 62 239 60 237 57 L 220 34 C 220 33 220 31 220 30 L 237 7 Z" fill="#ffd966" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="none"/> 30 <path d="M 237 222 C 239 219 243 217 246 217 L 276 217 C 279 217 283 219 285 222 L 303 245 C 303 246 303 248 303 249 L 285 272 C 283 275 279 277 276 277 L 246 277 C 243 277 239 275 237 272 L 219 249 C 219 248 219 246 219 245 L 237 222 Z" fill="#ffd966" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="none"/> 34 <path d="M 261 188 L 261 211" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/> 35 <path d="M 261 216 L 258 209 L 261 211 L 265 209 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/> 36 <path d="M 218 535 C 223 531 229 528 235 528 L 285 528 C 291 528 297 531 302 535 L 331 570 C 332 571 332 574 331 575 L 302 610 C 297 614 291 617 285 617 L 235 617 C 229 617 223 614 218 610 L 189 575 C 188 574 188 571 189 570 L 218 535 Z" fill="#ffd966" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="none"/> 41 <path d="M 220 526 L 158 487" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/> 42 <path d="M 224 529 L 217 528 L 220 526 L 220 522 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/> 43 <path d="M 105 617 L 105 650" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/> 44 <path d="M 105 656 L 101 649 L 105 650 L 108 649 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/> 45 <path [all...] |
| /foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/src/ |
| H A D | file_path.cpp | 53 FilePath::FilePath(const std::string &path) : path_(path) in FilePath() argument 110 // Capture path components. in GetComponents() 228 for (FilePath path = const_cast<FilePath &>(fullPath).DirName(); path.Value() != lastPath.Value(); in CreateDirectory() 229 path = path.DirName()) { in CreateDirectory() 230 subpaths.push_back(path); in CreateDirectory() 231 lastPath = path; in CreateDirectory() 250 bool FilePath::DirectoryExists(const FilePath &path) in DirectoryExists() argument 260 IsDir(const FilePath &path) IsDir() argument 272 PathIsValid(const FilePath &path) PathIsValid() argument 277 PathIsReadable(const FilePath &path) PathIsReadable() argument 282 PathIsWriteable(const FilePath &path) PathIsWriteable() argument 342 AppendRelativePath(const FilePath &child, FilePath *path) AppendRelativePath() argument 385 GetZipAllDirFiles(const std::string &path, std::vector<std::string> &files) GetZipAllDirFiles() argument 450 HasRelativePathBaseOnAPIVersion(const std::string &path) HasRelativePathBaseOnAPIVersion() argument [all...] |
| /third_party/icu/icu4j/main/shared/build/ |
| H A D | common-targets.xml | 149 <sourcePath path="${src.dir}"/> 161 <sourcePath path="${src.dir}"/> 163 <auxClasspath path="${aux.classpath}"/> 172 <path id="javac.classpathref.collate"> 174 </path> 181 <path id="javac.classpathref.core"/> 188 <path id="javac.classpathref.charset"> 190 </path> 197 <path id="javac.classpathref.currdata"> 199 </path> [all...] |
| /third_party/python/Lib/distutils/tests/ |
| H A D | test_archive_util.py | 7 from os.path import splitdrive 53 if os.path.supports_unicode_filenames: 111 base_name = os.path.join(tmpdir2, target_name) 119 self.assertTrue(os.path.exists(tarball)) 122 def _tarinfo(self, path): 123 tar = tarfile.open(path) 138 dist = os.path.join(tmpdir, 'dist') 142 os.mkdir(os.path.join(dist, 'sub')) 144 os.mkdir(os.path.join(dist, 'sub2')) 153 base_name = os.path [all...] |
| /base/hiviewdfx/faultloggerd/interfaces/innerkits/procinfo/ |
| H A D | procinfo.cpp | 43 static bool GetProcStatusByPath(struct ProcInfo& procInfo, const std::string& path) in GetProcStatusByPath() argument 46 FILE *fp = fopen(path.c_str(), "r"); in GetProcStatusByPath() 100 std::string path = StringPrintf("/proc/%d/task/%d/status", pid, tid); in TidToNstid() local 101 if (path.empty()) { in TidToNstid() 106 if (!GetProcStatusByPath(procInfo, path)) { in TidToNstid() 118 std::string path = StringPrintf("/proc/%d/status", realPid); in GetProcStatusByPid() local 119 return GetProcStatusByPath(procInfo, path); in GetProcStatusByPid() 129 std::string path; in IsThreadInPid() local 131 path = StringPrintf("%s/%d", PROC_SELF_TASK_PATH, tid); in IsThreadInPid() 133 path in IsThreadInPid() 140 std::string path; GetTidsByPidWithFunc() local 206 std::string path = StringPrintf("/proc/%d/comm", tid); ReadThreadName() local 214 std::string path = StringPrintf("/proc/%d/task/%d/comm", pid, tid); ReadThreadNameByPidAndTid() local 222 std::string path; ReadProcessName() local 235 std::string path = StringPrintf("/proc/%d/status", pid); ReadProcessStatus() local 250 std::string path = StringPrintf("/proc/%d/wchan", pid); ReadProcessWchan() local [all...] |
| /foundation/arkui/ace_engine/frameworks/core/components/checkable/ |
| H A D | rosen_render_checkbox.cpp | 152 RSRecordingPath path; in DrawPartSelect() local 160 path.MoveTo(originX + start.GetX(), originY + start.GetY()); in DrawPartSelect() 161 path.LineTo(originX + end.GetX(), originY + end.GetY()); in DrawPartSelect() 164 canvas->DrawPath(path); in DrawPartSelect() 167 canvas->DrawPath(path); in DrawPartSelect() 200 RSRecordingPath path; in DrawCheck() local 210 path.MoveTo(originX + start.GetX(), originY + start.GetY()); in DrawCheck() 211 path.LineTo(originX + middle.GetX(), originY + middle.GetY()); in DrawCheck() 214 canvas->DrawPath(path); in DrawCheck() 218 canvas->DrawPath(path); in DrawCheck() 247 RSPath path; DrawAnimationOffToOn() local 301 RSRecordingPath path; DrawAnimationOnToOff() local [all...] |
| /test/xts/acts/multimedia/media/media_js_standard/avplayeraudiondk/entry/src/main/cpp/ |
| H A D | AudioPlayerNDK.cpp | 38 const char *path = "data/test/01.mp3"; in PlayerStateSetURLSource() local 39 OH_AVErrCode result1 = OH_AVPlayer_SetURLSource(player, path); in PlayerStateSetURLSource() 54 const char *path = "data/test/01.mp3"; in PlayerStatePrepare() local 55 OH_AVErrCode result1 = OH_AVPlayer_SetURLSource(player, path); in PlayerStatePrepare() 73 const char *path = "data/test/01.mp3"; in PlayerStatePlayer() local 74 OH_AVErrCode result1 = OH_AVPlayer_SetURLSource(player, path); in PlayerStatePlayer() 93 const char *path = "data/test/01.mp3"; in PlayerStatePause() local 94 OH_AVErrCode result1 = OH_AVPlayer_SetURLSource(player, path); in PlayerStatePause() 114 const char *path = "data/test/01.mp3"; in PlayerStateStop() local 115 OH_AVErrCode result1 = OH_AVPlayer_SetURLSource(player, path); in PlayerStateStop() 132 const char *path = "data/test/01.mp3"; PlayerStateReset() local 152 const char *path = "data/test/01.mp3"; PlayerStateSetvolume() local 172 const char *path = "data/test/01.mp3"; PlayerStateSeek() local 193 const char *path = "data/test/01.mp3"; PlayerStateGetCurrentTime() local 214 const char *path = "data/test/01.mp3"; PlayerStateSetSpeed() local 237 const char *path = "data/test/01.mp3"; PlayerStateGetSpeed() local 258 const char *path = "data/test/01.mp3"; PlayerStateIsPlaying() local 280 const char *path = "data/test/01.mp3"; PlayerStateGetDuration() local 300 const char *path = "data/test/01.mp3"; PlayerStateLoop() local 322 const char *path = "data/test/01.mp3"; PlayerStateSetSpeed_1_25_X() local 343 const char *path = "data/test/01.mp3"; PlayerStateSetSpeed_1_75_X() local 364 const char *path = "data/test/01.mp3"; PlayerStateSetSpeed_2_00_X() local [all...] |
| /third_party/NuttX/fs/vfs/include/ |
| H A D | driver.h | 97 * path - The path to the vnode to create 107 * EINVAL - 'path' is invalid for this operation 108 * EEXIST - An vnode already exists at 'path' 113 * The parameter path must point a valid string, which end with the terminating null byte. 114 * The total length of parameter path must less than the value defined by PATH_MAX. 115 * The prefix of the parameter path must be /dev/. 120 int register_driver(const char *path, 132 * The parameter path must point a valid string, which end with the terminating null byte. 133 * The length of parameter path mus [all...] |
| /third_party/ltp/lib/ |
| H A D | safe_file_ops.c | 70 const char *path, const char *fmt, ...) in file_scanf() 76 f = fopen(path, "r"); in file_scanf() 80 path); in file_scanf() 92 "The FILE '%s' ended prematurely", path); in file_scanf() 99 exp_convs, ret, path); in file_scanf() 105 path); in file_scanf() 114 path); in file_scanf() 122 const char *path, const char *fmt, ...) in safe_file_scanf() 128 f = fopen(path, "r"); in safe_file_scanf() 132 "Failed to open FILE '%s' for reading", path); in safe_file_scanf() 69 file_scanf(const char *file, const int lineno, const char *path, const char *fmt, ...) file_scanf() argument 120 safe_file_scanf(const char *file, const int lineno, void (*cleanup_fn) (void), const char *path, const char *fmt, ...) safe_file_scanf() argument 168 file_lines_scanf(const char *file, const int lineno, void (*cleanup_fn)(void), int strict, const char *path, const char *fmt, ...) file_lines_scanf() argument 212 file_printf(const char *file, const int lineno, const char *path, const char *fmt, ...) file_printf() argument 253 safe_file_vprintf(const char *file, const int lineno, void (*cleanup_fn)(void), const char *path, const char *fmt, va_list va) safe_file_vprintf() argument 280 safe_file_printf(const char *file, const int lineno, void (*cleanup_fn)(void), const char *path, const char *fmt, ...) safe_file_printf() argument 290 safe_try_file_printf(const char *file, const int lineno, void (*cleanup_fn)(void), const char *path, const char *fmt, ...) safe_try_file_printf() argument [all...] |
| /base/global/resource_management/frameworks/resmgr/include/ |
| H A D | hap_parser.h | 51 * @param zipFile hap file path 66 * Get the rawfile path 67 * @param filePath the hap path 68 * @param rawFilePath the rawFile path 69 * @return the rawFile path 82 * Get the raw file path 84 * @param rawFilePath the rawFile path 85 * @return the rawFile path 93 * @param hapPath the hap path 94 * @param patchPath the hqf path [all...] |
| /base/update/update_app/ |
| H A D | OAT.xml | 21 basedir: Root dir, the basedir + project path is the real source file location.
30 5. task project: Projects to be checked, the path field define the source root dir of the project.
35 2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilter is optional,the default value is:
36 <policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter"/>
38 "compatibility" is used to check license compatibility in the specified path;
39 "license" is used to check source license header in the specified path;
40 "copyright" is used to check source copyright header in the specified path;
41 "import" is used to check source dependency in the specified path, such as import ... ,include ...
42 "filetype" is used to check file type in the specified path, supported file types: archive, binary
43 "filename" is used to check whether the specified file exists in the specified path(suppor [all...] |
| /foundation/arkui/ace_engine/frameworks/core/components/track/ |
| H A D | rosen_render_capsule_track.cpp | 92 SkPath path; in DrawCapsuleProgressAnimation() local 93 path.addArc({ offsetX, offsetY, progressSize.Height() + offsetX, progressSize.Height() + offsetY }, 90, 180); in DrawCapsuleProgressAnimation() 95 path.addArc({ progressWidth + offsetX, offsetY, progressSize.Height() - progressWidth + offsetX, in DrawCapsuleProgressAnimation() 99 path.addRect( in DrawCapsuleProgressAnimation() 101 path.addArc({ (progressSize.Width() - radius) * 2.0 - progressWidth + offsetX, offsetY, progressWidth + offsetX, in DrawCapsuleProgressAnimation() 105 path.addRect({ radius + offsetX, offsetY, progressWidth + offsetX, progressSize.Height() + offsetY }); in DrawCapsuleProgressAnimation() 112 canvas->drawPath(path, paint); in DrawCapsuleProgressAnimation() 114 RSRecordingPath path; in DrawCapsuleProgressAnimation() local 115 path.AddArc(RSRect( in DrawCapsuleProgressAnimation() 118 path in DrawCapsuleProgressAnimation() 160 SkPath path; DrawCapsuleProgressVerticalAnimation() local 182 RSRecordingPath path; DrawCapsuleProgressVerticalAnimation() local [all...] |
| /foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_service_bundle_scan_test/ |
| H A D | bms_service_bundle_scan_test.cpp | 62 void CreateDir(const std::string &path) const; 63 void DeleteDir(const std::string &path) const; 64 void CreateFile(const std::string &path) const; 65 void DeleteFile(const std::string &path) const; 104 void BmsServiceBundleScanTest::CreateDir(const std::string &path) const in CreateDir() 106 if (access(path.c_str(), F_OK) != 0) { in CreateDir() 107 if (mkdir(path.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH) != 0) { in CreateDir() 108 APP_LOGE("CreateDir:%{private}s error", path.c_str()); in CreateDir() 113 void BmsServiceBundleScanTest::DeleteDir(const std::string &path) const in DeleteDir() 115 if (access(path in DeleteDir() 303 const std::string PATH = TEST_ERROR_DIR + "/" + PHOTOS_HAP; HWTEST_F() local [all...] |