/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/regex/ |
H A D | AnyPathTest.java | 44 // This is not the same as joining SINGLE.join(OPTIONAL). in testExtend() 54 assertThat(EMPTY.join(SINGLE)).isEqualTo(SINGLE); in testJoin() 55 assertThat(EMPTY.join(OPTIONAL)).isEqualTo(OPTIONAL); in testJoin() 56 assertPath(SINGLE.join(SINGLE), 2); in testJoin() 57 assertPath(SINGLE.join(OPTIONAL), 1, 2); in testJoin() 58 assertPath(OPTIONAL.join(OPTIONAL), 0, 1, 2); in testJoin() 61 // "(x(x)?)?".join("(x(x)?)?") == "(x(x(x(x)?)?)?)?" == 11111 and matches 0 to 4. in testJoin() 62 assertThat(AnyPath.of(0x7).join(AnyPath.of(0x7))).isEqualTo(AnyPath.of(0x1F)); in testJoin() 66 // "xx(x)?".join("(xx)?") == "xx(xx)?" == 111100 and matches 2 to 5. in testJoin() 67 assertThat(AnyPath.of(0xC).join(AnyPat in testJoin() [all...] |
/third_party/skia/src/effects/ |
H A D | SkOpPathEffect.cpp | 74 bounds->join(b2); in computeFastBounds() 132 sk_sp<SkPathEffect> SkStrokePathEffect::Make(SkScalar width, SkPaint::Join join, SkPaint::Cap cap, in Make() argument 137 return sk_sp<SkPathEffect>(new SkStrokePE(width, join, cap, miter)); in Make() 140 SkStrokePE::SkStrokePE(SkScalar width, SkPaint::Join join, SkPaint::Cap cap, SkScalar miter) in SkStrokePE() argument 141 : fWidth(width), fMiter(miter), fJoin(join), fCap(cap) {} in SkStrokePE() 171 SkPaint::Join join = buffer.read32LE(SkPaint::kLast_Join); in CreateProc() local 173 return buffer.isValid() ? SkStrokePathEffect::Make(width, join, ca in CreateProc() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | declFileConstructors.symbols | 33 return a + rests.join("");
35 >rests.join : Symbol(Array.join, Decl(lib.es5.d.ts, --, --))
37 >join : Symbol(Array.join, Decl(lib.es5.d.ts, --, --))
119 return a + rests.join("");
121 >rests.join : Symbol(Array.join, Decl(lib.es5.d.ts, --, --))
123 >join : Symbol(Array.join, Dec [all...] |
H A D | typeGuardsOnClassProperty.symbols | 22 return typeof data === "string" ? data : data.join(" ");
25 >data.join : Symbol(Array.join, Decl(lib.es5.d.ts, --, --))
27 >join : Symbol(Array.join, Decl(lib.es5.d.ts, --, --))
33 return typeof this.data === "string" ? this.data : this.data.join(" ");
40 >this.data.join : Symbol(Array.join, Decl(lib.es5.d.ts, --, --))
44 >join : Symbol(Array.join, Dec [all...] |
/third_party/node/test/parallel/ |
H A D | test-runner-cli.js | 6 const { join } = require('path'); 26 const child = spawnSync(process.execPath, args, { cwd: join(testFixtures, 'default-behavior') }); 42 const args = ['--require', join(testFixtures, 'protoMutation.js'), '--test']; 43 const child = spawnSync(process.execPath, args, { cwd: join(testFixtures, 'default-behavior') }); 59 const args = ['--test', join(testFixtures, 'index.js')]; 71 const args = ['--test', join(testFixtures, 'default-behavior/node_modules')]; 84 const options = { cwd: join(testFixtures, 'default-behavior') }; 201 '--test', join(testFixtures, 'default-behavior', 'index.test.js')]; 213 const args = ['--test', '--test-shard=1', join(testFixtures, 'index.js')]; 225 const args = ['--test', '--test-shard=1/2/3', join(testFixture [all...] |
H A D | test-fs-chmod-mask.js | 29 const file = path.join(tmpdir.path, `chmod-async-${suffix}.txt`); 38 const file = path.join(tmpdir.path, `chmodSync-${suffix}.txt`); 46 const file = path.join(tmpdir.path, `fchmod-async-${suffix}.txt`); 57 const file = path.join(tmpdir.path, `fchmodSync-${suffix}.txt`); 68 const link = path.join(tmpdir.path, `lchmod-src-${suffix}`); 69 const file = path.join(tmpdir.path, `lchmod-dest-${suffix}`); 79 const link = path.join(tmpdir.path, `lchmodSync-src-${suffix}`); 80 const file = path.join(tmpdir.path, `lchmodSync-dest-${suffix}`);
|
H A D | test-fs-write-file.js | 26 const join = require('path').join; 31 const filename = join(tmpdir.path, 'test.txt'); 48 const filename2 = join(tmpdir.path, 'test2.txt'); 58 const filename4 = join(tmpdir.path, 'test4.txt'); 76 const filename3 = join(tmpdir.path, 'test3.txt'); 90 const filename4 = join(tmpdir.path, 'test5.txt'); 101 const filename = join(tmpdir.path, 'test6.txt');
|
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-vfs.js | 10 const { join } = require('path'); 12 const directory = join(tmpdir.path, 'directory'); 13 const doesNotExist = join(tmpdir.path, 'does-not-exist'); 14 const file = join(tmpdir.path, 'file.js'); 24 const vfsDirectory = join(process.execPath, 'directory'); 25 const vfsDoesNotExist = join(process.execPath, 'does-not-exist'); 26 const vfsFile = join(process.execPath, 'file.js');
|
/third_party/gn/build/ |
H A D | full_test.py | 22 bin_path = os.path.join('out', 'gntrial') 25 gn_to_run = os.path.join(bin_path, 'gn' + ('.exe' if IS_WIN else '')) 27 comp_dir = os.path.join('out', 'COMP') 42 subprocess.check_call([sys.executable, os.path.join('build', 'gen.py')]) 44 subprocess.check_call([os.path.join('out', 'gn_unittests')]) 48 our_gn = os.path.join(orig_dir, 'out', 'gn' + ('.exe' if IS_WIN else '')) 61 dir_a = os.path.join('out', 'a') 62 dir_b = os.path.join('out', 'b')
|
/third_party/mesa3d/ohos/ |
H A D | build_mesa3d.py | 37 mesa3d_install_dir = os.path.join(out_dir, 'packages', 'phone', 'mesa3d') 43 pkgconf_dir = os.path.join(mesa3d_dir, './pkgconfig') 49 path_new = ':'.join(filter(path_filter, path_old)) 79 build_lib = os.path.join(mesa3d_dir, 'build-ohos', 'install', 'lib') 80 build_lib_dri = os.path.join(build_lib, 'dri') 85 for item in glob.glob(os.path.join(build_lib, 'lib*.so.*.*.*')): 87 for item in glob.glob(os.path.join(build_lib_dri, '*_dri.so')): 89 shutil.copy(item, os.path.join(mesa3d_install_dir, 'libgallium_dri.so')) # consider create symlink or hardlink
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/tools/ |
H A D | run_one.py | 22 FOOZZIE = os.path.join(BASE_PATH, 'workdir', 'app_dir', 'v8_foozzie.py') 23 TEST_CASES = os.path.join(BASE_PATH, 'workdir', 'output') 38 test_dir = os.path.join(TEST_CASES, 'dir-%d' % dir_number) 56 cmd = ' '.join(args) 69 yield (os.path.join(test_dir, f), os.path.join(test_dir, ff)) 94 with open(os.path.join(test_dir, 'failures.json'), 'w') as f: 104 with open(os.path.join(test_dir, 'stats.json'), 'w') as f:
|
/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/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...] |
H A D | code_generator.py | 42 items = [(k, os.path.join(config_base, v) if k == "path" else v) 44 items = [(k, os.path.join(output_base, v) if k == "output" else v) 117 ".crdtp.dir": os.path.join(inspector_protocol_dir, "crdtp"), 144 return prefix + "".join(to_title_case(x) or "-" for x in word.split("-")) 462 imported_namespace = "::".join(self.config.imported.namespace) 578 "entry\n\n") % ", ".join(protocol.exported_domains)) 594 templates_dir = os.path.join(module_path, "templates") 595 inputs.append(os.path.join(templates_dir, "TypeBuilder_h.template")) 596 inputs.append(os.path.join(templates_dir, "TypeBuilder_cpp.template")) 597 inputs.append(os.path.join(templates_di [all...] |
/third_party/python/Lib/distutils/tests/ |
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/python/Lib/test/ |
H A D | test_embed.py | 43 STDLIB_INSTALL = os.path.join(sys.prefix, sys.platlibdir, 45 if not os.path.isfile(os.path.join(STDLIB_INSTALL, 'os.py')): 72 exepath = os.path.join(builddir, 'Programs') 73 self.test_exe = exe = os.path.join(exepath, exename) 215 lines = "\n".join(lines) + "\n" 228 expected_output = '\n'.join([ 266 env = dict(os.environ, PYTHONPATH=os.pathsep.join(sys.path)) 271 expected_path = os.path.join(os.getcwd(), "spam") 282 env['PYTHONPATH'] = os.pathsep.join(sys.path) 673 default_executable = os.path.join(o [all...] |
/third_party/node/test/tools/ |
H A D | test_checkimports.py | 5 sys.path.append(path.abspath(path.join(path.dirname(__file__), 27 fixturesDir = path.join(path.dirname(__file__), '..', '..', 32 self.assertEqual(is_valid(path.join(self.fixturesDir, 'invalid.cc')), 46 self.assertEqual(is_valid(path.join(self.fixturesDir, 'maybe.cc')), 53 self.assertEqual(is_valid(path.join(self.fixturesDir, 'unused.cc')), 60 self.assertEqual(is_valid(path.join(self.fixturesDir, 'unsorted.cc')), 71 self.assertEqual(is_valid(path.join(self.fixturesDir, 'valid.cc')),
|
/third_party/node/deps/npm/node_modules/node-gyp/lib/ |
H A D | find-node-directory.js | 17 const npmParentDirectory = path.join(scriptLocation, '../../../..') 26 nodeRootDir = path.join(npmParentDirectory, '..') 35 nodeRootDir = path.join(npmParentDirectory, '..') 37 nodeRootDir = path.join(npmParentDirectory, '../..') 47 nodeRootDir = path.join(nodeDir, '..') 53 nodeRootDir = path.join(nodeDir, '..') 55 nodeRootDir = path.join(nodeDir, '../..')
|
/third_party/skia/tools/skqp/ |
H A D | run_skqp_exe | 14 sys.stdout.write("adb '" + "' '".join(args) + "'\n") 20 os.chdir(os.path.join(os.path.dirname(__file__), os.pardir, os.pardir)) 25 os.path.join(*'platform_tools/android/apps/skqp/src/main/assets/skqp'.split('/')), 28 os.path.join(*'out/skqp/gmkb'.split('/')), '/data/local/tmp/skqp/skqp_assets') 31 adb('push', os.path.join(build, 'skqp'), '/data/local/tmp/skqp/skqp') 41 return ret, os.path.join(tmpdir, 'report') 54 os.system("bin/sysopen " + os.path.join(report, 'report.html'))
|
/third_party/skia/platform_tools/android/tradefed/ |
H A D | upload_dm_results.py | 24 sys.path.insert(0, os.path.join(current_dir, "../../../common/py/utils")) 35 if not os.path.isfile(os.path.join(dm_dir, 'dm.json')): 40 shutil.move(os.path.join(dm_dir, 'dm.json'), 41 os.path.join(tmp, 'dm.json')) 55 summary_dest_dir = '/'.join(['dm-json-v1', 72 shutil.move(os.path.join(tmp, 'dm.json'), 73 os.path.join(dm_dir, 'dm.json'))
|
/third_party/python/Tools/scripts/ |
H A D | patchcheck.py | 16 EXCLUDE_DIRS = [os.path.join('Modules', '_ctypes', 'libffi_osx'), 17 os.path.join('Modules', '_ctypes', 'libffi_msvc'), 18 os.path.join('Modules', '_decimal', 'libmpdec'), 19 os.path.join('Modules', 'expat'), 20 os.path.join('Modules', 'zlib')] 101 if not os.path.exists(os.path.join(SRCDIR, '.git')): 121 if os.path.exists(os.path.join(SRCDIR, '.git')): 169 return "\n".join(lines) 177 reindent.check(os.path.join(SRCDIR, path))] 186 abspath = os.path.join(SRCDI [all...] |
/third_party/python/Tools/freeze/ |
H A D | freeze.py | 218 ishome = os.path.exists(os.path.join(prefix, 'Python', 'ceval.c')) 231 incldir = os.path.join(prefix, 'Include') 233 config_c_in = os.path.join(prefix, 'Modules', 'config.c.in') 234 frozenmain_c = os.path.join(prefix, 'Python', 'frozenmain.c') 235 makefile_in = os.path.join(exec_prefix, 'Makefile') 237 frozendllmain_c = os.path.join(exec_prefix, 'Pc\\frozen_dllmain.c') 240 incldir = os.path.join(prefix, 'include', 'python%s' % flagged_version) 241 config_h_dir = os.path.join(exec_prefix, 'include', 243 config_c_in = os.path.join(configdir, 'config.c.in') 244 frozenmain_c = os.path.join(configdi [all...] |
/third_party/node/test/es-module/ |
H A D | test-esm-symlink.js | 13 const entry = path.join(tmpDir, 'entry.mjs'); 14 const real = path.join(tmpDir, 'index.mjs'); 15 const link_absolute_path = path.join(tmpDir, 'absolute.mjs'); 16 const link_relative_path = path.join(tmpDir, 'relative.mjs'); 17 const link_ignore_extension = path.join(tmpDir, 19 const link_directory = path.join(tmpDir, 'directory');
|