/third_party/node/deps/npm/node_modules/normalize-package-data/node_modules/resolve/test/ |
D | resolver_sync.js | 6 var dir = path.join(__dirname, 'resolver'); 10 path.join(dir, 'foo.js') 15 path.join(dir, 'foo.js') 19 resolve.sync('./foo.js', { basedir: dir, filename: path.join(dir, 'bar.js') }), 20 path.join(dir, 'foo.js') 30 resolve.sync('foo', { basedir: dir, filename: path.join(dir, 'bar.js') }); 34 message: "Cannot find module 'foo' from '" + path.join(dir, 'bar.js') + "'" 42 var dir = path.join(__dirname, 'resolver'); 45 resolve.sync('foo', { basedir: path.join(dir, 'bar') }), 46 path.join(dir, 'bar/node_modules/foo/index.js') [all …]
|
D | resolver.js | 7 var dir = path.join(__dirname, 'resolver'); 11 t.equal(res, path.join(dir, 'foo.js')); 17 t.equal(res, path.join(dir, 'foo.js')); 23 t.equal(res, path.join(dir, 'foo.js')); 29 t.equal(res, path.join(dir, 'foo.js')); 33 resolve('./foo', { basedir: dir, filename: path.join(dir, 'baz.js') }, function (err, res) { 35 t.equal(res, path.join(dir, 'foo.js')); 44 resolve('foo', { basedir: dir, filename: path.join(dir, 'baz.js') }, function (err) { 45 t.equal(err.message, "Cannot find module 'foo' from '" + path.join(dir, 'baz.js') + "'"); 51 var dir = path.join(__dirname, 'resolver'); [all …]
|
/third_party/cef/tools/ |
D | make_distrib.py | 31 full_path = os.path.join(dir, f) 36 os.path.join(input_dir, os.pardir))) 61 working_dir = os.path.abspath(os.path.join(input_dir, os.pardir)) 84 output_dir = os.path.abspath(os.path.join(parent_dir, name)) 101 paths.append(os.path.join(script_dir, 'distrib', platform_cmp)) 104 paths.append(os.path.join(script_dir, 'distrib')) 108 file = os.path.join(path, 'README.' + name + '.txt') 172 write_file(os.path.join(output_dir, 'README.txt'), data) 182 src_gtest_dir = os.path.join(cef_dir, 'tools', 'distrib', 'gtest') 183 target_gtest_dir = os.path.join(tests_dir, 'gtest') [all …]
|
/third_party/jerryscript/tools/ |
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_DIR, 'runners/run-debugger-test.sh') [all …]
|
/third_party/node/deps/npm/node_modules/env-paths/ |
D | index.js | 10 const library = path.join(homedir, 'Library'); 13 data: path.join(library, 'Application Support', name), 14 config: path.join(library, 'Preferences', name), 15 cache: path.join(library, 'Caches', name), 16 log: path.join(library, 'Logs', name), 17 temp: path.join(tmpdir, name) 22 const appData = env.APPDATA || path.join(homedir, 'AppData', 'Roaming'); 23 const localAppData = env.LOCALAPPDATA || path.join(homedir, 'AppData', 'Local'); 27 data: path.join(localAppData, name, 'Data'), 28 config: path.join(appData, name, 'Config'), [all …]
|
/third_party/python/Mac/BuildScript/ |
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')), 580 libfw = os.path.join('/', fwpth) 581 usrfw = os.path.join(os.getenv('HOME'), fwpth) 759 return os.path.join(builddir, retval) [all …]
|
/third_party/jerryscript/tests/jerry/ |
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 = Array.prototype.join; 38 obj.join(); [all …]
|
/third_party/skia/infra/bots/recipe_modules/build/ |
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_dir, 'include', 'c++', '6'), [all …]
|
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_linux', 'bin', 'ccache') [all …]
|
/third_party/jerryscript/targets/curie_bsp/ |
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('jerryscript', file) [all …]
|
/third_party/node/deps/npm/lib/utils/ |
D | error-message.js | 36 ].join('\n') 61 ].join('\n') 76 ].join('\n')]) 90 ].join('\n') 102 ].join('\n')] 114 ].join('\n') 121 if (er.file === path.join(npm.prefix, 'package.json')) { 132 `$ ${process.argv.join(' ')}` 133 ].join('\n') 144 ].join('\n') [all …]
|
/third_party/skia/tools/skp/ |
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_dir, page_set) [all …]
|
/third_party/flutter/skia/tools/skp/ |
D | webpages_playback.py | 75 LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR = os.path.join( 81 CREDENTIALS_FILE_PATH = os.path.join( 110 CHROMIUM_PAGE_SETS_PATH = os.path.join('tools', 'perf', 'page_sets') 147 self._chrome_page_sets_path = os.path.join(parse_options.chrome_src_path, 164 self._telemetry_binaries_dir = os.path.join(parse_options.chrome_src_path, 166 self._catapult_dir = os.path.join(parse_options.chrome_src_path, 169 self._local_skp_dir = os.path.join( 171 self._local_record_webpages_archive_dir = os.path.join( 182 page_sets_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)), 184 ps = [os.path.join(page_sets_dir, page_set) [all …]
|
/third_party/typescript/scripts/ |
D | produceLKG.ts | 8 const root = path.join(__dirname, ".."); 9 const source = path.join(root, "built/local"); 10 const dest = path.join(root, "lib"); 11 const copyright = fs.readFileSync(path.join(__dirname, "../CopyrightNotice.txt"), "utf-8"); 33 const fileName = path.join(source, d); 38 await fs.copy(fileName, path.join(dest, d)); 48 const protocolScript = path.join(__dirname, "buildProtocol.js"); 53 const protocolInput = path.join(__dirname, "../src/server/protocol.ts"); 54 const protocolServices = path.join(source, "typescriptServices.d.ts"); 55 const protocolOutput = path.join(dest, "protocol.d.ts"); [all …]
|
/third_party/jsoncpp/ |
D | amalgamate.py | 35 f = open(os.path.join(self.top_dir, relative_input_path), "rt") 45 return "".join(self.blocks).replace("\r\n","\n") 74 header.add_file(os.path.join(INCLUDE_PATH, "version.h")) 75 header.add_file(os.path.join(INCLUDE_PATH, "allocator.h")) 76 header.add_file(os.path.join(INCLUDE_PATH, "config.h")) 77 header.add_file(os.path.join(INCLUDE_PATH, "forwards.h")) 78 header.add_file(os.path.join(INCLUDE_PATH, "json_features.h")) 79 header.add_file(os.path.join(INCLUDE_PATH, "value.h")) 80 header.add_file(os.path.join(INCLUDE_PATH, "reader.h")) 81 header.add_file(os.path.join(INCLUDE_PATH, "writer.h")) [all …]
|
/third_party/flutter/engine/flutter/testing/ |
D | run_tests.py | 16 buildroot_dir = os.path.abspath(os.path.join(os.path.realpath(__file__), '..', '..', '..')) 17 out_dir = os.path.join(buildroot_dir, 'out') 18 golden_dir = os.path.join(buildroot_dir, 'flutter', 'testing', 'resources') 19 fonts_dir = os.path.join(buildroot_dir, 'flutter', 'third_party', 'txt', 'third_party', 'fonts') 20 roboto_font_path = os.path.join(fonts_dir, 'Roboto-Regular.ttf') 21 dart_tests_dir = os.path.join(buildroot_dir, 'flutter', 'testing', 'dart',) 62 executable = FindExecutablePath(os.path.join(build_dir, executable_name)) 66 print ' '.join(test_command) 123 dart = os.path.join(build_dir, 'dart-sdk', 'bin', 'dart') 124 frontend_server = os.path.join(build_dir, 'gen', 'frontend_server.dart.snapshot') [all …]
|
/third_party/musl/ndk-test/script/ |
D | build.py | 18 target_dir = os.path.join(os.getcwd(),os.path.pardir,'target') 23 if os.path.isdir(os.path.join(target_dir,filename)): 24 shutil.rmtree(os.path.join(target_dir,filename)) 33 comliler_dir = os.path.join(os.getcwd(),os.path.pardir) 36 file_path = os.path.join(comliler_dir,name) 44 return_dir = os.path.join(os.getcwd(),os.path.pardir,'script') 57 find_dir = os.path.join(os.getcwd(),os.path.pardir) 60 file_path = os.path.join(find_dir,name) 65 src = os.path.join(file_path,dirname) 66 copy_tar_out = os.path.join(find_dir,'target',name) [all …]
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | typedArray-set-with-typedArray.js | 27 assert(b.join() === '1,2,3,4,5'); 36 assert(b.join() === '1,2,99,98,5'); 39 assert(b.join() === '1,2,99,98,97'); 66 assert(a1.join() === '0,1,4,5,6,7,6,7'); 67 assert(a2.join() === '6,7,6,7'); 71 assert(a1.join() === '0,1,6,5,6,7,6,7'); 72 assert(a3.join() === '117835526'); 76 assert(a1.join() === '0,1,0,1,6,5,6,7'); 77 assert(a4.join() === '0,1,0,1'); 81 assert(a1.join() === '0,1,6,1,6,5,6,7'); [all …]
|
/third_party/gn/infra/recipes/ |
D | gn.py | 53 str(api.macos_sdk.sdk_dir.join('include', 'c++', 'v1')), 67 sysroot = '--sysroot=%s' % cipd_dir.join('sysroot') 69 'CC': cipd_dir.join('bin', 'clang'), 70 'CXX': cipd_dir.join('bin', 'clang++'), 71 'AR': cipd_dir.join('bin', 'llvm-ar'), 82 stdlib = cipd_dir.join('lib', 'libc++.a') 86 cipd_dir.join('bin', 'clang'), 88 cipd_dir.join('bin', 'clang++'), 90 cipd_dir.join('bin', 'llvm-ar'), 107 src_dir = api.path['start_dir'].join('gn') [all …]
|
/third_party/vk-gl-cts/scripts/ |
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_PATH, "win64-vs10-debug"), [all …]
|
/third_party/skia/infra/bots/assets/valgrind/ |
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_dir, 'lib')) [all …]
|
/third_party/node/test/wasi/ |
D | test-wasi-symlinks.js | 12 const wasmDir = path.join(__dirname, 'wasm'); 22 const modulePath = path.join(wasmDir, `${process.argv[3]}.wasm`); 41 const sandbox = path.join(tmpdir.path, 'sandbox'); 42 const sandboxedFile = path.join(sandbox, 'input.txt'); 43 const externalFile = path.join(tmpdir.path, 'outside.txt'); 44 const sandboxedDir = path.join(sandbox, 'subdir'); 45 const sandboxedSymlink = path.join(sandboxedDir, 'input_link.txt'); 46 const escapingSymlink = path.join(sandboxedDir, 'outside.txt'); 47 const loopSymlink1 = path.join(sandboxedDir, 'loop1'); 48 const loopSymlink2 = path.join(sandboxedDir, 'loop2'); [all …]
|
/third_party/flutter/skia/infra/bots/assets/valgrind/ |
D | create.py | 28 TEMP_DIR = os.path.join(tempfile.gettempdir(), 'skia-%s' % VALGRIND) 29 INSTALL_DIR = os.path.join(TEMP_DIR, 'valgrind_install') 54 if os.path.isfile(os.path.join(INSTALL_DIR, 'bin', 'valgrind')): 56 with utils.chdir(os.path.join(TEMP_DIR, VALGRIND)): 63 with utils.chdir(os.path.join(TEMP_DIR, VALGRIND)): 64 os.mkdir(os.path.join(target_dir, 'bin')) 65 shutil.copy(os.path.join(INSTALL_DIR, 'bin', 'valgrind'), 66 os.path.join(target_dir, 'bin', 'valgrind')) 67 os.mkdir(os.path.join(target_dir, 'lib')) 68 os.mkdir(os.path.join(target_dir, 'lib', 'valgrind')) [all …]
|
/third_party/python/Lib/test/ |
D | test_shutil.py | 77 path = os.path.join(*path) 94 chunk = b"".join([random.choice(string.ascii_letters).encode() 109 path = os.path.join(*path) 118 p = os.path.join(path, name) 187 victim = os.path.join(tmp, 'killme') 189 write_file(os.path.join(victim, 'somefile'), 'foo') 197 dir_ = os.path.join(tmp, 'dir') 199 link = os.path.join(tmp, 'link') 216 dir1 = os.path.join(tmp, 'dir1') 217 dir2 = os.path.join(dir1, 'dir2') [all …]
|
/third_party/flutter/skia/infra/bots/recipe_modules/flavor/ |
D | default.py | 96 resource_dir=self.m.path['start_dir'].join('skia', 'resources'), 97 images_dir=self.m.path['start_dir'].join('skimage'), 98 lotties_dir=self.m.path['start_dir'].join('lottie-samples'), 99 skp_dir=self.m.path['start_dir'].join('skp'), 100 svg_dir=self.m.path['start_dir'].join('svg'), 101 mskp_dir=self.m.path['start_dir'].join('mskp'), 107 return self.m.path.join(*args) 174 app = self.device_dirs.bin_dir.join(cmd[0]) 181 clang_linux = str(slave_dir.join('clang_linux')) 187 dri_path = slave_dir.join('mesa_intel_driver_linux') [all …]
|