/third_party/vixl/tools/test_generator/ |
H A D | generator.py | 183 args=",".join(operand_types.GetNames()), 277 args=", ".join(input_types.GetNames()), 350 return "".join([ 364 return "".join([operand.Declare() for operand in self.operands]) 375 return "".join([input.Declare() for input in self.inputs]) 387 "{{{}}}".format(",".join(input)) 392 """.format(name=test_input.name, input=",".join(inputs)) 394 return "\n".join(map(InputDefinition, self.test_cases)) 438 """.format(operands=",".join(operand), 439 operands_description=" ".join(operan [all...] |
/third_party/vixl/ |
H A D | SConstruct | 30 from os.path import join 37 sys.path.insert(0, join(root_dir, 'tools')) 205 help = '%s (%s)' % (help, '|'.join(allowed_values)) 230 (help, ', '.join(allowed_values)) 276 ', '.join(config.tested_cpp_standards), 433 option_value = ''.join(env[option]) if option in env else '' 434 build_dir = join(build_dir, option + '_'+ option_value) 439 location_build_dir = join(build_dir, location) 452 variant_dir_vixl = PrepareVariantDir(join('src'), build_dir) 453 sources = [Glob(join(variant_dir_vix [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | declFileMethods.symbols | 27 return a + rests.join("");
29 >rests.join : Symbol(Array.join, Decl(lib.es5.d.ts, --, --))
31 >join : Symbol(Array.join, Decl(lib.es5.d.ts, --, --))
73 return a + rests.join("");
75 >rests.join : Symbol(Array.join, Decl(lib.es5.d.ts, --, --))
77 >join : Symbol(Array.join, Dec [all...] |
H A D | declFileFunctions.types | 24 return a + rests.join("");
25 >a + rests.join("") : string
27 >rests.join("") : string
28 >rests.join : (separator?: string) => string
30 >join : (separator?: string) => string
116 return a + rests.join("");
117 >a + rests.join("") : string
119 >rests.join("") : string
120 >rests.join : (separator?: string) => string
122 >join [all...] |
/third_party/mesa3d/src/gallium/drivers/radeonsi/ci/ |
H A D | radeonsi-run-tests.py | 140 default=os.path.join( 154 os.path.join("/dev/dri/by-path", f), 176 piglit_path = os.path.join(args.parent_path, "piglit") 177 glcts_path = os.path.join(args.parent_path, "glcts") 178 deqp_path = os.path.join(args.parent_path, "deqp") 185 skips = os.path.join(os.path.dirname(__file__), "skips.csv") 202 print("Expecting deqp-runner 0.9.0+ version (got {})".format(".".join(s))) 226 cwd=os.path.join(piglit_path, "bin"), 234 gpu_name_full = "(".join(line.split("(")[:-1]).strip() 250 new_baseline_folder = os.path.join(output_folde [all...] |
/third_party/python/Lib/test/ |
H A D | test_compileall.py | 57 self.source_path = os.path.join(self.directory, '_test.py') 61 self.source_path2 = os.path.join(self.directory, '_test2.py') 64 self.subdirectory = os.path.join(self.directory, '_subdir') 66 self.source_path3 = os.path.join(self.subdirectory, '_test3.py') 73 self.bad_source_path = os.path.join(self.directory, '_test_bad.py') 196 data_dir = os.path.join(self.directory, 'data') 197 data_file = os.path.join(data_dir, 'file') 203 self.assertFalse(os.path.exists(os.path.join(data_dir, '__pycache__'))) 287 path = os.path.join(path, f"dir_{i}") 288 source = os.path.join(pat [all...] |
H A D | test_ntpath.py | 186 tester('ntpath.join("")', '') 187 tester('ntpath.join("", "", "")', '') 188 tester('ntpath.join("a")', 'a') 189 tester('ntpath.join("/a")', '/a') 190 tester('ntpath.join("\\a")', '\\a') 191 tester('ntpath.join("a:")', 'a:') 192 tester('ntpath.join("a:", "\\b")', 'a:\\b') 193 tester('ntpath.join("a", "\\b")', '\\b') 194 tester('ntpath.join("a", "b", "c")', 'a\\b\\c') 195 tester('ntpath.join(" [all...] |
/third_party/node/test/parallel/ |
H A D | test-module-circular-symlinks.js | 36 const node_modules = path.join(tmpDir, 'node_modules'); 37 const moduleA = path.join(node_modules, 'moduleA'); 38 const moduleB = path.join(node_modules, 'moduleB'); 39 const moduleA_link = path.join(moduleB, 'node_modules', 'moduleA'); 40 const moduleB_link = path.join(moduleA, 'node_modules', 'moduleB'); 45 fs.mkdirSync(path.join(moduleA, 'node_modules')); 46 fs.mkdirSync(path.join(moduleB, 'node_modules')); 56 fs.writeFileSync(path.join(tmpDir, 'index.js'), 58 fs.writeFileSync(path.join(moduleA, 'index.js'), 60 fs.writeFileSync(path.join(module [all...] |
H A D | test-module-symlinked-peer-modules.js | 33 const moduleA = path.join(tmpDir, 'moduleA'); 34 const app = path.join(tmpDir, 'app'); 35 const moduleB = path.join(app, 'node_modules', 'moduleB'); 36 const moduleA_link = path.join(app, 'node_modules', 'moduleA'); 39 fs.mkdirSync(path.join(app, 'node_modules')); 51 fs.writeFileSync(path.join(moduleA, 'package.json'), 53 fs.writeFileSync(path.join(moduleA, 'index.js'), 55 fs.writeFileSync(path.join(app, 'index.js'), 57 fs.writeFileSync(path.join(moduleB, 'package.json'), 59 fs.writeFileSync(path.join(module [all...] |
H A D | test-fs-mkdtemp.js | 19 const tmpFolder = fs.mkdtempSync(path.join(tmpdir.path, 'foo.')); 24 const utf8 = fs.mkdtempSync(path.join(tmpdir.path, '\u0222abc.')); 29 fs.mkdtemp(path.join(tmpdir.path, 'bar.'), common.mustCall(handler)); 33 fs.mkdtemp(path.join(tmpdir.path, 'bar.'), {}, common.mustCall(handler)); 38 fs.mkdtemp(path.join(tmpdir.path, 'bar.X'), common.mustCall(handler)); 65 const tmpFolder = fs.mkdtempSync(Buffer.from(path.join(tmpdir.path, 'foo.'))); 70 const utf8 = fs.mkdtempSync(Buffer.from(path.join(tmpdir.path, '\u0222abc.'))); 75 fs.mkdtemp(Buffer.from(path.join(tmpdir.path, 'bar.')), common.mustCall(handler)); 79 fs.mkdtemp(Buffer.from(path.join(tmpdir.path, 'bar.')), {}, common.mustCall(handler)); 82 fs.mkdtemp(Buffer.from(path.join(tmpdi [all...] |
H A D | test-path-join.js | 10 [ [path.posix.join, path.win32.join], 63 // Windows-specific join tests 65 path.win32.join, 119 test[0].forEach((join) => { 121 const actual = join.apply(null, test[0]); 123 // For non-Windows specific tests with the Windows join(), we need to try 128 if (join === path.win32.join) { 135 const delimiter = test[0].map(JSON.stringify).join(','); [all...] |
/third_party/vixl/tools/ |
H A D | config.py | 31 dir_root = os.path.abspath(os.path.join(dir_tools, '..')) 32 dir_build = os.path.join(dir_root, 'obj') 33 dir_build_latest = os.path.join(dir_build, 'latest') 34 dir_src_vixl = os.path.join(dir_root, 'src') 35 dir_tests = os.path.join(dir_root, 'test') 36 dir_aarch64_benchmarks = os.path.join(dir_root, 'benchmarks', 'aarch64') 37 dir_aarch32_benchmarks = os.path.join(dir_root, 'benchmarks', 'aarch32') 38 dir_aarch64_examples = os.path.join(dir_root, 'examples', 'aarch64') 39 dir_aarch32_examples = os.path.join(dir_root, 'examples', 'aarch32') 40 dir_aarch64_traces = os.path.join(dir_test [all...] |
/third_party/skia/infra/bots/assets/svg/ |
H A D | create.py | 19 INFRA_BOTS_DIR = os.path.realpath(os.path.join(FILE_DIR, os.pardir, os.pardir)) 20 SVG_TOOLS = os.path.join(INFRA_BOTS_DIR, os.pardir, os.pardir, 'tools', 'svg') 27 target_svg_dir = os.path.join(target_dir, 'svg') 28 target_image_dir = os.path.join(target_dir, 'images') 38 'python', os.path.join(SVG_TOOLS, 'svg_downloader.py'), 40 '--input_file', os.path.join(SVG_TOOLS, 'svgs.txt'), 46 'python', os.path.join(SVG_TOOLS, 'svg_downloader.py'), 48 '--input_file', os.path.join(SVG_TOOLS, 'svgs_parse_only.txt'), 55 'python', os.path.join(SVG_TOOLS, 'svg_downloader.py'), 57 '--input_file', os.path.join(SVG_TOOL [all...] |
/third_party/rust/crates/cxx/gen/build/src/ |
H A D | lib.rs | 178 TargetDir::Path(target_dir) => target_dir.join("cxxbridge"), in init() 369 let crate_dir = prj.out_dir.join("cxxbridge").join("crate"); in make_crate_dir() 370 let ref link = crate_dir.join(&prj.include_prefix); in make_crate_dir() 377 let _ = out::write(crate_dir.join("CACHEDIR.TAG"), cachedir_tag.as_bytes()); in make_crate_dir() 385 let include_dir = prj.out_dir.join("cxxbridge").join("include"); in make_include_dir() 386 let cxx_h = include_dir.join("rust").join("cxx.h"); in make_include_dir() 387 let ref shared_cxx_h = prj.shared_dir.join("rus in make_include_dir() [all...] |
/test/testfwk/developer_test/src/core/build/ |
H A D | pretreat_targets.py | 72 template_path = os.path.join(sys.framework_root_dir, "libs", 74 target_path = os.path.join(sys.source_code_root_path, path) 75 config_path = os.path.join(target_path, "config.json") 76 gn_path = os.path.join(target_path, "BUILD.gn") 77 gn_bak_path = os.path.join(target_path, "BuildBak") 78 test_path = os.path.join(target_path, "src", "main", "js", 101 shutil.copytree(template_path, os.path.join(target_path, "src")) 102 shutil.copy(config_path, os.path.join(target_path, "src", "main")) 107 shutil.copy(os.path.join(target_path, file), test_path) 108 with os.fdopen(os.open(os.path.join(test_pat [all...] |
/third_party/node/deps/v8/third_party/inspector_protocol/templates/ |
H A D | Imported_h.template | 7 #ifndef {{"_".join(config.protocol.namespace)}}_{{domain.domain}}_imported_h 8 #define {{"_".join(config.protocol.namespace)}}_{{domain.domain}}_imported_h 17 #ifndef {{"_".join(config.protocol.namespace)}}_imported_imported_h 25 std::is_base_of<{{"::".join(config.imported.namespace)}}::Exported, T>::value>::type> { 52 std::is_base_of<{{"::".join(config.imported.namespace)}}::Exported, T>::value>::type> { 62 #endif // {{"_".join(config.protocol.namespace)}}_imported_imported_h 68 using Exported = {{"::".join(config.imported.namespace)}}::Exported; 70 #ifndef {{"_".join(config.protocol.namespace)}}_imported_imported_h 71 #define {{"_".join(config.protocol.namespace)}}_imported_imported_h 92 #endif // !defined({{"_".join(confi [all...] |
/third_party/python/Tools/freeze/test/ |
H A D | freeze.py | 14 FREEZE = os.path.join(TOOL_ROOT, 'freeze.py') 15 OUTDIR = os.path.join(TESTS_DIR, 'outdir') 23 #print(f'# {" ".join(shlex.quote(a) for a in cmd)}') 96 if os.path.exists(os.path.join(newroot, 'Makefile')): 102 filename = os.path.join(builddir, 'Makefile') 117 python = os.path.join(builddir, 'python') 138 scriptfile = os.path.join(outdir, 'app.py') 145 srcdir = os.path.join(outdir, 'cpython') 149 builddir = os.path.join(outdir, 'python-build') 155 os.path.join(srcdi [all...] |
/third_party/node/tools/inspector_protocol/templates/ |
H A D | Imported_h.template | 7 #ifndef {{"_".join(config.protocol.namespace)}}_{{domain.domain}}_imported_h 8 #define {{"_".join(config.protocol.namespace)}}_{{domain.domain}}_imported_h 21 using Exported = {{"::".join(config.imported.namespace)}}::Exported; 23 #ifndef {{"_".join(config.protocol.namespace)}}_imported_imported_h 24 #define {{"_".join(config.protocol.namespace)}}_imported_imported_h 49 #endif // !defined({{"_".join(config.protocol.namespace)}}_imported_imported_h) 55 struct ValueConversions<{{"::".join(config.imported.namespace)}}::{{domain.domain}}::API::{{type.id}}> { 56 static std::unique_ptr<{{"::".join(config.imported.namespace)}}::{{domain.domain}}::API::{{type.id}}> fromValue(protocol::Value* value, ErrorSupport* errors) 65 auto result = {{"::".join(config.imported.namespace)}}::{{domain.domain}}::API::{{type.id}}::fromBinary(binary.data(), binary.size()); 71 static std::unique_ptr<protocol::Value> toValue(const {{"::".join(confi [all...] |
/third_party/node/test/fixtures/ |
H A D | require-resolve.js | 5 const nodeModules = path.join(__dirname, 'node_modules'); 6 const nestedNodeModules = path.join(__dirname, 'node_modules', 'node_modules'); 7 const nestedIndex = path.join(__dirname, 'nested-index'); 12 path.join(nodeModules, 'bar.js') 37 path.join(nodeModules, 'bar.js') 48 path.join(nodeModules, 'bar.js') 54 path.join(nodeModules, 'bar.js') 65 path.join(nestedIndex, 'three.js') 71 path.join(nestedIndex, 'three.js') 78 path.join(nestedInde [all...] |
/test/testfwk/developer_test/local_coverage/resident_service/ |
H A D | init_gcov.py | 34 sys.localcoverage_path = os.path.join(current_path, "..") 42 recv_path = os.path.join(developer_path, "local_coverage/resident_service/resources") 45 recv_restores_path = os.path.join(recv_path, "restores_environment") 48 recv_restores_name = os.path.join(recv_restores_path, "init.cfg") 54 cfg_file_path = os.path.join(recv_path, "init.cfg") 93 recv_path = os.path.join(developer_path, "local_coverage/resident_service/resources") 97 cfg_file_path = os.path.join(recv_path, "faultloggerd.cfg") 143 tree.write(os.path.join(config_path, 'foundation.xml'), encoding='utf-8', xml_declaration=True) 144 return os.path.join(config_path, 'foundation.xml') 166 new_json = os.path.join(config_pat [all...] |
/test/xts/acts/arkui/libuv/ |
H A D | genlocal.py | 79 mustpass = os.path.join(G_MUSTPASSPATH, "{}{}".format(suiteitem, G_MUSTPASSFILE)) 100 pagefilename = os.path.join(hapdirpath, G_PATHDIRPATH, "{}.ets".format(suitename)) 101 attrtmp = os.path.join(G_TMPPATH, G_PAGEATTRTEMPPATH) 116 temppagefilename = os.path.join(G_TMPPATH, G_PAGETEMPPATH) 122 pagefilename = os.path.join(hapdirpath, G_PATHDIRPATH, "{}.ets".format(suitename)) 128 attrtmp = os.path.join(G_TMPPATH, G_PAGEATTRTEMPPATH) 138 temptestfilename = os.path.join(G_TMPPATH, G_TESTCASETEMPPATH) 139 testfilename = os.path.join(hapdirpath, G_TESTDIRPATH, "{}.test.ets".format(suitename)) 148 configjsonname = os.path.join(hapdirpath, G_CONFIGJSONPATH) 152 buildgnname = os.path.join(hapdirpat [all...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/build/scripts/ |
H A D | pkt_builder.py | 29 root_path = os.path.join(os.getcwd(), '..', '..') if getattr(sys, 'frozen', False) else os.path.join(os.path.dirname(__file__), '..', '..')
34 self.__bootBinPath = os.path.join(root_path, usr_realtive_output, 'build', 'flashboot', 'Hi3861_flash_boot.bin')
35 self.__kernelBinPath = os.path.join(root_path, usr_realtive_output, 'output', 'bin', '%s_non_rom.bin'%self.__app_name)
36 self.__normalNvPath = os.path.join(root_path, 'build', 'build_tmp', 'nv', '%s_normal.hnv'%app_name)
37 self.__factoryNvPath = os.path.join(root_path, 'build', 'build_tmp', 'nv', '%s_factory.hnv'%app_name)
38 self.__pktPath = os.path.join(root_path, usr_realtive_output, 'output', 'bin')
39 self.__key_dir_path = os.path.join(root_path, 'tools', 'sign_tool')
40 self.__lzma_tool_path = os.path.join(root_path, r'tools', r'lzma_tool', r'lzma_tool')
41 self.__build_tmp_path = os.path.join(root_pat [all...] |
/test/testfwk/developer_test/src/core/ |
H A D | utils.py | 60 file_name = os.path.join(dirs[0], file_name)
67 log_path = os.path.join(report_path, "log")
72 device_log_file = os.path.join(log_path, device_file_name)
97 build_output_name = os.path.join(first_build_output,
100 build_output_path = os.path.join(sys.source_code_root_path,
110 product_form_dir = os.path.join(sys.source_code_root_path,
117 if os.path.isdir(os.path.join(product_form_dir,
131 ohos_config_path = os.path.join(sys.source_code_root_path, "out", "ohos_config.json")
139 device_json_file = os.path.join(sys.source_code_root_path,
157 build_prop = os.path.join(sy [all...] |
/third_party/node/deps/npm/test/lib/commands/ |
H A D | logout.js | 5 const { join } = require('path') 13 ].join('\n'), 25 const userRc = await fs.readFile(join(home, '.npmrc'), 'utf-8') 40 ].join('\n'), 53 const userRc = await fs.readFile(join(home, '.npmrc'), 'utf-8') 64 ].join('\n'), 75 const userRc = await fs.readFile(join(home, '.npmrc'), 'utf-8') 100 ].join('\n'), 113 const userRc = await fs.readFile(join(home, '.npmrc'), 'utf-8') 123 ].join('\ [all...] |
/third_party/vk-gl-cts/external/vulkancts/scripts/ |
H A D | gen_framework_c.py | 28 scriptPath = os.path.join(os.path.dirname(__file__), "..", "..", "..", "scripts") 34 VULKAN_HEADERS_INCLUDE_DIR = os.path.join(os.path.dirname(__file__), "..", "..", "vulkan-docs", "src", "include") 35 VULKAN_H = { "" : [ os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codecs_common.h"), 36 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codec_h264std.h"), 37 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codec_h264std_encode.h"), 38 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codec_h265std.h"), 39 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codec_h264std_decode.h"), 40 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codec_h265std_decode.h"), 41 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vulkan", "vulkan_core.h") ], 42 "SC" : [ os.path.join(o [all...] |