Home
last modified time | relevance | path

Searched full:path (Results 351 - 375 of 40020) sorted by relevance

1...<<11121314151617181920>>...1601

/foundation/graphic/graphic_2d/rosen/modules/platform/utils/
H A Ddirectory_ex.h26 * @brief Get the full absolute path to the current program.
28 * /proc/self/exe represents the current program, and its source path can be
29 * read with the readlink function to get the absolute path of the current
36 * @brief Get the absolute path of the current program.
41 * @brief Obtain the path to the corresponding file by the full path.
46 * @brief Obtain the name to the corresponding file by the full path.
52 * path.
59 * Determine whether the path has ended with '/', and returns the path afte
[all...]
/test/testfwk/developer_test/local_coverage/push_coverage_so/
H A Dpush_coverage.py24 sys.localcoverage_path = os.path.join(current_path, "..")
25 sys.path.insert(0, sys.localcoverage_path)
34 parts_info_json = os.path.join(out_path, "build_configs", "parts_info", "part_subsystem.json")
35 if not os.path.exists(parts_info_json):
53 parts_info_json = os.path.join(out_path, "build_configs", "parts_info", "parts_path_info.json")
54 if not os.path.exists(parts_info_json):
62 path = os.path.join(out_path, "obj", json_obj[test_part])
63 return path
74 subsystem_config_json = os.path
[all...]
/third_party/mbedtls/scripts/mbedtls_dev/
H A Dbuild_tree.py12 def looks_like_tf_psa_crypto_root(path: str) -> bool:
14 return all(os.path.isdir(os.path.join(path, subdir))
17 def looks_like_mbedtls_root(path: str) -> bool:
19 return all(os.path.isdir(os.path.join(path, subdir))
22 def looks_like_root(path: str) -> bool:
23 return looks_like_tf_psa_crypto_root(path) o
[all...]
/third_party/skia/docs/examples/
H A DChromeMDRefreshTab.cpp15 SkPath path; in REG_FIDDLE() local
16 path.moveTo(0, bottom - 1); in REG_FIDDLE()
18 path.arcTo(scaled_endcap_radius - 1, scaled_endcap_radius - 1, 90, SkPath::kSmall_ArcSize, in REG_FIDDLE()
21 // path.rLineTo(0, -1); in REG_FIDDLE()
22 // path.rCubicTo(0.75 * scale, 0, 1.625 * scale, -0.5 * scale, 2 * scale, in REG_FIDDLE()
24 path.lineTo(scaled_endcap_radius - 1, scaled_endcap_radius + 1); in REG_FIDDLE()
25 // path.lineTo((endcap_width - 2) * scale, top + 1.5 * scale); in REG_FIDDLE()
27 path.arcTo(scaled_endcap_radius + 1, scaled_endcap_radius + 1, 90, SkPath::kSmall_ArcSize, in REG_FIDDLE()
35 // path.rLineTo(dx, -dy); in REG_FIDDLE()
36 // path in REG_FIDDLE()
145 SkPath path = GetInteriorPath(1.f, SkISize::Make(250, 36), 16); REG_FIDDLE() local
[all...]
/base/update/packaging_tools/
H A Dbuild_update.py21 target_package Target package file path.
22 update_package Update package file path.
27 Source package file path.
31 Variable partition mode, Partition list file path.
39 Private key file path.
44 -xp, --xml_path XML file path.
97 if arg is not None and not os.path.exists(arg):
99 "FileNotFoundError, path: %s" % arg, UPDATE_LOGGER.ERROR_LOG)
111 if arg != "ON_SERVER" and not os.path.isfile(arg):
113 "FileNotFoundError, path
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dcommon.py7 import os.path namespace
91 # If a relative path, parsed_build_file is relative to the directory
93 # parsed_build_file is not a usable path as-is. Resolve it by
95 # absolute, it is usable as a path regardless of the current directory,
96 # and os.path.join will return it as-is.
97 build_file = os.path.normpath(
98 os.path.join(os.path.dirname(build_file), parsed_build_file)
101 if not os.path.isabs(build_file):
129 # /path/t
[all...]
/third_party/typescript/src/testRunner/unittests/services/
H A DorganizeImports.ts299 path: "/lib.ts",
307 path: "/react.ts",
320 path: "/a.ts",
324 const changes = languageService.organizeImports({ type: "file", fileName: testFile.path }, testFormatSettings, emptyOptions);
330 path: "/a.ts",
334 const changes = languageService.organizeImports({ type: "file", fileName: testFile.path }, testFormatSettings, emptyOptions);
340 path: "/a.ts",
344 const changes = languageService.organizeImports({ type: "file", fileName: testFile.path }, testFormatSettings, emptyOptions);
351 path: "/test.ts",
362 path
[all...]
/third_party/ntfs-3g/libfuse-lite/
H A Dfuse.c462 fprintf(stderr, "fuse: path too long: ...%s\n", s + len); in add_name()
710 int fuse_fs_getattr(struct fuse_fs *fs, const char *path, struct stat *buf) in fuse_fs_getattr() argument
714 return fs->op.getattr(path, buf); in fuse_fs_getattr()
719 int fuse_fs_fgetattr(struct fuse_fs *fs, const char *path, struct stat *buf, in fuse_fs_fgetattr() argument
724 return fs->op.fgetattr(path, buf, fi); in fuse_fs_fgetattr()
726 return fs->op.getattr(path, buf); in fuse_fs_fgetattr()
741 int fuse_fs_unlink(struct fuse_fs *fs, const char *path) in fuse_fs_unlink() argument
745 return fs->op.unlink(path); in fuse_fs_unlink()
750 int fuse_fs_rmdir(struct fuse_fs *fs, const char *path) in fuse_fs_rmdir() argument
754 return fs->op.rmdir(path); in fuse_fs_rmdir()
759 fuse_fs_symlink(struct fuse_fs *fs, const char *linkname, const char *path) fuse_fs_symlink() argument
777 fuse_fs_release(struct fuse_fs *fs, const char *path, struct fuse_file_info *fi) fuse_fs_release() argument
787 fuse_fs_opendir(struct fuse_fs *fs, const char *path, struct fuse_file_info *fi) fuse_fs_opendir() argument
797 fuse_fs_open(struct fuse_fs *fs, const char *path, struct fuse_file_info *fi) fuse_fs_open() argument
807 fuse_fs_read(struct fuse_fs *fs, const char *path, char *buf, size_t size, off_t off, struct fuse_file_info *fi) fuse_fs_read() argument
817 fuse_fs_write(struct fuse_fs *fs, const char *path, const char *buf, size_t size, off_t off, struct fuse_file_info *fi) fuse_fs_write() argument
827 fuse_fs_fsync(struct fuse_fs *fs, const char *path, int datasync, struct fuse_file_info *fi) fuse_fs_fsync() argument
837 fuse_fs_fsyncdir(struct fuse_fs *fs, const char *path, int datasync, struct fuse_file_info *fi) fuse_fs_fsyncdir() argument
847 fuse_fs_flush(struct fuse_fs *fs, const char *path, struct fuse_file_info *fi) fuse_fs_flush() argument
857 fuse_fs_statfs(struct fuse_fs *fs, const char *path, struct statvfs *buf) fuse_fs_statfs() argument
869 fuse_fs_releasedir(struct fuse_fs *fs, const char *path, struct fuse_file_info *fi) fuse_fs_releasedir() argument
879 fuse_fs_readdir(struct fuse_fs *fs, const char *path, void *buf, fuse_fill_dir_t filler, off_t off, struct fuse_file_info *fi) fuse_fs_readdir() argument
890 fuse_fs_create(struct fuse_fs *fs, const char *path, mode_t mode, struct fuse_file_info *fi) fuse_fs_create() argument
900 fuse_fs_lock(struct fuse_fs *fs, const char *path, struct fuse_file_info *fi, int cmd, struct flock *lock) fuse_fs_lock() argument
910 fuse_fs_chown(struct fuse_fs *fs, const char *path, uid_t uid, gid_t gid) fuse_fs_chown() argument
919 fuse_fs_truncate(struct fuse_fs *fs, const char *path, off_t size) fuse_fs_truncate() argument
928 fuse_fs_ftruncate(struct fuse_fs *fs, const char *path, off_t size, struct fuse_file_info *fi) fuse_fs_ftruncate() argument
940 fuse_fs_utimens(struct fuse_fs *fs, const char *path, const struct timespec tv[2]) fuse_fs_utimens() argument
955 fuse_fs_access(struct fuse_fs *fs, const char *path, int mask) fuse_fs_access() argument
964 fuse_fs_readlink(struct fuse_fs *fs, const char *path, char *buf, size_t len) fuse_fs_readlink() argument
974 fuse_fs_mknod(struct fuse_fs *fs, const char *path, mode_t mode, dev_t rdev) fuse_fs_mknod() argument
984 fuse_fs_mkdir(struct fuse_fs *fs, const char *path, mode_t mode) fuse_fs_mkdir() argument
993 fuse_fs_setxattr(struct fuse_fs *fs, const char *path, const char *name, const char *value, size_t size, int flags) fuse_fs_setxattr() argument
1003 fuse_fs_getxattr(struct fuse_fs *fs, const char *path, const char *name, char *value, size_t size) fuse_fs_getxattr() argument
1013 fuse_fs_listxattr(struct fuse_fs *fs, const char *path, char *list, size_t size) fuse_fs_listxattr() argument
1023 fuse_fs_bmap(struct fuse_fs *fs, const char *path, size_t blocksize, uint64_t *idx) fuse_fs_bmap() argument
1033 fuse_fs_removexattr(struct fuse_fs *fs, const char *path, const char *name) fuse_fs_removexattr() argument
1042 fuse_fs_ioctl(struct fuse_fs *fs, const char *path, int cmd, void *arg, struct fuse_file_info *fi, unsigned int flags, void *data) fuse_fs_ioctl() argument
1163 lookup_path(struct fuse *f, fuse_ino_t nodeid, const char *name, const char *path, struct fuse_entry_param *e, struct fuse_file_info *fi) lookup_path() argument
1341 char *path; fuse_lib_lookup() local
1380 char *path; fuse_lib_getattr() local
1411 fuse_fs_chmod(struct fuse_fs *fs, const char *path, mode_t mode) fuse_fs_chmod() argument
1425 char *path; fuse_lib_setattr() local
1505 char *path; fuse_lib_access() local
1528 char *path; fuse_lib_readlink() local
1554 char *path; fuse_lib_mknod() local
1594 char *path; fuse_lib_mkdir() local
1619 char *path; fuse_lib_unlink() local
1647 char *path; fuse_lib_rmdir() local
1673 char *path; fuse_lib_symlink() local
1761 fuse_do_release(struct fuse *f, fuse_ino_t ino, const char *path, struct fuse_file_info *fi) fuse_do_release() argument
1790 char *path; fuse_lib_create() local
1849 open_auto_cache(struct fuse *f, fuse_ino_t ino, const char *path, struct fuse_file_info *fi) open_auto_cache() argument
1886 char *path = NULL; fuse_lib_open() local
1933 char *path; fuse_lib_read() local
1977 char *path; fuse_lib_write() local
2013 char *path; fuse_lib_fsync() local
2049 char *path; fuse_lib_opendir() local
2180 char *path; readdir_fill() local
2247 char *path; fuse_lib_releasedir() local
2270 char *path; fuse_lib_fsyncdir() local
2293 char *path; fuse_lib_statfs() local
2324 char *path; fuse_lib_setxattr() local
2345 char *path; common_getxattr() local
2391 char *path; common_listxattr() local
2438 char *path; fuse_lib_removexattr() local
2571 fuse_flush_common(struct fuse *f, fuse_req_t req, fuse_ino_t ino, const char *path, struct fuse_file_info *fi) fuse_flush_common() argument
2607 char *path; fuse_lib_release() local
2636 char *path; fuse_lib_flush() local
2654 char *path; fuse_lock_common() local
2719 char *path; fuse_lib_bmap() local
2746 char *path, *out_buf = NULL; fuse_lib_ioctl() local
3222 char *path = get_path(f, node->nodeid); fuse_destroy() local
[all...]
/base/startup/appspawn/
H A Dappdata-sandbox-isolated-new.json9 "src-path" : "/dev",
10 "sandbox-path" : "/dev"
12 "src-path" : "/proc",
13 "sandbox-path" : "/proc"
15 "src-path" : "/sys",
16 "sandbox-path" : "/sys"
18 "src-path" : "/system/fonts",
19 "sandbox-path" : "/system/fonts"
21 "src-path" : "/system/etc",
22 "sandbox-path"
[all...]
/third_party/typescript/tests/baselines/reference/
H A DesModuleInteropTslibHelpers.types2 declare module "path";
3 >"path" : any
6 import path from "path";
7 >path : any
9 path.resolve("", "../");
10 >path.resolve("", "../") : any
11 >path.resolve : any
12 >path : any
21 import * as path fro
[all...]
H A DesModuleInteropTslibHelpers.symbols2 declare module "path";
3 >"path" : Symbol("path", Decl(refs.d.ts, 0, 0))
6 import path from "path";
7 >path : Symbol(path, Decl(file.ts, 0, 6))
9 path.resolve("", "../");
10 >path : Symbol(path, Dec
[all...]
/third_party/python/Lib/
H A Dshutil.py204 if isinstance(src, os.DirEntry) and hasattr(os.path, 'samestat'):
206 return os.path.samestat(src.stat(), os.stat(dst))
210 if hasattr(os.path, 'samefile'):
212 return os.path.samefile(src, dst)
217 return (os.path.normcase(os.path.abspath(src)) ==
218 os.path.normcase(os.path.abspath(dst)))
224 return fn.is_symlink() if isinstance(fn, os.DirEntry) else os.path.islink(fn)
248 fn = fn.path i
[all...]
H A Dzipimport.py4 - zipimporter: a class; its constructor takes a path to a Zip archive.
11 used by the builtin import mechanism for sys.path items that are paths
49 Create a new zipimporter instance. 'archivepath' must be a path to
50 a zipfile, or to a specific path inside a zipfile. For example, it can be
61 # Split the "subdirectory" from the Zip archive path, lookup a matching
64 def __init__(self, path):
65 if not isinstance(path, str):
66 raise TypeError(f"expected str, not {type(path)!r}")
67 if not path:
68 raise ZipImportError('archive path i
[all...]
/third_party/ltp/include/
H A Dtst_safe_file_at.h14 #define SAFE_OPENAT(dirfd, path, oflags, ...) \
16 (dirfd), (path), (oflags), ## __VA_ARGS__)
18 #define SAFE_FILE_READAT(dirfd, path, buf, nbyte) \
20 (dirfd), (path), (buf), (nbyte))
23 #define SAFE_FILE_PRINTFAT(dirfd, path, fmt, ...) \
25 (dirfd), (path), (fmt), __VA_ARGS__)
27 #define SAFE_UNLINKAT(dirfd, path, flags) \
28 safe_unlinkat(__FILE__, __LINE__, (dirfd), (path), (flags))
30 #define SAFE_FCHOWNAT(dirfd, path, owner, group, flags) \
32 (dirfd), (path), (owne
[all...]
H A Dtst_device.h26 * @path: Path to umount
28 int tst_umount(const char *path);
32 * @path: Mount path to verify
34 int tst_is_mounted(const char *path);
35 int tst_is_mounted_at_tmpdir(const char *path);
49 * free loopdev). If path is non-NULL, it will be filled with free loopdev path.
52 int tst_find_free_loopdev(char *path, size_
[all...]
H A Dtst_assert.h10 #define TST_ASSERT_INT(path, val) \
11 tst_assert_int(__FILE__, __LINE__, path, val)
14 * Asserts that integer value stored in file pointed by path equals to the
19 const char *path, int val);
21 #define TST_ASSERT_FILE_INT(path, prefix, val) \
22 tst_assert_file_int(__FILE__, __LINE__, path, prefix, val)
28 const char *path, unsigned long val);
30 #define TST_ASSERT_ULONG(path, val) \
31 tst_assert_ulong(__FILE__, __LINE__, path, val)
34 * Asserts that integer value stored in the prefix field of file pointed by path
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/svg/
H A Drosen_render_svg_line.cpp47 SkPath path; in Paint() local
52 RSPath path; in Paint() local
54 GetPath(path); in Paint()
56 RosenSvgPainter::SetFillStyle(canvas, path, fillState_, opacity_); in Paint()
57 RosenSvgPainter::SetStrokeStyle(canvas, path, strokeState_, opacity_); in Paint()
77 SkPath path; in PaintDirectly() local
85 RSPath path; in PaintDirectly() local
87 GetPath(path); in PaintDirectly()
89 RosenSvgPainter::SetFillStyle(canvas, path, fillState_, opacity_); in PaintDirectly()
90 RosenSvgPainter::SetStrokeStyle(canvas, path, strokeState in PaintDirectly()
93 UpdateMotion(const std::string& path, const std::string& rotate, double percent) UpdateMotion() argument
106 SkPath path; GetPaintBounds() local
119 GetPath(SkPath& path) GetPath() argument
125 GetPath(RSPath& path) GetPath() argument
[all...]
/third_party/node/test/parallel/
H A Dtest-module-loading-globalpaths.js5 const path = require('path');
21 const prefixPath = path.join(tmpdir.path, 'install');
25 testExecPath = path.join(prefixPath, path.basename(process.execPath));
27 const prefixBinPath = path.join(prefixPath, 'bin');
29 testExecPath = path.join(prefixBinPath, path.basename(process.execPath));
42 const testFixturesDir = fixtures.path(pat
[all...]
/third_party/python/Lib/test/
H A Dtest_venv.py11 import os.path namespace
63 self.env_dir = os.path.realpath(tempfile.mkdtemp())
73 self.exe = os.path.split(executable)[-1]
75 and os.path.lexists(executable)
76 and not os.path.exists(executable)):
91 return os.path.join(self.env_dir, *args)
103 self.assertTrue(os.path.isdir(fn))
107 Test the create function with default arguments and a str path.
115 Test the create function with default arguments and a pathlib.Path path
[all...]
H A Dtest_pkgutil.py1 from pathlib import Path namespace
10 import os.path namespace
26 sys.path.insert(0, self.dirname)
29 del sys.path[0]
38 package_dir = os.path.join(self.dirname, pkg)
41 f = open(os.path.join(package_dir, '__init__.py'), "wb")
44 f = open(os.path.join(package_dir, 'res.txt'), "wb")
47 os.mkdir(os.path.join(package_dir, 'sub'))
48 f = open(os.path.join(package_dir, 'sub', 'res.txt'), "wb")
68 zip_file = os.path
[all...]
/third_party/protobuf/cmake/
H A DREADME.md22 C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional>cd C:\Path\to
23 C:\Path\to>
25 Where *C:\Path\to* is path to your real working directory.
29 C:\Path\to>mkdir install
31 If *cmake* command is not available from *Command Prompt*, add it to system *PATH* variable:
33 C:\Path\to>set PATH=%PATH%;C:\Program Files (x86)\CMake\bin
35 If *git* command is not available from *Command Prompt*, add it to system *PATH* variabl
[all...]
/third_party/skia/third_party/externals/dawn/generator/
H A Dgenerator_lib.py43 # template: Jinja2 template name, relative to --template-dir path.
45 # output: Output file path, relative to temporary output directory.
76 # Allow custom Jinja2 installation path through an additional python
77 # path from the arguments if present. This isn't done through the regular
83 kJinja2Path = '--jinja2-path'
86 # Add parent path for the import to succeed.
87 path = os.path.join(sys.argv[jinja2_path_argv_index + 1], os.pardir) variable
88 sys.path.insert(1, path)
[all...]
/test/testfwk/developer_test/libs/benchmark/report/
H A Dgenerate_report.py33 if os.path.isfile(json_file_path):
57 def get_file_list_by_postfix(path, postfix, filter_jar=""):
59 for dirs in os.walk(path):
65 file_path = os.path.join(dirs[0], file_path)
101 dest_path = os.path.abspath(sys.argv[2])
106 if not os.path.exists(src_path):
110 if os.path.exists(dest_path):
114 self._generate_benchmark_summary_report(os.path.abspath(dest_path))
115 self._generate_all_benchmark_detail(os.path.abspath(dest_path))
244 tmpl_file_path = os.path
[all...]
/base/security/huks/services/huks_standard/huks_service/main/hks_storage/src/
H A Dhks_storage.c41 static HksStorageFileLock *CreateStorageFileLock(const char *path, const char *fileName) in CreateStorageFileLock() argument
46 int32_t ret = HksGetFileName(path, fileName, fullPath, HKS_MAX_FILE_NAME_LEN); in CreateStorageFileLock()
48 HKS_LOG_E("get full path failed, ret = %" LOG_PUBLIC "d.", ret); in CreateStorageFileLock()
60 const char *path, const char *fileName, uint32_t offset, const uint8_t *buf, uint32_t len) in HksStorageWriteFile()
63 HksStorageFileLock *lock = CreateStorageFileLock(path, fileName); in HksStorageWriteFile()
65 int32_t ret = HksFileWrite(path, fileName, offset, buf, len); in HksStorageWriteFile()
70 return HksFileWrite(path, fileName, offset, buf, len); in HksStorageWriteFile()
75 const char *path, const char *fileName, uint32_t offset, struct HksBlob *blob, uint32_t *size) in HksStorageReadFile()
78 HksStorageFileLock *lock = CreateStorageFileLock(path, fileName); in HksStorageReadFile()
80 int32_t ret = HksFileRead(path, fileNam in HksStorageReadFile()
59 HksStorageWriteFile( const char *path, const char *fileName, uint32_t offset, const uint8_t *buf, uint32_t len) HksStorageWriteFile() argument
74 HksStorageReadFile( const char *path, const char *fileName, uint32_t offset, struct HksBlob *blob, uint32_t *size) HksStorageReadFile() argument
90 CleanFile(const char *path, const char *fileName) CleanFile() argument
130 HksStorageRemoveFile(const char *path, const char *fileName) HksStorageRemoveFile() argument
188 GetKeyBlobFromFile(const char *path, const char *fileName, struct HksBlob *keyBlob) GetKeyBlobFromFile() argument
351 GetFileCount(const char *path, uint32_t *fileCount) GetFileCount() argument
377 GetFileNameList(const char *path, struct HksFileEntry *fileNameList, uint32_t *fileCount) GetFileNameList() argument
415 GetAndCheckFileCount(const char *path, uint32_t *fileCount, const uint32_t *inputCount) GetAndCheckFileCount() argument
[all...]
/third_party/typescript/src/harness/
H A DvfsUtil.ts3 * Posix-style path to the TypeScript compiler build outputs (including tsc.js, lib.d.ts, etc.)
8 * Posix-style path to additional mountable folders (./tests/projects in this repo)
13 * Posix-style path to additional test libraries
18 * Posix-style path to sources under test
182 * Gets the metadata object for a path.
183 * @param path
185 public filemeta(path: string): collections.Metadata {
186 const { node } = this._walk(this._resolve(path));
217 public chdir(path: string) {
219 path
[all...]

Completed in 15 milliseconds

1...<<11121314151617181920>>...1601