/third_party/jerryscript/tools/ |
H A D | settings.py | 20 PROJECT_DIR = path.normpath(path.join(TOOLS_DIR, '..')) 21 DEBUGGER_TESTS_DIR = path.join(PROJECT_DIR, 'tests/debugger') 22 JERRY_TESTS_DIR = path.join(PROJECT_DIR, 'tests/jerry') 23 JERRY_TEST_SUITE_DIR = path.join(PROJECT_DIR, 'tests/jerry-test-suite') 24 JERRY_TEST_SUITE_MINIMAL_LIST = path.join(PROJECT_DIR, 'tests/jerry-test-suite/minimal-profile-list') 25 TEST262_TEST_SUITE_DIR = path.join(PROJECT_DIR, 'tests/test262') 27 BUILD_SCRIPT = path.join(TOOLS_DIR, 'build.py') 28 CPPCHECK_SCRIPT = path.join(TOOLS_DIR, 'check-cppcheck.sh') 29 DEBUGGER_CLIENT_SCRIPT = path.join(PROJECT_DIR, 'jerry-debugger/jerry_client.py') 30 DEBUGGER_TEST_RUNNER_SCRIPT = path.join(TOOLS_DI [all...] |
/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/jerryscript/tests/jerry/ |
H A D | array-prototype-join.js | 15 assert ([].join() === ""); 16 assert ([1].join() === "1"); 17 assert ([1, 2].join() === "1,2"); 20 assert ([].join('--') === ""); 21 assert ([1].join("--") === "1"); 22 assert ([1, 2].join('--') === "1--2"); 24 assert ([1,2,3].join({toString: function() { return "--"; }}) === "1--2--3"); 30 assert (lst.join() === [1,2,3].join()); 35 obj.join [all...] |
/third_party/python/Mac/BuildScript/ |
H A D | build-installer.py | 92 os.path.join(SRCDIR, 'configure'), 'PACKAGE_VERSION') 104 fn = os.path.join(SRCDIR, 'Include', 'patchlevel.h') 120 DEPSRC = os.path.join(WORKDIR, 'third-party') 288 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')), 306 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')), 355 shellQuote(os.path.join(WORKDIR, 'libraries')), 356 shellQuote(os.path.join(WORKDIR, 'libraries')), 579 libfw = os.path.join('/', fwpth) 580 usrfw = os.path.join(os.getenv('HOME'), fwpth) 762 return os.path.join(builddi [all...] |
/third_party/jerryscript/targets/curie_bsp/ |
H A D | setup.py | 28 'src': os.path.join('targets', 'curie_bsp', 'jerry_app', 'arc'), 32 'src': os.path.join('targets', 'curie_bsp', 'jerry_app', 'include'), 36 'src': os.path.join('targets', 'curie_bsp', 'jerry_app', 'quark'), 41 'link_name': os.path.join('quark', 'jerryscript') 46 src = os.path.join(jerry_path, link['src']) 47 link_name = os.path.join(project_path, link['link_name']) 58 src_dir = os.path.join(root_dir, sub_dir) 63 file_path = os.path.join(root, filename) 79 for sub_dir in ['jerry-core', 'jerry-libm', os.path.join('targets', 'curie_bsp', 'source')]: 81 path = os.path.join('jerryscrip [all...] |
/third_party/skia/infra/bots/recipe_modules/build/ |
H A D | chromebook.py | 16 skia_dir = checkout_root.join('skia') 26 clang_linux = os.path.join(top_level, 'clang_linux') 28 sysroot_dir = os.path.join(top_level, 'armhf_sysroot') 31 'cc': "%s" % os.path.join(clang_linux, 'bin','clang'), 32 'cxx': "%s" % os.path.join(clang_linux, 'bin','clang++'), 46 gl_dir = os.path.join(top_level, 'chromebook_arm_gles') 47 env = {'LD_LIBRARY_PATH': os.path.join(sysroot_dir, 'lib')} 59 '-I%s' % os.path.join(gl_dir, 'include'), 60 '-I%s' % os.path.join(sysroot_dir, 'include'), 61 '-I%s' % os.path.join(sysroot_di [all...] |
H A D | default.py | 11 script=skia_dir.join('tools', 'build_command_buffer.py'), 35 cmake_bin = str(api.vars.workdir.join('cmake_linux', 'bin')) 56 clang_linux = str(api.vars.workdir.join('clang_linux')) 58 cflags = ' '.join([ 88 skia_dir = checkout_root.join('skia') 95 clang_linux = str(api.vars.workdir.join('clang_linux')) 96 win_toolchain = str(api.vars.workdir.join('win_toolchain')) 115 mac_toolchain_cmd = api.vars.workdir.join( 117 xcode_app_path = api.vars.cache_dir.join('Xcode.app') 152 ccache = api.vars.workdir.join('ccache_linu [all...] |
/third_party/skia/tools/skp/ |
H A D | webpages_playback.py | 77 LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR = os.path.join( 83 CREDENTIALS_FILE_PATH = os.path.join( 112 CHROMIUM_PAGE_SETS_PATH = os.path.join('tools', 'perf', 'page_sets') 149 self._chrome_page_sets_path = os.path.join(parse_options.chrome_src_path, 166 self._telemetry_binaries_dir = os.path.join(parse_options.chrome_src_path, 168 self._catapult_dir = os.path.join(parse_options.chrome_src_path, 171 self._local_skp_dir = os.path.join( 173 self._local_record_webpages_archive_dir = os.path.join( 184 page_sets_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)), 186 ps = [os.path.join(page_sets_di [all...] |
/third_party/node/deps/v8/tools/unittests/ |
H A D | run_perf_test.py | 23 RUN_PERF = os.path.join(BASE_DIR, 'run_perf.py') 24 TEST_DATA = os.path.join(BASE_DIR, 'unittests', 'testdata') 26 TEST_WORKSPACE = os.path.join(tempfile.gettempdir(), 'test-v8-run-perf') 101 base_path = os.path.join(TEST_DATA, 'builddirs', 'dir1', 'out') 102 expected_path = os.path.join(base_path, 'build') 112 include=([os.path.join(BASE_DIR, 'run_perf.py')])) 137 self._test_input = os.path.join(TEST_WORKSPACE, 'test.json') 163 os.path.join(os.path.dirname(BASE_DIR), out, build_dir) 171 dirs = [os.path.join(TEST_WORKSPACE, arg) for arg in args[0]] 180 self._test_output = os.path.join(TEST_WORKSPAC [all...] |
/third_party/vk-gl-cts/scripts/ |
H A D | run_internal_tests.py | 84 testWorkDir = os.path.join(config.buildPath, "modules", "internal") 85 junitToolPath = os.path.join(config.buildPath, 'executor', config.junitTool) 99 os.path.join(config.buildPath, 'executor', config.executor), 101 '--start-server=%s' % os.path.join(config.buildPath, 'execserver', config.execserver), 105 '--caselistdir=%s' % os.path.join(testWorkDir), 115 SRC_PATH = os.path.normpath(os.path.join(os.path.dirname(__file__), "..")) 116 BASE_BUILD_PATH = os.path.normpath(os.path.join(SRC_PATH, "..", "de-internal-tests")) 122 os.path.join(BASE_BUILD_PATH, "win32-vs10-debug"), 133 os.path.join(BASE_BUILD_PATH, "win32-vs10-release"), 144 os.path.join(BASE_BUILD_PAT [all...] |
H A D | check_build_sanity.py | 57 args = [pythonExecutable, os.path.join(env.srcDir, self.scriptPath)] 65 cflagsStr = " ".join(cflags) 112 buildDir = os.path.join(env.tmpDir, self.buildDir) 152 RunScript(os.path.join("external", "fetch_sources.py"), lambda env: ["--force"]) 189 RunScript(os.path.join("scripts", "gen_egl.py")), 190 RunScript(os.path.join("scripts", "opengl", "gen_all.py")), 191 RunScript(os.path.join("external", "vulkancts", "scripts", "gen_framework.py")), 192 RunScript(os.path.join("external", "vulkancts", "scripts", "gen_framework_c.py")), 193 RunScript(os.path.join("external", "vulkancts", "scripts", "gen_framework.py"), lambda env: ["--api", "SC"] ), 194 RunScript(os.path.join("externa [all...] |
/third_party/skia/infra/bots/assets/valgrind/ |
H A D | create.py | 24 INFRA_BOTS_DIR = os.path.realpath(os.path.join(FILE_DIR, os.pardir, os.pardir)) 32 TEMP_DIR = os.path.join(tempfile.gettempdir(), 'skia-%s' % VALGRIND) 33 INSTALL_DIR = os.path.join(TEMP_DIR, 'valgrind_install') 58 if os.path.isfile(os.path.join(INSTALL_DIR, 'bin', 'valgrind')): 60 with utils.chdir(os.path.join(TEMP_DIR, VALGRIND)): 67 with utils.chdir(os.path.join(TEMP_DIR, VALGRIND)): 68 os.mkdir(os.path.join(target_dir, 'bin')) 69 shutil.copy(os.path.join(INSTALL_DIR, 'bin', 'valgrind'), 70 os.path.join(target_dir, 'bin', 'valgrind')) 71 os.mkdir(os.path.join(target_di [all...] |
/third_party/skia/third_party/externals/freetype/src/tools/ |
H A D | make_distribution_archives.py | 14 _TOP_DIR = os.path.abspath(os.path.join(__file__, "..", "..", "..")) 15 _SCRIPT_DIR = os.path.dirname(os.path.join(_TOP_DIR, "builds", "meson", "")) 91 os.path.join(_SCRIPT_DIR, "extract_freetype_version.py"), 92 os.path.join(_TOP_DIR, "include", "freetype", "freetype.h"), 107 file_path = os.path.join(build_dir, item) 130 tmp_src_dir = os.path.join(build_dir, freetype_dir) 134 dst = os.path.join(tmp_src_dir, src) 138 shutil.copy(os.path.join(git_dir, src), dst) 143 os.path.join(tmp_src_dir, "builds", "unix", "autom4te.cache") 150 os.path.join(arg [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/node/test/wasi/ |
H A D | test-wasi-symlinks.js | 11 const wasmDir = path.join(__dirname, 'wasm'); 21 const modulePath = path.join(wasmDir, `${process.argv[3]}.wasm`); 40 const sandbox = path.join(tmpdir.path, 'sandbox'); 41 const sandboxedFile = path.join(sandbox, 'input.txt'); 42 const externalFile = path.join(tmpdir.path, 'outside.txt'); 43 const sandboxedDir = path.join(sandbox, 'subdir'); 44 const sandboxedSymlink = path.join(sandboxedDir, 'input_link.txt'); 45 const escapingSymlink = path.join(sandboxedDir, 'outside.txt'); 46 const loopSymlink1 = path.join(sandboxedDir, 'loop1'); 47 const loopSymlink2 = path.join(sandboxedDi [all...] |
/third_party/node/deps/npm/test/lib/commands/ |
H A D | view.js | 287 t.matchSnapshot(outputs.join('\n')) 293 t.matchSnapshot(outputs.join('\n')) 299 t.matchSnapshot(outputs.join('\n')) 305 t.matchSnapshot(outputs.join('\n')) 311 t.matchSnapshot(outputs.join('\n')) 317 t.matchSnapshot(outputs.join('\n')) 323 t.matchSnapshot(outputs.join('\n')) 329 t.equal(outputs.join('\n'), '', 'no info to display') 335 t.matchSnapshot(outputs.join('\n')) 341 t.matchSnapshot(outputs.join('\ [all...] |
/third_party/python/Lib/test/ |
H A D | test_glob.py | 15 return os.path.normpath(os.path.join(self.tempdir, *parts)) 18 return [os.path.join(self.tempdir, *parts) for parts in tuples] 42 os.symlink(os.path.join('a', 'bcd'), self.norm('sym3')) 57 pattern = os.path.join(*parts) 58 p = os.path.join(self.tempdir, pattern) 75 self.assertCountEqual([os.path.join(self.tempdir, x) for x in res2], 118 res = glob.glob(os.path.join(os.curdir, '*')) 123 res = glob.glob(os.path.join(os.fsencode(os.curdir), b'*')) 311 join = os.path.join [all...] |
/third_party/gn/infra/recipes/ |
H A D | gn.py | 42 str(api.macos_sdk.sdk_dir.join('include', 'c++', 'v1')), 57 sysroot = '--sysroot=%s' % cipd_dir.join('sysroot-focal') 59 sysroot = '--sysroot=%s' % cipd_dir.join('sysroot') 61 'CC': cipd_dir.join('bin', 'clang'), 62 'CXX': cipd_dir.join('bin', 'clang++'), 63 'AR': cipd_dir.join('bin', 'llvm-ar'), 74 stdlib = cipd_dir.join('lib', 'libc++.a') 78 cipd_dir.join('bin', 'clang'), 80 cipd_dir.join('bin', 'clang++'), 82 cipd_dir.join('bi [all...] |
/third_party/node/deps/npm/test/fixtures/ |
H A D | sandbox.js | 4 const { dirname, join } = require('path') 69 global: options.global || join(tempDir, 'global'), 70 home: options.home || join(tempDir, 'home'), 71 project: options.project || join(tempDir, 'project'), 72 cache: options.cache || join(tempDir, 'cache'), 116 return this[_output].map((line) => line.join(' ')).join('\n') 138 .split(normalize(this[_proxy].execPath)).join('{EXECPATH}') 139 .split(normalize(_process.execPath)).join('{REALEXECPATH}') 140 .split(normalize(this.global)).join('{GLOBALPREFI [all...] |
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | gen_vk_gl_cts_build.py | 18 dataDirectories.append(os.path.join("data", "gles2")) 19 dataDirectories.append(os.path.join("data", "gles3")) 20 dataDirectories.append(os.path.join("data", "gles31")) 21 dataDirectories.append(os.path.join("external", "graphicsfuzz", "data", "gles3")) 22 dataDirectories.append(os.path.join("external", "openglcts", "data", "gles3")) 27 pathToReplace = os.path.join("external", "graphicsfuzz", "") # Include trailing slash 30 pathToReplace = os.path.join("external", "openglcts", "") # Include trailing slash 31 pathReplacements[pathToReplace] = os.path.join("data", "gl_cts", "") 81 cmakeLists.append(os.path.join(relativeDirectory, filename)) 103 deqpSourceDirectory = os.path.join(" [all...] |
/third_party/python/Lib/distutils/tests/ |
H A D | test_install_data.py | 17 cmd.install_dir = inst = os.path.join(pkg_dir, 'inst') 22 one = os.path.join(pkg_dir, 'one') 24 inst2 = os.path.join(pkg_dir, 'inst2') 25 two = os.path.join(pkg_dir, 'two') 38 self.assertTrue(os.path.exists(os.path.join(inst2, rtwo))) 40 self.assertTrue(os.path.exists(os.path.join(inst, rone))) 50 self.assertTrue(os.path.exists(os.path.join(inst2, rtwo))) 51 self.assertTrue(os.path.exists(os.path.join(inst, rone))) 55 cmd.root = os.path.join(pkg_dir, 'root') 56 inst3 = os.path.join(cm [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...] |
H A D | ohos_gen_framework_c.py | 29 sys.path.append(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...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
H A D | generate_gl_dispatch_table.py | 174 return '\n'.join(lines) 181 return '\n'.join(lines) 194 return '\n'.join([assign_null_line(line) for line in entry.split('\n')]) 202 return "".join(param.itertext()) 264 print(','.join(inputs)) 266 print(','.join(outputs)) 272 gl_xml_path = os.path.join('..', '..', '..', '..', 'scripts', 'gl.xml') 405 table_data.append("\n".join(formatted)) 411 table_data="\n\n".join(table_data)) 443 gl_data="\n\n".join(gl_dat [all...] |
/third_party/skia/infra/bots/recipe_modules/flavor/ |
H A D | default.py | 45 resource_dir=self.m.path['start_dir'].join('skia', 'resources'), 46 images_dir=self.m.path['start_dir'].join('skimage'), 47 lotties_dir=self.m.path['start_dir'].join('lottie-samples'), 48 skp_dir=self.m.path['start_dir'].join('skp'), 49 svg_dir=self.m.path['start_dir'].join('svg'), 50 mskp_dir=self.m.path['start_dir'].join('mskp'), 52 texttraces_dir=self.m.path['start_dir'].join('text_blob_traces')) 56 """Like os.path.join(), but for paths on a connected device.""" 57 return self.m.path.join(*args) 124 app = self.device_dirs.bin_dir.join(cm [all...] |