| /third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/ |
| H A D | Build-Debian10-EMCC-wasm-Debug-PathKit.json | 8 "/path/to/tmp/json", 33 "PATH": "<PATH>:RECIPE_REPO[depot_tools]" 41 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products = ['pathkit.*']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path [all...] |
| H A D | Build-Debian10-Clang-x86_64-Release-CMake.json | 8 "/path/to/tmp/json", 32 "PATH": "<PATH>:RECIPE_REPO[depot_tools]" 40 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products = ['dm', 'dm.exe', 'dm.app', 'fm', 'fm.exe', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', 'skpbench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skottie_tool', 'lib/*.so', 'run_testlab']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path [all...] |
| /third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/ |
| H A D | Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_ProcDump.json | 8 "/path/to/tmp/json", 11 "/path/to/tmp/" 25 "/path/to/tmp/json", 38 "/path/to/tmp/json", 51 "/path/to/tmp/json", 66 "/path/to/tmp/json", 79 "/path/to/tmp/json", 94 "/path/to/tmp/json", 97 "/path/to/tmp/" 112 "/path/t [all...] |
| /third_party/rust/crates/syn/tests/ |
| H A D | test_stmt.rs | 38 expr: Expr::Path { in test_raw_variable() 39 path: Path { in test_raw_variable() 96 expr: Expr::Path { in test_none_group() 97 path: Path { in test_none_group() 140 path: Path { in test_let_else() 154 expr: Expr::Path { in test_let_else() 155 path in test_let_else() [all...] |
| /third_party/rust/crates/which-rs/src/ |
| H A D | finder.rs | 15 use std::path::{Path, PathBuf}; 18 fn is_valid(&self, path: &Path) -> bool; in is_valid() 26 P: AsRef<Path>; in to_absolute() 36 P: AsRef<Path>, in to_absolute() 65 V: AsRef<Path>, in find() 67 let path = PathBuf::from(&binary_name); in find() 70 Some(cwd) if path.has_separator() => { in find() 71 // Search binary in cwd if the path hav in find() [all...] |
| /third_party/selinux/libselinux/utils/ |
| H A D | matchpathcon.c | 21 static int printmatchpathcon(struct selabel_handle *hnd, const char *path, int header, int mode, int notrans) in printmatchpathcon() argument 27 rc = selabel_lookup_raw(hnd, &buf, path, mode); in printmatchpathcon() 29 rc = selabel_lookup(hnd, &buf, path, mode); in printmatchpathcon() 35 fprintf(stderr, "selabel_lookup(%s) failed: %s\n", path, in printmatchpathcon() 41 printf("%s\t%s\n", path, buf); in printmatchpathcon() 141 char *path = argv[i]; in main() local 142 int len = strlen(path); in main() 143 if (len > 1 && path[len - 1 ] == '/') in main() 144 path[len - 1 ] = '\0'; in main() 146 if (lstat(path, in main() [all...] |
| /third_party/vulkan-headers/ |
| H A D | OAT.xml | 20 basedir: Root dir. basedir + project path is the real source file location. 29 5. task project: Projects to be checked. The path field defines the source root dir of the project. 34 2. policyitem: The fields type, name, path, desc are required, and the fields rule, group, filefilter are optional. The default value is: 35 <policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter"/> 37 "compatibility" is used to check license compatibility in the specified path. 38 "license" is used to check source license header in the specified path. 39 "copyright" is used to check source copyright header in the specified path. 40 "import" is used to check source dependency in the specified path, such as import and include. 41 "filetype" is used to check file type in the specified path. Supported file types include archive and binary. 42 "filename" is used to check whether the specified file exists in the specified path (suppor [all...] |
| /test/testfwk/xdevice/src/xdevice/_core/ |
| H A D | utils.py | 56 _, fullname = os.path.split(file_path) 57 filename, ext = os.path.splitext(fullname) 224 def create_dir(path): 228 path: The path of the directory to create. 230 full_path = os.path.abspath(os.path.expanduser(path)) 231 if not os.path.exists(full_path): 265 """Find absolute path fo [all...] |
| /third_party/python/Lib/test/test_importlib/ |
| H A D | test_abc.py | 151 def find_module(self, fullname, path): 152 return super().find_module(fullname, path) 240 def get_data(self, path): 241 return super().get_data(path) 250 self.ins.get_data('/some/path') 359 def find_spec(self, fullname, path, target=None): 360 self.called_for = fullname, path 367 path = ['a', 'b', 'c'] 370 found = finder.find_module(name, path) 382 path [all...] |
| /third_party/typescript/src/compiler/ |
| H A D | watchPublic.ts | 80 watchFile(path: string, callback: FileWatcherCallback, pollingInterval?: number, options?: WatchOptions): FileWatcher;
82 watchDirectory(path: string, callback: DirectoryWatcherCallback, recursive?: boolean, options?: WatchOptions): FileWatcher;
106 fileExists(path: string): boolean;
111 readFile(path: string, encoding?: string): string | undefined;
114 directoryExists?(path: string): boolean;
116 getDirectories?(path: string): string[];
118 readDirectory?(path: string, extensions?: readonly string[], exclude?: readonly string[], include?: readonly string[], depth?: number): string[];
121 realpath?(path: string): string;
131 /** If provided along with custom resolveModuleNames or resolveTypeReferenceDirectives, used to determine if unchanged file path needs to re-resolve modules/type reference directives */
132 hasInvalidatedResolutions?(filePath: Path) [all...] |
| /foundation/ability/idl_tool/test/hdi_unittest/base/ |
| H A D | test_base.py | 33 self.idl_dir = os.path.join(self.working_dir, "foo") 34 self.output_dir = os.path.join(self.working_dir, "out") 35 self.target_dir = os.path.join(self.working_dir, "target") 61 current_path = os.path.dirname(os.path.abspath(__file__)) 62 return os.path.realpath(os.path.join(current_path, 63 "..", os.path.splitext(os.path.basename(self._file_name))[0])) 75 self.output_dir = os.path [all...] |
| /third_party/node/test/parallel/ |
| H A D | test-v8-coverage.js | 8 const path = require('path'); 21 const coverageDirectory = path.join(tmpdir.path, nextdir()); 40 const coverageDirectory = path.join(tmpdir.path, nextdir()); 58 const coverageDirectory = path.join(tmpdir.path, nextdir()); 77 const coverageDirectory = path.join(tmpdir.path, nextdi [all...] |
| /third_party/skia/third_party/externals/tint/tools/ |
| H A D | run_tests.py | 34 A single test case to be executed. Stores the path to the test file 171 base_path = os.path.abspath( 172 os.path.join(os.path.dirname(__file__), '..')) 177 default=os.path.join(base_path, 'out', 'Debug'), 178 help='path to build directory') 180 default=os.path.join(os.path.dirname(__file__), '..', 184 help='path to directory containing test files') 187 default=os.path [all...] |
| /third_party/typescript/src/testRunner/unittests/tsserver/ |
| H A D | rename.ts | 4 const aTs: File = { path: "/a.ts", content: "export const a = 0;" };
5 const bTs: File = { path: "/b.ts", content: 'import { a } from "./a";' };
26 fileToRename: aTs.path,
27 displayName: aTs.path,
28 fullDisplayName: aTs.path,
34 file: bTs.path,
52 fileToRename: aTs.path,
53 displayName: aTs.path,
54 fullDisplayName: aTs.path,
60 file: bTs.path,
[all...] |
| H A D | telemetry.ts | 6 et.service.openClientFile(file.path);
16 et.service.openClientFile(file.path);
17 et.assertProjectInfoTelemetryEvent({}, tsconfig.path);
19 et.service.closeClientFile(file.path);
22 et.service.openClientFile(file2.path);
27 et.service.openClientFile(file.path);
40 et.service.openClientFile(files[0].path);
71 et.service.closeClientFile(file1.path);
81 rootFiles: toExternalFiles([file1.path]),
86 et.service.openClientFile(file1.path); // Onl [all...] |
| /third_party/libabigail/tools/ |
| H A D | abipkgdiff.cc | 282 string path; member in elf_file 288 /// The path to the elf file. 290 /// @param path the path to the elf file. 291 elf_file(const string& path) in elf_file() argument 292 : path(path) in elf_file() 294 abigail::tools_utils::base_name(path, name); in elf_file() 295 get_soname_of_elf_file(path, soname); in elf_file() 296 get_type_of_elf_file(path, typ in elf_file() 373 package(const string& path, const string& dir, kind pkg_kind = package::KIND_MAIN) package() argument 390 path() const path() function in package 397 path(const string& s) path() function in package 622 convert_path_to_relative(const string& path, string& converted_path) const convert_path_to_relative() argument 643 convert_path_to_unique_suffix(const string& path, string& converted_path) const convert_path_to_unique_suffix() argument [all...] |
| /third_party/node/deps/zlib/ |
| H A D | gzlib.c | 88 local gzFile gz_open(const void *path, int fd, const char *mode) { in gz_open() argument 100 if (path == NULL) in gz_open() 183 /* save the path name for error messages */ in gz_open() 186 len = wcstombs(NULL, path, 0); in gz_open() 192 len = strlen((const char *)path); in gz_open() 193 state->path = (char *)malloc(len + 1); in gz_open() 194 if (state->path == NULL) { in gz_open() 201 wcstombs(state->path, path, len + 1); in gz_open() 203 *(state->path) in gz_open() 263 gzopen(const char *path, const char *mode) gzopen() argument 268 gzopen64(const char *path, const char *mode) gzopen64() argument 274 char *path; /* identifier for error messages */ gzdopen() local 291 gzopen_w(const wchar_t *path, const char *mode) gzopen_w() argument [all...] |
| /third_party/node/tools/gyp/pylib/gyp/generator/ |
| H A D | eclipse.py | 21 import os.path namespace 54 # part of the path when dealing with generated headers. This value will be 158 if not os.path.isabs(include_dir): 159 base_dir = os.path.dirname(target_name) 162 include_dir = os.path.abspath(include_dir) 190 return os.path.join(options.toplevel_dir, value) 302 # build_dir: relative path from source root to our output files. 304 build_dir = os.path.join(generator_flags.get("output_dir", "out"), config_name) 306 toplevel_build = os.path.join(options.toplevel_dir, build_dir) 310 os.path [all...] |
| /third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
| H A D | eclipse.py | 21 import os.path namespace 54 # part of the path when dealing with generated headers. This value will be 158 if not os.path.isabs(include_dir): 159 base_dir = os.path.dirname(target_name) 162 include_dir = os.path.abspath(include_dir) 190 return os.path.join(options.toplevel_dir, value) 299 # build_dir: relative path from source root to our output files. 301 build_dir = os.path.join(generator_flags.get("output_dir", "out"), config_name) 303 toplevel_build = os.path.join(options.toplevel_dir, build_dir) 307 os.path [all...] |
| /third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/arborist/ |
| H A D | load-actual.js | 3 const { relative, dirname, resolve, join, normalize } = require('path') 7 const { walkUp } = require('walk-up-path') 8 const ancestorPath = require('common-ancestor-path') 112 const real = await realpath(this.path, this[_rpcache], this[_stcache]) 114 path: this.path, 120 if (this.path === real) { 128 path: this.path, 129 real: await realpath(this.path, thi [all...] |
| /third_party/pulseaudio/speex/macosx/Speex_UB.xcodeproj/ |
| H A D | project.pbxproj | 52 089C1667FE841158C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; }; 53 32BAE0B70371A74B00C91783 /* Speex_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Speex_Prefix.pch; sourceTree = "<group>"; }; 54 73814AEF0907FB8200C478FC /* speex.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = speex.h; sourceTree = "<group>"; }; 55 73814AF00907FB8200C478FC /* speex_bits.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = speex_bits.h; sourceTree = "<group>"; }; 56 73814AF10907FB8200C478FC /* speex_callbacks.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = speex_callbacks.h; sourceTree = "<group>"; }; 57 73814AF30907FB8200C478FC /* speex_echo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = speex_echo.h; sourceTree = "<group>"; }; 58 73814AF40907FB8200C478FC /* speex_header.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = speex_header.h; sourceTree = "<group>"; }; 59 73814AF50907FB8200C478FC /* speex_jitter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = speex_jitter.h; sourceTree = "<group>"; }; 60 73814AF60907FB8200C478FC /* speex_preprocess.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = speex_preprocess.h; sourceTree = "<group>"; }; 61 73814AF70907FB8200C478FC /* speex_stereo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path [all...] |
| /third_party/zlib/ |
| H A D | gzlib.c | 88 local gzFile gz_open(const void *path, int fd, const char *mode) in gz_open() argument 101 if (path == NULL) in gz_open() 184 /* save the path name for error messages */ in gz_open() 187 len = wcstombs(NULL, path, 0); in gz_open() 193 len = strlen((const char *)path); in gz_open() 194 state->path = (char *)malloc(len + 1); in gz_open() 195 if (state->path == NULL) { in gz_open() 202 wcstombs(state->path, path, len + 1); in gz_open() 204 *(state->path) in gz_open() 264 gzopen(const char *path, const char *mode) gzopen() argument 270 gzopen64(const char *path, const char *mode) gzopen64() argument 278 char *path; /* identifier for error messages */ gzdopen() local 295 gzopen_w(const wchar_t *path, const char *mode) gzopen_w() argument [all...] |
| /third_party/skia/docs/examples/ |
| H A D | Path_isLastContourClosed.cpp | 7 auto debugster = [](const char* prefix, const SkPath& path) -> void { in REG_FIDDLE() 9 path.isLastContourClosed() ? "" : "not "); in REG_FIDDLE() 11 SkPath path; in REG_FIDDLE() local 12 debugster("initial", path); in REG_FIDDLE() 13 path.close(); in REG_FIDDLE() 14 debugster("after close", path); in REG_FIDDLE() 15 path.lineTo(0, 0); in REG_FIDDLE() 16 debugster("after lineTo", path); in REG_FIDDLE() 17 path.close(); in REG_FIDDLE() 18 debugster("after close", path); in REG_FIDDLE() [all...] |
| /foundation/graphic/graphic_3d/lume/LumeRender/api/render/device/ |
| H A D | intf_shader_manager.h | 62 * Shaders are created with default name which is the path. 87 /* Shader module path */ 88 BASE_NS::string_view path; member 93 /* Path, used as a name */ 94 BASE_NS::string_view path; member 106 /* Path, used as a name */ 107 BASE_NS::string_view path; member 124 /* Path, used as a name */ 125 BASE_NS::string_view path; member 130 /* Path, use 131 BASE_NS::string_view path; global() member 149 BASE_NS::string_view path; global() member 156 BASE_NS::string path; global() member [all...] |
| /foundation/multimedia/media_library/frameworks/services/media_thumbnail/src/ |
| H A D | thumbnail_generate_helper.cpp | 61 MEDIA_ERR_LOG("Delete THM_EX directory, path: %{public}s, id: %{public}s", in CreateThumbnailFileScaned() 62 DfxUtils::GetSafePath(thumbnailData.path).c_str(), thumbnailData.id.c_str()); in CreateThumbnailFileScaned() 156 MEDIA_ERR_LOG("QueryThumbnailDataFromFileId failed, path: %{public}s", in CreateAstcCloudDownload() 157 DfxUtils::GetSafePath(data.path).c_str()); in CreateAstcCloudDownload() 243 if (access(GetThumbnailPath(infos[i].path, THUMBNAIL_LCD_SUFFIX).c_str(), F_OK) == 0 || in CreateLcdBackground() 244 access(GetThumbnailPath(infos[i].path, THUMBNAIL_LCD_EX_SUFFIX).c_str(), F_OK) == 0) { in CreateLcdBackground() 321 DfxUtils::GetSafePath(data.path).c_str()); in GenerateLocalThumbnail() 329 DfxUtils::GetSafePath(data.path).c_str()); in GenerateLocalThumbnail() 341 DfxUtils::GetSafePath(data.path).c_str()); in GenerateKeyFrameLocalThumbnail() 348 DfxUtils::GetSafePath(data.path) in GenerateKeyFrameLocalThumbnail() [all...] |