Home
last modified time | relevance | path

Searched full:path (Results 2751 - 2775 of 38346) sorted by relevance

1...<<111112113114115116117118119120>>...1534

/third_party/skia/infra/bots/recipe_modules/flavor/
H A Dios.py72 self.m.path['start_dir'],
135 full = self.m.path['start_dir'].join(
151 def remove_file_on_device(self, path):
152 self._run_ios_script('rm', path)
154 def create_clean_device_dir(self, path):
155 self._run_ios_script('rm', path)
156 self._run_ios_script('mkdir', path)
158 def read_file_on_device(self, path, **kwargs):
160 full = self.m.path['start_dir'].join(
163 name = 'cat_file %s' % path,
[all...]
/third_party/selinux/libselinux/src/
H A Dlabel_x.c35 static int process_line(const char *path, char *line_buf, int pass, in process_line() argument
52 "%s: line %u is missing fields, skipping\n", path, in process_line()
80 path, lineno, type); in process_line()
102 const char *path = NULL; in init() local
113 path = opts[n].value; in init()
118 if (!path) in init()
119 path = selinux_x_context_path(); in init()
120 if ((fp = fopen(path, "re")) == NULL) in init()
130 rec->spec_file = strdup(path); in init()
146 if (process_line(path, line_bu in init()
[all...]
/third_party/vk-gl-cts/scripts/
H A Dbuild_caselists.py50 DEFAULT_BUILD_DIR = os.path.join(tempfile.gettempdir(), "deqp-caselists", "{targetName}-{buildType}")
68 return os.path.join(buildCfg.getBuildDir(), "modules")
75 fullPath = os.path.join(modulesDir, module.dirName)
76 if os.path.exists(fullPath) and os.path.isdir(fullPath):
85 return os.path.join(getModulesPath(buildCfg), module.dirName, getCaseListFileName(module, caseListType))
88 workDir = os.path.join(getModulesPath(buildCfg), module.dirName)
93 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", module.binName))
101 dstPath = os.path.join(dstDir, caseListFile)
103 if os.path
[all...]
/third_party/vk-gl-cts/scripts/src_util/
H A Dcommon.py69 ext = os.path.splitext(filePath)[1]
96 scriptDir = os.path.dirname(os.path.abspath(__file__))
97 projectDir = os.path.normpath(os.path.join(scriptDir, "../.."))
108 return os.path.normpath(os.path.join(getProjectPath(), projectRelativePath))
114 return [getAbsolutePathPathFromProjectRelativePath(path) for path in relativePaths]
119 return [getAbsolutePathPathFromProjectRelativePath(path) fo
[all...]
/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeFilePath.hpp23 * \brief Filesystem path class.
48 static const std::string separator; /*!< Path separator. */
51 FilePath (const std::string& path);
52 FilePath (const char* path);
67 static FilePath normalize (const FilePath& path);
86 void createDirectory (const char* path);
87 void createDirectoryAndParents (const char* path);
93 inline FilePath::FilePath (const std::string& path) in FilePath() argument
94 : m_path(path) in FilePath()
98 inline FilePath::FilePath (const char* path) in FilePath() argument
[all...]
/third_party/vulkan-loader/docs/images/svgs/
H A Dfunction_device_chain.svg28 <path
43 <path
70 <path
85 <path
100 <path
115 <path
130 <path
145 <path
160 <path
175 <path
[all...]
/third_party/libinput/doc/user/svg/
H A Dtap-n-drag.svg72 <path
87 <path
102 <path
118 <path
133 <path
148 <path
163 <path
178 <path
193 <path
209 <path
[all...]
/third_party/node/doc/api/
H A Dfs.json16 "desc": "<p>Promise-based operations return a promise that is fulfilled when the\nasynchronous operation is complete.</p>\n<pre><code class=\"language-mjs\">import { unlink } from 'node:fs/promises';\n\ntry {\n await unlink('/tmp/hello');\n console.log('successfully deleted /tmp/hello');\n} catch (error) {\n console.error('there was an error:', error.message);\n}\n</code></pre>\n<pre><code class=\"language-cjs\">const { unlink } = require('node:fs/promises');\n\n(async function(path) {\n try {\n await unlink(path);\n console.log(`successfully deleted ${path}`);\n } catch (error) {\n console.error('there was an error:', error.message);\n }\n})('/tmp/hello');\n</code></pre>",
1202 "textRaw": "`fsPromises.access(path[, mode])`",
1221 "textRaw": "`path` {string|Buffer|URL}",
1222 "name": "path",
1234 "desc": "<p>Tests a user's permissions for the file or directory specified by <code>path</code>.\nThe <code>mode</code> argument is an optional integer that specifies the accessibility\nchecks to be performed. <code>mode</code> should be either the value <code>fs.constants.F_OK</code>\nor a mask consisting of the bitwise OR of any of <code>fs.constants.R_OK</code>,\n<code>fs.constants.W_OK</code>, and <code>fs.constants.X_OK</code> (e.g.\n<code>fs.constants.W_OK | fs.constants.R_OK</code>). Check <a href=\"#file-access-constants\">File access constants</a> for\npossible values of <code>mode</code>.</p>\n<p>If the accessibility check is successful, the promise is resolved with no\nvalue. If any of the accessibility checks fail, the promise is rejected\nwith an <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error\" class=\"type\">&lt;Error&gt;</a> object. The following example checks if the file\n<code>/etc/passwd</code> can be read and written by the current process.</p>\n<pre><code class=\"language-mjs\">import { access, constants } from 'node:fs/promises';\n\ntry {\n await access('/etc/passwd', constants.R_OK | constants.W_OK);\n console.log('can access');\n} catch {\n console.error('cannot access');\n}\n</code></pre>\n<p>Using <code>fsPromises.access()</code> to check for the accessibility of a file before\ncalling <code>fsPromises.open()</code> is not recommended. Doing so introduces a race\ncondition, since other processes may change the file's state between the two\ncalls. Instead, user code should open/read/write the file directly and handle\nthe error raised if the file is not accessible.</p>"
1237 "textRaw": "`fsPromises.appendFile(path, data[, options])`",
1256 "textRaw": "`path` {string|Buffer|URL|FileHandle} filename or {FileHandle}",
1257 "name": "path",
[all...]
/third_party/python/Lib/test/
H A Dtest_ntpath.py34 def _getshortpathname(path):
38 result_len = GSPN(path, None, 0)
40 raise OSError("failed to get short path name 0x{:08X}"
43 result_len = GSPN(path, result, result_len)
46 def _norm(path):
47 if isinstance(path, (bytes, str, os.PathLike)):
48 return ntpath.normcase(os.fsdecode(path))
49 elif hasattr(path, "__iter__"):
50 return tuple(ntpath.normcase(os.fsdecode(p)) for p in path)
51 return path
901 path = ntpath global() variable in PathLikeTests
[all...]
/third_party/typescript/src/services/
H A DstringCompletions.ts126 const isNewIdentifierLocation = true; // The user may type in a path that doesn't yet exist, creating a "new identifier" with respect to the collection of identifiers the server is aware of.
253 // Get all known external module names or complete a path to a module
374 const scriptPath = sourceFile.path;
394 function getCompletionEntriesForRelativeModules(literalValue: string, scriptDirectory: string, compilerOptions: CompilerOptions, host: LanguageServiceHost, scriptPath: Path, includeExtensions: IncludeExtensionsOption) {
424 * Takes a script path and returns paths for all potential folders that could be merged with its
431 // Determine the path to the directory containing the script relative to the root directory it is contained within
435 // Now find a path for each potential directory that is to be merged with the one containing the script
455 * Given a path ending at a directory, gets the completions for the path, and filters for those entries containing the basename.
472 * Remove the basename from the path
[all...]
/third_party/libuv/src/win/
H A Dfs.c183 * path that CreateSymbolicLink will perform on absolute paths. If the path in fs__readlink_handle()
206 /* \??\UNC\<server>\<share>\ - make sure the final path looks like in fs__readlink_handle()
225 * understand such a path when returned by uv_readlink(). UNC paths are in fs__readlink_handle()
266 /* Make sure it is an absolute path. */ in fs__readlink_handle()
287 INLINE static int fs__capture_path(uv_fs_t* req, const char* path, in fs__capture_path() argument
296 /* new_path can only be set if path is also set. */ in fs__capture_path()
297 assert(new_path == NULL || path != NULL); in fs__capture_path()
299 if (path != NULL) { in fs__capture_path()
300 pathw_len = uv_wtf8_length_as_utf16(path); in fs__capture_path()
1184 char* path; fs__mktemp() local
1813 fs__stat_impl_from_path(WCHAR* path, int do_lstat, uv_stat_t* statbuf) fs__stat_impl_from_path() argument
2263 fs__utime_impl_from_path(WCHAR* path, double atime, double mtime, int do_lutime) fs__utime_impl_from_path() argument
2360 fs__create_junction(uv_fs_t* req, const WCHAR* path, const WCHAR* new_path) fs__create_junction() argument
2876 uv_fs_open(uv_loop_t* loop, uv_fs_t* req, const char* path, int flags, int mode, uv_fs_cb cb) uv_fs_open() argument
2966 uv_fs_unlink(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_unlink() argument
2981 uv_fs_mkdir(uv_loop_t* loop, uv_fs_t* req, const char* path, int mode, uv_fs_cb cb) uv_fs_mkdir() argument
3031 uv_fs_rmdir(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_rmdir() argument
3045 uv_fs_scandir(uv_loop_t* loop, uv_fs_t* req, const char* path, int flags, uv_fs_cb cb) uv_fs_scandir() argument
3060 uv_fs_opendir(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_opendir() argument
3105 uv_fs_link(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, uv_fs_cb cb) uv_fs_link() argument
3120 uv_fs_symlink(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, int flags, uv_fs_cb cb) uv_fs_symlink() argument
3136 uv_fs_readlink(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_readlink() argument
3151 uv_fs_realpath(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_realpath() argument
3172 uv_fs_chown(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_uid_t uid, uv_gid_t gid, uv_fs_cb cb) uv_fs_chown() argument
3194 uv_fs_lchown(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_uid_t uid, uv_gid_t gid, uv_fs_cb cb) uv_fs_lchown() argument
3209 uv_fs_stat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_stat() argument
3223 uv_fs_lstat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_lstat() argument
3244 uv_fs_rename(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, uv_fs_cb cb) uv_fs_rename() argument
3282 uv_fs_copyfile(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, int flags, uv_fs_cb cb) uv_fs_copyfile() argument
3321 uv_fs_access(uv_loop_t* loop, uv_fs_t* req, const char* path, int flags, uv_fs_cb cb) uv_fs_access() argument
3340 uv_fs_chmod(uv_loop_t* loop, uv_fs_t* req, const char* path, int mode, uv_fs_cb cb) uv_fs_chmod() argument
3365 uv_fs_utime(uv_loop_t* loop, uv_fs_t* req, const char* path, double atime, double mtime, uv_fs_cb cb) uv_fs_utime() argument
3391 uv_fs_lutime(uv_loop_t* loop, uv_fs_t* req, const char* path, double atime, double mtime, uv_fs_cb cb) uv_fs_lutime() argument
3408 uv_fs_statfs(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_statfs() argument
[all...]
/third_party/node/deps/uv/src/win/
H A Dfs.c145 INLINE static int fs__capture_path(uv_fs_t* req, const char* path, in fs__capture_path() argument
151 /* new_path can only be set if path is also set. */ in fs__capture_path()
152 assert(new_path == NULL || path != NULL); in fs__capture_path()
154 if (path != NULL) { in fs__capture_path()
157 path, in fs__capture_path()
168 if (path != NULL && copy_path) { in fs__capture_path()
169 path_len = 1 + strlen(path); in fs__capture_path()
191 req->path = NULL; in fs__capture_path()
202 if (path != NULL) { in fs__capture_path()
205 path, in fs__capture_path()
1250 char* path; fs__mktemp() local
1863 fs__stat_impl_from_path(WCHAR* path, int do_lstat, uv_stat_t* statbuf) fs__stat_impl_from_path() argument
2282 fs__utime_impl_from_path(WCHAR* path, double atime, double mtime, int do_lutime) fs__utime_impl_from_path() argument
2379 fs__create_junction(uv_fs_t* req, const WCHAR* path, const WCHAR* new_path) fs__create_junction() argument
2889 uv_fs_open(uv_loop_t* loop, uv_fs_t* req, const char* path, int flags, int mode, uv_fs_cb cb) uv_fs_open() argument
2979 uv_fs_unlink(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_unlink() argument
2994 uv_fs_mkdir(uv_loop_t* loop, uv_fs_t* req, const char* path, int mode, uv_fs_cb cb) uv_fs_mkdir() argument
3044 uv_fs_rmdir(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_rmdir() argument
3058 uv_fs_scandir(uv_loop_t* loop, uv_fs_t* req, const char* path, int flags, uv_fs_cb cb) uv_fs_scandir() argument
3073 uv_fs_opendir(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_opendir() argument
3118 uv_fs_link(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, uv_fs_cb cb) uv_fs_link() argument
3133 uv_fs_symlink(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, int flags, uv_fs_cb cb) uv_fs_symlink() argument
3149 uv_fs_readlink(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_readlink() argument
3164 uv_fs_realpath(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_realpath() argument
3185 uv_fs_chown(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_uid_t uid, uv_gid_t gid, uv_fs_cb cb) uv_fs_chown() argument
3207 uv_fs_lchown(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_uid_t uid, uv_gid_t gid, uv_fs_cb cb) uv_fs_lchown() argument
3222 uv_fs_stat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_stat() argument
3236 uv_fs_lstat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_lstat() argument
3257 uv_fs_rename(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, uv_fs_cb cb) uv_fs_rename() argument
3295 uv_fs_copyfile(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, int flags, uv_fs_cb cb) uv_fs_copyfile() argument
3334 uv_fs_access(uv_loop_t* loop, uv_fs_t* req, const char* path, int flags, uv_fs_cb cb) uv_fs_access() argument
3353 uv_fs_chmod(uv_loop_t* loop, uv_fs_t* req, const char* path, int mode, uv_fs_cb cb) uv_fs_chmod() argument
3378 uv_fs_utime(uv_loop_t* loop, uv_fs_t* req, const char* path, double atime, double mtime, uv_fs_cb cb) uv_fs_utime() argument
3404 uv_fs_lutime(uv_loop_t* loop, uv_fs_t* req, const char* path, double atime, double mtime, uv_fs_cb cb) uv_fs_lutime() argument
3421 uv_fs_statfs(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) uv_fs_statfs() argument
[all...]
/third_party/python/
H A Dsetup.py147 if dir is None or not os.path.isdir(dir) or dir in dirlist:
149 for i, path in enumerate(dirlist):
150 if not os.path.isabs(path):
173 if os.path.isabs(subdir):
175 path = os.path.join(sysroot, subdir)
176 if os.path.isdir(path):
177 dirs.append(path)
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/wpa_gui-qt4/icons/
H A Dap.svg528 <path
533 <path
538 <path
542 <path
546 <path
550 <path
555 <path
560 <path
564 <path
568 <path
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/wpa_gui-qt4/icons/
H A Dap.svg528 <path
533 <path
538 <path
542 <path
546 <path
550 <path
555 <path
560 <path
564 <path
568 <path
[all...]
/third_party/libinput/doc/
H A Dtouchpad-gestures-state-machine.svg4 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="3548px" height="2248px" viewBox="-0.5 -0.5 3548 2248" content="&lt;mxfile host=&quot;app.diagrams.net&quot; modified=&quot;2022-01-22T18:22:22.351Z&quot; agent=&quot;5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36&quot; etag=&quot;UrdhAhHn5AH3wTDN2l_l&quot; version=&quot;16.4.5&quot; type=&quot;device&quot;&gt;&lt;diagram id=&quot;C5RBs43oDa-KdzZeNtuy&quot; name=&quot;Page-1&quot;&gt;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&lt;/diagram&gt;&lt;/mxfile&gt;"><defs/><g><ellipse cx="799" cy="107" rx="60" ry="40" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 107px; margin-left: 740px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">NONE</div></div></div></foreignObject><text x="799" y="111" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">NONE</text></switch></g><path d="M 799 147 L 799 180.63" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 799 185.88 L 795.5 178.88 L 799 180.63 L 802.5 178.88 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 739 432.56 Q 774 442.56 809 432.56 Q 844 422.56 879 432.56 L 879 471.44 Q 844 461.44 809 471.44 Q 774 481.44 739 471.44 L 739 432.56 Z" fill="#f5f5f5" stroke="#666666" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 452px; margin-left: 740px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">FINGER_DETECTED</div></div></div></foreignObject><text x="809" y="456" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">FINGER_DETECTED</text></switch></g><path d="M 799 377 L 799 402 L 800 402 L 800.03 429.63" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 800.04 434.88 L 796.53 427.89 L 800.03 429.63 L 803.53 427.88 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 406px; margin-left: 800px;"><div data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; background-color: rgb(255, 255, 255); white-space: nowrap;">yes</div></div></div></foreignObject><text x="800" y="409" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="11px" text-anchor="middle">yes</text></switch></g><path d="M 839 337 L 959 337 L 959 710.63" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 959 715.88 L 955.5 708.88 L 959 710.63 L 962.5 708.88 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 467px; margin-left: 959px;"><div data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; background-color: rgb(255, 255, 255); white-space: nowrap;">no</div></div></div></foreignObject><text x="959" y="470" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="11px" text-anchor="middle">no</text></switch></g><path d="M 799 297 L 839 337 L 799 377 L 759 337 Z" fill="#f5f5f5" stroke="#666666" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 337px; margin-left: 760px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Gestures enabled?</div></div></div></foreignObject><text x="799" y="341" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">Gestures enab...</text></switch></g><path d="M 799 267 L 799 290.63" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path
[all...]
/applications/standard/app_samples/code/SystemFeature/FileManagement/Photos/entry/src/main/resources/base/media/
H A Dic_video_play_btn.svg5 <path d="M33.6874291,22.4753667 L40.0504546,33.5545171 C40.7442865,34.7626008 40.327403,36.304408 39.1193193,36.9982399 C38.7370308,37.2177975 38.303877,37.3333333 37.8630256,37.3333333 L25.1369744,37.3333333 C23.7438237,37.3333333 22.6144519,36.2039615 22.6144519,34.8108108 C22.6144519,34.3699594 22.7299878,33.9368056 22.9495454,33.5545171 L29.3125709,22.4753667 C30.0064028,21.267283 31.54821,20.8503995 32.7562937,21.5442314 C33.1436395,21.7666935 33.464967,22.0880209 33.6874291,22.4753667 Z" id="path-1"></path>
10 <path d="M28,0 C43.463973,0 56,12.536027 56,28 C56,43.463973 43.463973,56 28,56 C12.536027,56 0,43.463973 0,28 C0,12.536027 12.536027,0 28,0 Z M28,1.16666667 C13.1803592,1.16666667 1.16666667,13.1803592 1.16666667,28 C1.16666667,42.8196408 13.1803592,54.8333333 28,54.8333333 C42.8196408,54.8333333 54.8333333,42.8196408 54.8333333,28 C54.8333333,13.1803592 42.8196408,1.16666667 28,1.16666667 Z" id="椭圆形" fill-opacity="0.297120848" fill="#FFFFFF" fill-rule="nonzero"></path>
12 <use xlink:href="#path-1"></use>
14 <use id="多边形备份-5" fill="#FFFFFF" transform="translate(31.500000, 28.000000) rotate(-270.000000) translate(-31.500000, -28.000000) " xlink:href="#path-1"></use>
/applications/standard/call/entry/src/main/resources/base/media/
H A Dic_hangup_list.svg5 <rect id="path-1" x="0" y="0" width="30" height="30"></rect>
6 <path d="M27.4299071,11.0275823 C28.8221439,11.8994724 29.6635772,13.4295392 29.6568661,15.0757549 C29.7133057,16.0500283 29.5758198,16.7813356 29.2444084,17.2696768 C28.7472914,18.0021887 27.8751429,18.3890934 26.9980904,18.2941097 L23.6898357,17.9475723 L23.6898357,17.9475723 L23.6266778,17.9425666 C22.5543955,17.8787494 21.714079,17.0120506 21.675955,15.946424 L21.6746039,15.8717628 L21.7254516,14.1261753 C21.7264841,13.4132797 21.2365944,12.7958844 20.5425408,12.6355992 C19.1923485,12.3205457 17.0998986,12.1677545 15.0000575,12.1860668 C12.9001014,12.1677545 10.8076515,12.3205457 9.45745922,12.6355992 C8.76340562,12.7958844 8.27351588,13.4132797 8.27454844,14.1261753 L8.32539611,15.8717628 L8.32404502,15.946424 C8.28695142,16.9832499 7.49044101,17.8317555 6.45974445,17.9356447 L5.89793067,17.9879298 L5.89793067,17.9879298 L3.00190965,18.2941097 L3.00190965,18.2941097 C2.12485713,18.3890934 1.25270859,18.0021887 0.75559158,17.2696768 C0.424180238,16.7813356 0.286694339,16.0500283 0.343133884,15.0757549 C0.336422775,13.4295392 1.17785607,11.8994724 2.57009292,11.0275823 C5.54093449,9.1768754 10.2811351,8.2155067 14.9999425,8.19149999 C19.7188649,8.2155067 24.4590655,9.1768754 27.4299071,11.0275823 Z" id="path-3"></path>
10 <use xlink:href="#path-1"></use>
14 <use xlink:href="#path-3"></use>
16 <use id="路径" fill="#E84026" xlink:href="#path-3"></use>
/applications/standard/photos/common/src/main/resources/base/media/
H A Dic_video_play_btn.svg5 <path d="M33.6874291,22.4753667 L40.0504546,33.5545171 C40.7442865,34.7626008 40.327403,36.304408 39.1193193,36.9982399 C38.7370308,37.2177975 38.303877,37.3333333 37.8630256,37.3333333 L25.1369744,37.3333333 C23.7438237,37.3333333 22.6144519,36.2039615 22.6144519,34.8108108 C22.6144519,34.3699594 22.7299878,33.9368056 22.9495454,33.5545171 L29.3125709,22.4753667 C30.0064028,21.267283 31.54821,20.8503995 32.7562937,21.5442314 C33.1436395,21.7666935 33.464967,22.0880209 33.6874291,22.4753667 Z" id="path-1"></path>
10 <path d="M28,0 C43.463973,0 56,12.536027 56,28 C56,43.463973 43.463973,56 28,56 C12.536027,56 0,43.463973 0,28 C0,12.536027 12.536027,0 28,0 Z M28,1.16666667 C13.1803592,1.16666667 1.16666667,13.1803592 1.16666667,28 C1.16666667,42.8196408 13.1803592,54.8333333 28,54.8333333 C42.8196408,54.8333333 54.8333333,42.8196408 54.8333333,28 C54.8333333,13.1803592 42.8196408,1.16666667 28,1.16666667 Z" id="椭圆形" fill-opacity="0.297120848" fill="#FFFFFF" fill-rule="nonzero"></path>
12 <use xlink:href="#path-1"></use>
14 <use id="多边形备份-5" fill="#FFFFFF" transform="translate(31.500000, 28.000000) rotate(-270.000000) translate(-31.500000, -28.000000) " xlink:href="#path-1"></use>
/foundation/graphic/graphic_3d/lume/LumeEngine/src/io/
H A Dmemory_filesystem.h44 IDirectory::Entry GetEntry(BASE_NS::string_view path) override;
45 IFile::Ptr OpenFile(BASE_NS::string_view path) override;
46 IFile::Ptr CreateFile(BASE_NS::string_view path) override;
47 bool DeleteFile(BASE_NS::string_view path) override;
49 IDirectory::Ptr OpenDirectory(BASE_NS::string_view path) override;
50 IDirectory::Ptr CreateDirectory(BASE_NS::string_view path) override;
51 bool DeleteDirectory(BASE_NS::string_view path) override;
/foundation/filemanagement/dfs_service/frameworks/native/cloudsync_kit_inner/src/
H A Dcloud_download_callback_stub.cpp57 std::string path = progress->path; in HandleOnProcess() local
58 std::string uri = uriMgr.GetUri(path); in HandleOnProcess()
60 LOGI("CloudDownloadCallbackStub path %{public}s trans to uri error, skip.", GetAnonyString(path).c_str()); in HandleOnProcess()
63 progress->path = uri; in HandleOnProcess()
66 uriMgr.RemoveUri(path); in HandleOnProcess()
/test/testfwk/developer_test/libs/benchmark/report/
H A Dbenchmark_reporter.py42 result_path = os.path.join(result_path, "benchmark")
43 reports_dir = os.path.join(result_path, "benchmark", "report")
44 if not os.path.exists(reports_dir):
46 report_generate_tool = os.path.abspath(
47 os.path.join(os.path.dirname(os.path.realpath(__file__)),
/test/xts/acts/appbuild/cmake_test/ohos_app_demo_test/scripts/
H A Dohos_app_demo_check.py23 def get_names(path: str, names: []):
24 for file_name in os.listdir(path):
25 full_path = os.path.join(path, file_name)
26 if os.path.isfile(full_path):
38 parser.add_argument("--libPath", help="path of libs")
39 parser.add_argument("--hapPath", help="path of haps")
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/
H A Dswapndk.cpp31 const char *path = "/data/storage/el2/base/files/Fzl.txt"; in SwapOn() local
32 int fd = open(path, O_CREAT, PARAM_0777); in SwapOn()
33 backParam = swapon(path, flags); in SwapOn()
43 const char *path = "/data/storage/el2/base/files/Fzl.txt"; in SwapOff() local
44 int fd = open(path, O_CREAT, PARAM_0777); in SwapOff()
45 checkParam = swapon(path, flags); in SwapOff()
47 backParam = swapoff(path); in SwapOff()
/third_party/libunwind/libunwind/src/
H A Dos-solaris.c35 char *path, size_t pathlen) in tdep_get_elf_image()
56 if (path) in tdep_get_elf_image()
58 strncpy(path, mi.path, pathlen); in tdep_get_elf_image()
60 rc = elf_map_image (ei, mi.path); in tdep_get_elf_image()
68 tdep_get_exe_image_path (char *path) in tdep_get_exe_image_path() argument
70 strcpy(path, getexecname()); in tdep_get_exe_image_path()
33 tdep_get_elf_image(struct elf_image *ei, pid_t pid, unw_word_t ip, unsigned long *segbase, unsigned long *mapoff, char *path, size_t pathlen) tdep_get_elf_image() argument

Completed in 35 milliseconds

1...<<111112113114115116117118119120>>...1534