/third_party/node/deps/npm/node_modules/@sigstore/tuf/dist/ |
H A D | appdata.js | 29 const appSupport = path_1.default.join(homedir, 'Library', 'Application Support'); 30 return path_1.default.join(appSupport, name); 34 const localAppData = process.env.LOCALAPPDATA || path_1.default.join(homedir, 'AppData', 'Local'); 35 return path_1.default.join(localAppData, name, 'Data'); 39 const localData = process.env.XDG_DATA_HOME || path_1.default.join(homedir, '.local', 'share'); 40 return path_1.default.join(localData, name);
|
/third_party/typescript/tests/baselines/reference/ |
H A D | crashIntypeCheckInvocationExpression.types | 15 >task<number, number, any>(<P0, P1, P2>() => { var folder = path.join(), fileset = nake.fileSetSync<number, number, any>(folder) return doCompile<number, number, any>(fileset, moduleType);}) : any
17 ><P0, P1, P2>() => { var folder = path.join(), fileset = nake.fileSetSync<number, number, any>(folder) return doCompile<number, number, any>(fileset, moduleType);} : <P0, P1, P2>() => any
19 var folder = path.join(),
21 >path.join() : any
22 >path.join : any
24 >join : any
|
H A D | declFileMethods.js | 15 return a + rests.join(""); 35 return a + rests.join(""); 54 return a + rests.join(""); 73 return a + rests.join(""); 109 return a + rests.join(""); 129 return a + rests.join(""); 148 return a + rests.join(""); 167 return a + rests.join(""); 213 return a + rests.join("");
232 return a + rests.join("");
[all...] |
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | msvs_projects.py | 21 os.chdir(os.path.join(script_dir, '..')) 29 print('Running "' + ' '.join(args) + '"') 34 path = os.path.join(out_dir, potential_dir) 35 build_ninja_d = os.path.join(path, 'build.ninja.d') 40 args = ['python', os.path.join('build', 'win', 'gn_meta_sln.py')] 41 print('Running "' + ' '.join(args) + '"')
|
/third_party/node/deps/v8/third_party/test262-harness/src/ |
H A D | _packager.py | 87 stuff = os.path.join(TEST262_CONSOLE_CASES_DIR, 101 tempList = [os.path.join(dirName, x) for x in os.listdir(dirName)] 116 temp = [os.path.join(dirName, x) for x in os.listdir(dirName) \ 117 if not os.path.isdir(os.path.join(dirName, x))] 137 # dirWalker(os.path.join(dirName, tempSubdir)) 161 retVal += [os.path.join(fullPath,b) for b in files if b.endswith(".js")] 166 temp = os.path.join(TEST262_CASES_DIR, temp) 228 scriptCodeContent = "".join(scriptCode) 236 tempDict = convertDocString("".join(scriptCode)) 268 with open(os.path.join(TEST262_WEB_CASES_DI [all...] |
/third_party/node/test/parallel/ |
H A D | test-runner-run.mjs | 3 import { join } from 'node:path'; 29 const stream = run({ files: [join(testFixtures, 'default-behavior/test/random.cjs')] }); 39 join(testFixtures, 'default-behavior/test/random.cjs'), 40 join(testFixtures, 'default-behavior/test/random.cjs'), 77 files: [join(testFixtures, 'default-behavior/test/random.cjs')] 89 files: [join(testFixtures, 'default-behavior/test/random.cjs')] 100 files: [join(testFixtures, 'default-behavior/test/random.cjs')] 111 files: [join(testFixtures, 'default-behavior/test/random.cjs')] 131 files: [join(testFixtures, 'default-behavior/test/skip_by_name.cjs')], 142 files: [join(testFixture [all...] |
H A D | test-v8-coverage.js | 21 const coverageDirectory = path.join(tmpdir.path, nextdir()); 40 const coverageDirectory = path.join(tmpdir.path, nextdir()); 58 const coverageDirectory = path.join(tmpdir.path, nextdir()); 77 const coverageDirectory = path.join(tmpdir.path, nextdir()); 98 const coverageDirectory = path.join(tmpdir.path, nextdir()); 118 const coverageDirectory = path.join(tmpdir.path, nextdir()); 138 const coverageDirectory = path.join(tmpdir.path, nextdir()); 154 const coverageDirectory = path.join(tmpdir.path, nextdir()); 173 const absoluteCoverageDirectory = path.join(tmpdir.path, coverageDirectory); 198 const coverage = require(path.join(coverageDirector [all...] |
/third_party/skia/infra/bots/recipes/ |
H A D | compute_buildstats.py | 121 keystr = ' '.join(keys) 135 propstr = ' '.join(str(prop) for prop in props) 144 skia_dir = checkout_root.join('skia') 146 script = skia_dir.join('infra', 'bots', 'buildstats', 169 bloaty_exe = api.path['start_dir'].join('bloaty', 'bloaty') 172 skia_dir = checkout_root.join('skia') 174 script = skia_dir.join('infra', 'bots', 'buildstats', 197 bloaty_exe = api.path['start_dir'].join('bloaty', 'bloaty') 201 skia_dir = checkout_root.join('skia') 203 stripped = api.vars.build_dir.join('libflutter_strippe [all...] |
/third_party/node/tools/inspector_protocol/ |
H A D | code_generator.py | 41 items = [(k, os.path.join(output_base, v) if k == "path" else v) for (k, v) in object_dict.items()] 42 items = [(k, os.path.join(output_base, v) if k == "output" else v) for (k, v) in items] 142 return prefix + "".join(to_title_case(x) or "-" for x in word.split("-")) 463 imported_namespace = "::".join(self.config.imported.namespace) if self.config.imported else "" 578 sys.stderr.write("Domains [%s] are exported, but config is missing export entry\n\n" % ", ".join(protocol.exported_domains)) 593 templates_dir = os.path.join(module_path, "templates") 594 inputs.append(os.path.join(templates_dir, "TypeBuilder_h.template")) 595 inputs.append(os.path.join(templates_dir, "TypeBuilder_cpp.template")) 596 inputs.append(os.path.join(templates_dir, "Exported_h.template")) 597 inputs.append(os.path.join(templates_di [all...] |
/third_party/python/Modules/_decimal/tests/ |
H A D | randdec.py | 79 return ''.join((intpart, '.', fracpart)) 81 return ''.join((dot(), digits(maxprec))) 87 return ''.join((indicator(), sign(), expdigits(maxexp))) 98 return ''.join(('NaN', d)) 100 return ''.join(('sNaN', d)) 108 return ''.join((decimal_part(maxprec), exp_part)) 112 return ''.join((sign(), nan())) 114 return ''.join((sign(), numeric_value(maxprec, maxexp))) 124 return ''.join((sign(), d, 'E', exp)) 147 return ''.join((st [all...] |
/third_party/node/deps/v8/third_party/inspector_protocol/lib/ |
H A D | ValueConversions_cpp.template | 29 using {{"::".join(config.protocol.namespace)}}::Binary; 30 using {{"::".join(config.protocol.namespace)}}::Object; 31 using {{"::".join(config.protocol.namespace)}}::Value; 32 using {{"::".join(config.protocol.namespace)}}::String; 33 using {{"::".join(config.protocol.namespace)}}::DictionaryValue; 34 using {{"::".join(config.protocol.namespace)}}::FundamentalValue; 35 using {{"::".join(config.protocol.namespace)}}::StringValue; 36 using {{"::".join(config.protocol.namespace)}}::StringUtil; 37 //using {{"::".join(config.protocol.namespace)}}::EncodeString;
|
/third_party/node/deps/npm/lib/commands/ |
H A D | help-search.js | 6 const globify = pattern => pattern.split('\\').join('/') 27 this.npm.output(`No matches in help for: ${args.join(' ')}\n`) 148 .join(' ') 150 out.push(' '.repeat((Math.max(1, cols - out.join(' ').length - r.length - 1)))) 154 return out.join('') 177 out.push(hilitLine.join('') + '\n') 180 return out.join('') 181 }).join('\n') 184 ? 'Top hits for ' + (args.map(JSON.stringify).join(' ')) + '\n' +
|
/third_party/typescript/scripts/ |
H A D | ohTestCasesGenerationScript.js | 127 const ohFourslashCasesDir = path.join(thisFilePath, "../tests/cases/fourslash/oh");
132 const fourslashCasesNamePath = path.join(thisFilePath, "../tests/cases/fourslash", caseName);
135 const ohFourslashCasesNamePath = path.join(ohFourslashCasesDir, ohFourslashCasesName);
147 const ohCompilerCasesDir = path.join(thisFilePath, "../tests/cases/compiler-oh");
148 const baselineDir = path.join(thisFilePath, "../tests/baselines/reference");
155 const compilerCasesNamePath = path.join(thisFilePath, "../tests/cases/compiler", caseName);
163 const ohCompilerCasesNamePath = path.join(ohCompilerCasesDir, ohCompilerCasesName);
173 const baselineCaseNamePath = path.join(baselineDir, caseName);
184 const ohBaselineNamePath = path.join(baselineDir, ohCompilerCasesName).replace(".ts", type);
|
/third_party/python/Lib/lib2to3/tests/ |
H A D | test_main.py | 15 TEST_DATA_DIR = os.path.join(os.path.dirname(__file__), "data") 16 PY2_TEST_MODULE = os.path.join(TEST_DATA_DIR, "py2_test_grammar.py") 59 self.py2_src_dir = os.path.join(self.temp_dir, "python2_project") 60 self.py3_dest_dir = os.path.join(self.temp_dir, "python3_project") 65 open(os.path.join(self.py2_src_dir, "__init__.py"), "w").close() 69 self.trivial_py2_file = os.path.join(self.py2_src_dir, "trivial.py") 70 self.init_py2_file = os.path.join(self.py2_src_dir, "__init__.py") 96 os.path.join(self.py2_src_dir, name), 97 os.path.join(self.py3_dest_dir, name+suffix)), stderr)
|
/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]))
|
/third_party/python/Lib/test/ |
H A D | _test_multiprocessing.py | 96 # (join() and is_alive(), the support function can be reused 273 p.join() 293 p.join() 331 p.join() 360 p.join() 377 parent_process().join(timeout=support.SHORT_TIMEOUT) 413 p.join() 432 p.join() 462 join = TimingWrapper(p.join) 5526 def join(self): global() member in TestPoolNotLeakOnFailure.test_release_unused_processes.FailingForkProcess [all...] |
/third_party/python/Lib/distutils/tests/ |
H A D | test_util.py | 29 self.join = os.path.join 50 os.path.join = self.join 176 return '/'.join(path) 177 os.path.join = _join 185 return '\\'.join(path) 186 os.path.join = _join 203 return '/'.join(path) 204 os.path.join [all...] |
/third_party/skia/infra/bots/task_drivers/perf_puppeteer_skottie_frames/ |
H A D | perf_puppeteer_skottie_frames_test.go | 45 fi, err := os.Stat(filepath.Join(benchmarkPath, "out")) 55 require.NoError(t, os.MkdirAll(filepath.Join(lotties, "animation_1"), 0777)) 82 "--input_lottie", filepath.Join(lotties, "animation_1", "data.json"), 83 "--assets", filepath.Join(lotties, "animation_1", "images"), 96 require.NoError(t, os.MkdirAll(filepath.Join(lotties, "animation_1"), 0777)) 123 "--input_lottie", filepath.Join(lotties, "animation_1", "data.json"), 124 "--assets", filepath.Join(lotties, "animation_1", "images"), 141 err = writeFilesToDisk(filepath.Join(input, "out"), map[string]string{ 160 outputFile := filepath.Join(output, "perf-taskid1352.json") 240 err = writeFilesToDisk(filepath.Join(inpu [all...] |
/third_party/node/test/fixtures/wpt/resources/webidl2/lib/ |
H A D | writer.js | 18 if (it.union) ret += `(${it.idlType.map(type).join(" or ")})`; 21 if (Array.isArray(it.idlType)) ret += it.idlType.map(type).join(", "); 52 if (it.rhs.type === "identifier-list") ret += `=(${it.rhs.value.join(",")})`; 55 if (it.arguments) ret += `(${it.arguments.length ? it.arguments.map(argument).join(",") : ""})`; 61 return `[${eats.map(make_ext_at).join(", ")}]`; 73 ret += `(${it.arguments.map(argument).join(",")});`; 147 return `${ret}callback ${it.name} = ${type(it.idlType)}(${it.arguments.map(argument).join(",")});`; 158 return `iterable<${Array.isArray(it.idlType) ? it.idlType.map(type).join(", ") : type(it.idlType)}>;`; 161 return `legacyiterable<${Array.isArray(it.idlType) ? it.idlType.map(type).join(", ") : type(it.idlType)}>;`; 164 return `${it.readonly ? "readonly " : ""}maplike<${it.idlType.map(type).join(", ")}>;`; [all...] |
/third_party/node/deps/npm/test/lib/commands/ |
H A D | ci.js | 71 tarball: path.join(npm.prefix, 'abbrev'), 76 const nmTest = path.join(npm.prefix, 'node_modules', 'test') 78 const nmAbbrev = path.join(npm.prefix, 'node_modules', 'abbrev') 94 tarball: path.join(npm.prefix, 'abbrev'), 100 const nmTest = path.join(npm.prefix, 'node_modules', 'test') 102 const nmAbbrev = path.join(npm.prefix, 'node_modules', 'abbrev') 131 tarball: path.join(npm.prefix, 'abbrev'), 155 tarball: path.join(npm.prefix, 'abbrev'), 180 const nmTestFile = path.join(npm.prefix, 'node_modules', 'test-file') 211 const nmTestFile = path.join(np [all...] |