/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/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/boost/libs/thread/test/ |
D | test_thread_mf.cpp | 53 boost::thread( &X::f0, &x ).join(); in main() 54 boost::thread( &X::f0, boost::ref(x) ).join(); in main() 56 boost::thread( &X::g0, &x ).join(); in main() 57 boost::thread( &X::g0, x ).join(); in main() 58 boost::thread( &X::g0, boost::ref(x) ).join(); in main() 62 boost::thread( &X::f1, &x, 1 ).join(); in main() 63 boost::thread( &X::f1, boost::ref(x), 1 ).join(); in main() 65 boost::thread( &X::g1, &x, 1 ).join(); in main() 66 boost::thread( &X::g1, x, 1 ).join(); in main() 67 boost::thread( &X::g1, boost::ref(x), 1 ).join(); in main() [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/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/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) 179 src_gtest_dir = os.path.join(src_dir, 'third_party', 'googletest', 'src', 182 os.path.join(src_gtest_dir, 'scripts')) [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/python/Mac/BuildScript/ |
D | build-installer.py | 88 os.path.join(SRCDIR, 'configure'), 'PACKAGE_VERSION') 100 fn = os.path.join(SRCDIR, 'Include', 'patchlevel.h') 116 DEPSRC = os.path.join(WORKDIR, 'third-party') 284 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')), 302 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')), 351 shellQuote(os.path.join(WORKDIR, 'libraries')), 352 shellQuote(os.path.join(WORKDIR, 'libraries')), 387 shellQuote(os.path.join(WORKDIR, 'libraries')), 388 ' -arch '.join(ARCHLIST), 398 shellQuote(os.path.join(WORKDIR, 'libraries')), [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/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/boost/libs/geometry/test/algorithms/buffer/ |
D | buffer_multi_point.cpp | 35 bg::strategy::buffer::join_round join; in test_all() local 45 test_one<multi_point_type, polygon>("simplex1", simplex, join, end_flat, 2.0 * pi, 1.0); in test_all() 46 test_one<multi_point_type, polygon>("simplex2", simplex, join, end_flat, 22.8372, 2.0); in test_all() 47 test_one<multi_point_type, polygon>("simplex3", simplex, join, end_flat, 44.5692, 3.0); in test_all() 49 test_one<multi_point_type, polygon>("three1", three, join, end_flat, 3.0 * pi, 1.0); in test_all() 52 test_one<multi_point_type, polygon>("three2", three, join, end_flat, 36.7592, 2.0); in test_all() 54 test_one<multi_point_type, polygon>("three19", three, join, end_flat, 33.6914, 1.9); in test_all() 55 test_one<multi_point_type, polygon>("three21", three, join, end_flat, 39.6394, 2.1); in test_all() 56 test_one<multi_point_type, polygon>("three3", three, join, end_flat, 65.533, 3.0); in test_all() 58 … test_one<multi_point_type, polygon>("multipoint_a", multipoint_a, join, end_flat, 2049.98, 14.0); in test_all() [all …]
|
/third_party/uboot/u-boot-2020.01/test/py/tests/test_fs/ |
D | test_basic.py | 29 assert(re.search('2621440000 *%s' % BIG_FILE, ''.join(output))) 30 assert(re.search('1048576 *%s' % SMALL_FILE, ''.join(output))) 54 assert('filesize=100000' in ''.join(output)) 62 assert('filesize=100000' in ''.join(output)) 77 assert('filesize=9c400000' in ''.join(output)) 90 assert('filesize=100000' in ''.join(output)) 96 assert(md5val[0] in ''.join(output)) 109 assert('filesize=100000' in ''.join(output)) 115 assert(md5val[1] in ''.join(output)) 130 assert('filesize=100000' in ''.join(output)) [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/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/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/boost/libs/fusion/test/functional/ |
D | invoke.cpp | 244 …SFINAE_FRIENDLY_ASSERT((fusion::result_of::invoke<F, typename fusion::result_of::join<sv_obj , S>… 245 …SFINAE_FRIENDLY_ASSERT((fusion::result_of::invoke<F, typename fusion::result_of::join<sv_ref , S>… 246 …SFINAE_FRIENDLY_ASSERT((fusion::result_of::invoke<F, typename fusion::result_of::join<sv_ptr , S>… 247 …SFINAE_FRIENDLY_ASSERT((fusion::result_of::invoke<F, typename fusion::result_of::join<sv_obj_c, S>… 248 …SFINAE_FRIENDLY_ASSERT((fusion::result_of::invoke<F, typename fusion::result_of::join<sv_ref_c, S>… 249 …SFINAE_FRIENDLY_ASSERT((fusion::result_of::invoke<F, typename fusion::result_of::join<sv_ptr_c, S>… 250 …SFINAE_FRIENDLY_ASSERT((fusion::result_of::invoke<F, typename fusion::result_of::join<sv_spt , S>… 251 …SFINAE_FRIENDLY_ASSERT((fusion::result_of::invoke<F, typename fusion::result_of::join<sv_spt_c, S>… 304 …SFINAE_FRIENDLY_ASSERT((fusion::result_of::invoke<F, typename fusion::result_of::join<sv_obj_d , … 305 …SFINAE_FRIENDLY_ASSERT((fusion::result_of::invoke<F, typename fusion::result_of::join<sv_ref_d , … [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/node/test/parallel/ |
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(moduleB, 'index.js'), [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/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 …]
|