| /third_party/node/test/parallel/ |
| H A D | test-module-multi-extensions.js | 11 const file = path.join(tmpdir.path, 'test-extensions.foo.bar'); 12 const dotfile = path.join(tmpdir.path, '.bar'); 13 const dotfileWithExtension = path.join(tmpdir.path, '.foo.bar'); 23 const modulePath = path.join(tmpdir.path, 'test-extensions'); 34 const modulePath = path.join(tmpdir.path, 'test-extensions'); 47 const modulePath = path.join(tmpdir.path, 'test-extensions'); 59 const modulePath = path.join(tmpdir.path, 'test-extensions.foo'); 69 const modulePath = path.join(tmpdir.path, 'test-extensions.foo');
|
| H A D | test-fs-symlink-longpath.js | 11 const longPath = path.join(...[tmpDir].concat(Array(30).fill('1234567890'))); 15 const targetDirectory = path.join(longPath, 'target-directory'); 17 const pathDirectory = path.join(tmpDir, 'new-directory'); 22 const targetFile = path.join(longPath, 'target-file'); 24 const pathFile = path.join(tmpDir, 'new-file');
|
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
| H A D | gen_emulated_builtin_function_tables.py | 99 func += "".join(["// " + line + "\n" for line in data['comment']]) 101 sig = data['return_type'] + ' ' + data['op'] + '_emu(' + ', '.join(data['args']) + ')' 105 func += "BuiltInId::" + data['op'] + "_" + "_".join([enum_type(arg) for arg in data['args'] 108 func += '"' + '\\n"\n"'.join(data['helper']) + '\\n"\n' 109 func += '"' + '\\n"\n"'.join(body) + '\\n"\n' 125 print(','.join(inputs)) 127 print(','.join(outputs)) 142 emulated_functions="".join(emulated_functions))
|
| /third_party/skia/gm/ |
| H A D | strokerect.cpp | 26 SkPaint::Join join, int doFill) { in draw_path() 33 paint.setStrokeJoin(join); in draw_path() 77 constexpr SkPaint::Join gJoins[] = { 100 SkPaint::Join join = gJoins[i]; variable 101 paint.setStrokeJoin(join); 110 draw_path(canvas, fillPath, r, join, doFill); 25 draw_path(SkCanvas* canvas, const SkPath& path, const SkRect& rect, SkPaint::Join join, int doFill) draw_path() argument
|
| /third_party/python/Lib/test/test_importlib/ |
| H A D | test_util.py | 35 source = '\r\n'.join([self.source, self.source]) 38 '\n'.join([self.source, self.source])) 567 path = os.path.join('foo', 'bar', 'baz', 'qux.py') 568 expect = os.path.join('foo', 'bar', 'baz', '__pycache__', 581 path = os.path.join('foo.bar', 'file') 582 expect = os.path.join('foo.bar', '__pycache__', 590 path = os.path.join('foo', 'bar', 'baz', 'qux.py') 606 expect = os.path.join('__pycache__', 'foo.{}.pyc'.format(self.tag)) 613 path = os.path.join('foo', 'bar', 'baz.py') 631 expect = os.path.join('__pycache_ [all...] |
| /kernel/linux/linux-5.10/drivers/staging/comedi/drivers/ni_routing/tools/ |
| H A D | convert_csv_to_c.py | 57 lines = '\n'.join(lines) 114 return '\n'.join(lines) 154 """.format(filename=SET_C, extern_h=os.path.join(ITEMS_DIR, EXTERN_H)) 245 sheet_filename = os.path.join(self.ITEMS_DIR,'{}.c'.format(S)) 262 with open(os.path.join(self.OUTPUT_DIR, sheet_filename), 'w') as f: 263 f.write('\n'.join(s_chunks)) 266 with open(os.path.join(self.OUTPUT_DIR, self.MKFILE_SEGMENTS), 'w') as f: 269 f.write('\n'.join(objs)) 272 EXTERN_H = os.path.join(self.ITEMS_DIR, self.EXTERN_H) 273 with open(os.path.join(sel [all...] |
| /third_party/node/deps/v8/tools/ |
| H A D | v8_presubmit.py | 38 from os.path import abspath, join, dirname, basename, exists namespace 82 join(TOOLS_PATH, '..', 'third_party', 'depot_tools')) 235 all_files += self.FindFilesIn(join(path, file)) 274 result.append(join(root, file)) 344 pool.join() 386 return dirs + [join('test', dir) for dir in test_dirs] 392 filters = ','.join([n for n in LINT_RULES]) 395 cpplint = os.path.join(DEPS_DEPOT_TOOLS_PATH, 'cpplint.py') 415 return dirs + [join('test', dir) for dir in test_dirs] 421 torque_tools = os.path.join(TOOLS_PAT [all...] |
| /test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/ |
| H A D | constants.py | 117 result_path = os.path.join(result_rootpath, "result", subpath) 119 result_path = os.path.join(result_rootpath, "result") 121 result_path = os.path.join(result_rootpath, "result") 160 filepath = os.path.join(result_savepath, "%s.xml" % str( 164 if self.device.is_file_exist(os.path.join(self.device_testpath, 167 elif self.device.is_file_exist(os.path.join(self.device_testpath, 173 os.path.join(self.device_testpath, remote_result_name), 179 filepath = os.path.join(result_savepath, "%s.xml" % 181 remote_result_file = os.path.join(self.device_testpath, 201 os.path.join(sel [all...] |
| /third_party/node/deps/npm/test/bin/ |
| H A D | windows-shims.js | 3 const { resolve, join, extname, basename, sep } = require('path') 10 const p = join(dir, shim) 18 const BIN = join(ROOT, 'bin') 20 const NODE_GYP = readNonJsFiles(join(BIN, 'node-gyp-bin')) 27 .join(sep) 47 t.match(diff[0].split('\n').reverse().join(''), /^NPX_CLI_JS=/, 'has NPX_CLI') 103 assert.equal(process.argv.slice(2).join(' '), 'prefix -g') 113 copyFileSync(process.execPath, join(path, 'node.exe')) 115 rmSync(join(path, 'node.exe')) 118 rmSync(join(pat [all...] |
| /third_party/skia/src/gpu/tessellate/shaders/ |
| H A D | GrStrokeTessellationShader_InstancedImpl.cpp | 19 SkPaint::Join joinType = shader.stroke().getJoin(); in onEmitCode() 154 // Determine how many edges to give to the round join. We emit the first and final edges in onEmitCode() 155 // of the join twice: once full width and once restricted to half width. This guarantees in onEmitCode() 156 // perfect seaming by matching the vertices from the join as well as from the strokes on in onEmitCode() 162 // The stroke section needs at least two edges. Don't assign more to the join than in onEmitCode() 167 // Negative argsAttr.z means the join is an internal chop or circle, and both of in onEmitCode() 168 // those have empty joins. All we need is a bevel join. in onEmitCode() 176 if (JOIN_TYPE >= 0 /*Is the join not a round type?*/) { in onEmitCode() 197 // means the join is disabled, and to disable it with the existing code we can leave in onEmitCode() 216 // We belong to the preceding join in onEmitCode() [all...] |
| /third_party/python/Lib/lib2to3/tests/ |
| H A D | test_refactor.py | 18 TEST_DATA_DIR = os.path.join(os.path.dirname(__file__), "data") 19 FIXER_DIR = os.path.join(TEST_DATA_DIR, "fixers") 207 test_file = os.path.join(tmpdir, os.path.basename(test_file)) 224 test_file = os.path.join(FIXER_DIR, "parrot_example.py") 228 test_file = os.path.join(FIXER_DIR, "parrot_example.py") 257 os.mkdir(os.path.join(dir, "a_dir")) 259 open(os.path.join(dir, fn), "wb").close() 265 [os.path.join(dir, path) for path in expected]) 276 os.path.join("a_dir", "stuff.py")] 280 fn = os.path.join(TEST_DATA_DI [all...] |
| /kernel/linux/linux-5.10/drivers/gpu/drm/i915/selftests/ |
| H A D | i915_syncmap.c | 288 * Each pass the common prefix shrinks and we have to insert a join. in igt_syncmap_join_above() 289 * Each join will only contain two branches, the latest of which in igt_syncmap_join_above() 298 struct i915_syncmap *join; in igt_syncmap_join_above() local 304 join = sync->parent; in igt_syncmap_join_above() 305 if (!join) /* very first insert will have no parents */ in igt_syncmap_join_above() 308 if (!join->height) { in igt_syncmap_join_above() 314 if (hweight32(join->bitmap) != 2) { in igt_syncmap_join_above() 315 pr_err("Join does not have 2 children: %x (%d)\n", in igt_syncmap_join_above() 316 join->bitmap, hweight32(join in igt_syncmap_join_above() [all...] |
| /kernel/linux/linux-6.6/drivers/gpu/drm/i915/selftests/ |
| H A D | i915_syncmap.c | 288 * Each pass the common prefix shrinks and we have to insert a join. in igt_syncmap_join_above() 289 * Each join will only contain two branches, the latest of which in igt_syncmap_join_above() 298 struct i915_syncmap *join; in igt_syncmap_join_above() local 304 join = sync->parent; in igt_syncmap_join_above() 305 if (!join) /* very first insert will have no parents */ in igt_syncmap_join_above() 308 if (!join->height) { in igt_syncmap_join_above() 314 if (hweight32(join->bitmap) != 2) { in igt_syncmap_join_above() 315 pr_err("Join does not have 2 children: %x (%d)\n", in igt_syncmap_join_above() 316 join->bitmap, hweight32(join in igt_syncmap_join_above() [all...] |
| /test/testfwk/developer_test/src/core/build/ |
| H A D | build_testcases.py | 50 self.part_deps_path = os.path.join(sys.source_code_root_path, 82 toolchain_filepath = os.path.join( 103 xts_testcase_out_dir = os.path.join( 115 helper_path = os.path.join("..", "libs", "fuzzlib", "fuzzer_helper.py") 166 input_subsystem = ",".join(para.subsystem) 218 package_out_dir = os.path.join( 224 package_out_dir = os.path.join( 235 phone_out_dir = os.path.join( 247 curr_productform_outdir = os.path.join( 257 package_out_dir = os.path.join( [all...] |
| /third_party/python/Lib/distutils/tests/ |
| H A D | test_archive_util.py | 111 base_name = os.path.join(tmpdir2, target_name) 138 dist = os.path.join(tmpdir, 'dist') 142 os.mkdir(os.path.join(dist, 'sub')) 144 os.mkdir(os.path.join(dist, 'sub2')) 153 base_name = os.path.join(tmpdir2, 'archive') 166 tarball2 = os.path.join(tmpdir, 'archive2.tar.gz') 183 base_name = os.path.join(tmpdir2, 'archive') 194 base_name = os.path.join(tmpdir2, 'archive') 208 base_name = os.path.join(self.mkdtemp(), 'archive') 242 base_name = os.path.join(sel [all...] |
| H A D | test_install.py | 46 destination = os.path.join(builddir, "installation") 50 dist.script_name = os.path.join(builddir, "setup.py") 53 build_lib=os.path.join(builddir, "lib"), 68 libdir = os.path.join(destination, "lib", "python") 70 platlibdir = os.path.join(destination, sys.platlibdir, "python") 74 os.path.join(destination, "include", "python", "foopkg")) 75 check_path(cmd.install_scripts, os.path.join(destination, "bin")) 85 self.user_base = os.path.join(self.tmpdir, 'B') 86 self.user_site = os.path.join(self.tmpdir, 'S') 195 cmd.record = os.path.join(project_di [all...] |
| /third_party/node/tools/ |
| H A D | gyp_node.py | 7 node_root = os.path.normpath(os.path.join(script_dir, os.pardir)) 9 sys.path.insert(0, os.path.join(node_root, 'tools', 'gyp', 'pylib')) 14 output_dir = os.path.join(os.path.abspath(node_root), 'out') 21 args.append(os.path.join(a_path, 'node.gyp')) 22 common_fn = os.path.join(a_path, 'common.gypi') 23 options_fn = os.path.join(a_path, 'config.gypi')
|
| /third_party/node/test/es-module/ |
| H A D | test-esm-preserve-symlinks-main.js | 13 fs.mkdirSync(path.join(tmpDir, 'nested')); 14 fs.mkdirSync(path.join(tmpDir, 'nested2')); 16 const entry = path.join(tmpDir, 'nested', 'entry.js'); 17 const entry_link_absolute_path = path.join(tmpDir, 'link.js'); 18 const submodule = path.join(tmpDir, 'nested2', 'submodule.js'); 19 const submodule_link_absolute_path = path.join(tmpDir, 'submodule_link.js');
|
| /third_party/icu/icu4c/source/test/intltest/ |
| H A D | simplethread.cpp | 21 this->join(); // Avoid crashes if user neglected to join(). in ~SimpleThread() 29 void SimpleThread::join() { in join() function in SimpleThread 31 fThread.join(); in join() 70 void ThreadPoolBase::join() { in join() function in ThreadPoolBase 73 fThreads[i]->join(); in join()
|
| /third_party/node/deps/openssl/openssl/fuzz/ |
| H A D | helper.py | 22 CORPORA_DIR = os.path.abspath(os.path.join(THIS_DIR, "corpora")) 24 FUZZER_DIR = os.path.abspath(os.path.join(CORPORA_DIR, FUZZER)) 31 dd = os.path.abspath(os.path.join(CORPORA_DIR, d)) 37 dd = os.path.abspath(os.path.join(CORPORA_DIR, d)) 46 cmd = ([os.path.abspath(os.path.join(THIS_DIR, FUZZER))] + sys.argv[2:] 48 print(" ".join(cmd))
|
| /third_party/openssl/fuzz/ |
| H A D | helper.py | 22 CORPORA_DIR = os.path.abspath(os.path.join(THIS_DIR, "corpora")) 24 FUZZER_DIR = os.path.abspath(os.path.join(CORPORA_DIR, FUZZER)) 31 dd = os.path.abspath(os.path.join(CORPORA_DIR, d)) 37 dd = os.path.abspath(os.path.join(CORPORA_DIR, d)) 46 cmd = ([os.path.abspath(os.path.join(THIS_DIR, FUZZER))] + sys.argv[2:] 48 print(" ".join(cmd))
|
| /third_party/python/Mac/ |
| H A D | Extras.install.py | 34 print("copy", os.path.join(cursrc, fn), os.path.join(curdst, fn)) 36 shutil.copy2(os.path.join(cursrc, fn), os.path.join(curdst, fn)) 39 print("skipfile", os.path.join(cursrc, fn)) 43 print("skipdir", os.path.join(cursrc, dirs[i]))
|
| /applications/standard/contacts_data/ability/common/include/ |
| H A D | common.h | 446 "JOIN [raw_contact] AS [name_raw_contact] " 448 "LEFT JOIN [account] ON " 450 "LEFT JOIN [photo_files] ON " 498 "LEFT JOIN [account] ON " 500 "LEFT JOIN [photo_files] ON " 590 "JOIN [raw_contact] ON " 592 "JOIN [contact] ON ([contact].[id] = [raw_contact].[contact_id]) " 593 "JOIN [raw_contact] AS [name_raw_contact] ON " 595 "LEFT JOIN [account] ON " 597 "LEFT JOIN [contact_typ [all...] |
| /third_party/node/deps/v8/third_party/inspector_protocol/ |
| H A D | roll.py | 107 files += glob.glob(os.path.join(path, f)) 151 dest_dir = os.path.join(downstream, 'third_party/inspector_protocol') 159 os.path.join(src_dir, f), os.path.join(dest_dir, f)))] 171 contents = open(os.path.join(src_dir, f)).read() 179 open(os.path.join(dest_dir, f), 'w').write(contents) 180 shutil.copymode(os.path.join(src_dir, f), os.path.join(dest_dir, f)) 182 os.unlink(os.path.join(dest_dir, f)) 184 lines = open(os.path.join(dest_di [all...] |
| /third_party/node/benchmark/path/ |
| H A D | relative-win32.js | 7 ['C:\\orandea\\test\\aaa', 'C:\\orandea\\impl\\bbb'].join('|'), 8 ['C:\\', 'D:\\'].join('|'), 9 ['C:\\foo\\bar\\baz', 'C:\\foo\\bar\\baz'].join('|'), 10 ['C:\\foo\\BAR\\BAZ', 'C:\\foo\\bar\\baz'].join('|'), 11 ['C:\\foo\\bar\\baz\\quux', 'C:\\'].join('|'),
|