/third_party/gn/build/ |
H A D | gen.py | 152 return ' '.join(result) 154 return ' '.join(shell_quote(item) for item in result) 165 '/'.join(Platform.known_platforms()) + ')', 169 '/'.join(Platform.known_platforms()) + ')', 182 default=os.path.join(REPO_ROOT, 'out'), 221 out_dir = options.out_path or os.path.join(REPO_ROOT, 'out') 226 os.path.join(out_dir, 'last_commit_position.h')) 227 WriteGNNinja(os.path.join(out_dir, 'build.ninja'), platform, host, options, args_list) 284 template_filename = os.path.join(SCRIPT_DIR, { 327 os.path.join(REPO_ROO [all...] |
/third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/ |
H A D | Perf-Android-Clang-NVIDIA_Shield-CPU-TegraX1-arm64-Release-All-Android.json | 51 "\nimport subprocess\nimport sys\n\n# Remove the path.\nadb = sys.argv[1]\npath = sys.argv[2]\nprint('Removing %s' % path)\ncmd = [adb, 'shell', 'rm', '-rf', path]\nprint(' '.join(cmd))\nsubprocess.check_call(cmd)\n\n# Verify that the path was deleted.\nprint('Checking for existence of %s' % path)\ncmd = [adb, 'shell', 'ls', path]\nprint(' '.join(cmd))\ntry:\n output = subprocess.check_output(cmd, stderr=subprocess.STDOUT)\nexcept subprocess.CalledProcessError as e:\n output = e.output\nprint('Output was:')\nprint('======')\nprint(output)\nprint('======')\nif 'No such file or directory' not in output:\n raise Exception('%s exists despite being deleted' % path)\n", 71 "@@@STEP_LOG_LINE@python.inline@print(' '.join(cmd))@@@", 77 "@@@STEP_LOG_LINE@python.inline@print(' '.join(cmd))@@@", 123 "\nimport subprocess\nimport sys\n\n# Remove the path.\nadb = sys.argv[1]\npath = sys.argv[2]\nprint('Removing %s' % path)\ncmd = [adb, 'shell', 'rm', '-rf', path]\nprint(' '.join(cmd))\nsubprocess.check_call(cmd)\n\n# Verify that the path was deleted.\nprint('Checking for existence of %s' % path)\ncmd = [adb, 'shell', 'ls', path]\nprint(' '.join(cmd))\ntry:\n output = subprocess.check_output(cmd, stderr=subprocess.STDOUT)\nexcept subprocess.CalledProcessError as e:\n output = e.output\nprint('Output was:')\nprint('======')\nprint(output)\nprint('======')\nif 'No such file or directory' not in output:\n raise Exception('%s exists despite being deleted' % path)\n", 143 "@@@STEP_LOG_LINE@python.inline@print(' '.join(cmd))@@@", 149 "@@@STEP_LOG_LINE@python.inline@print(' '.join(cmd))@@@", 269 "\nimport subprocess\nimport sys\n\n# Remove the path.\nadb = sys.argv[1]\npath = sys.argv[2]\nprint('Removing %s' % path)\ncmd = [adb, 'shell', 'rm', '-rf', path]\nprint(' '.join(cmd))\nsubprocess.check_call(cmd)\n\n# Verify that the path was deleted.\nprint('Checking for existence of %s' % path)\ncmd = [adb, 'shell', 'ls', path]\nprint(' '.join(cm [all...] |
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/arborist/ |
H A D | isolated-reifier.js | 6 const { join } = require('path') 105 const dir = join( 233 deps.push(`${branch.join('->')}::${node.resolved}`) 241 .update(deps.join(',')) 323 path: join(proxiedIdealTree.root.localPath, location), 324 realpath: join(proxiedIdealTree.root.localPath, location), 339 const location = join('node_modules', '.store', key, 'node_modules', c.name) 365 const fromLocation = join('node_modules', '.store', key, 'node_modules', node.name) 367 nmFolder = join('node_modules', '.store', key, 'node_modules') 370 nmFolder = join(nod [all...] |
/third_party/python/Lib/distutils/command/ |
H A D | build_py.py | 107 build_dir = os.path.join(*([self.build_lib] + package.split('.'))) 128 filelist = glob.glob(os.path.join(glob.escape(src_dir), convert_path(pattern))) 139 target = os.path.join(build_dir, filename) 141 self.copy_file(os.path.join(src_dir, filename), target, 152 return os.path.join(*path) 159 pdir = self.package_dir['.'.join(path)] 165 return os.path.join(*tail) 179 return os.path.join(*tail) 199 init_py = os.path.join(package_dir, "__init__.py") 219 module_files = glob.glob(os.path.join(glo [all...] |
/build/ohos/images/mkimage/ |
H A D | judge_updater_image.py | 29 cmd = " ".join(["readelf", "-d", file_path]) 33 print(" ".join(["pid ", str(res[0]), " ret ", str(res[1]), "\n", 63 for path in [os.path.join(updater_root_path, "lib64"), os.path.join(updater_root_path, "lib")]: 66 lib_to_path[file] = os.path.join(root, file) 67 lib_to_path["updater"] = os.path.join(updater_root_path, "bin", "updater") 72 .format("->".join(lib_chain)))
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/test/ |
H A D | test_differential_fuzz_library.js | 16 path.join(__dirname, '..', 'resources', 'differential_fuzz_library.js')); 56 const long = new Array(66).join('a'); 57 const head = new Array(55).join('a'); 58 const tail = new Array(10).join('a'); 63 const veryLong = new Array(100).join('a'); 71 const long = new Array(66).join('a'); 76 const veryLong = new Array(100).join('a');
|
/third_party/node/test/parallel/ |
H A D | test-fs-append-file-sync.js | 25 const join = require('path').join; 43 const filename = join(tmpdir.path, 'append-sync.txt'); 52 const filename2 = join(tmpdir.path, 'append-sync2.txt'); 63 const filename3 = join(tmpdir.path, 'append-sync3.txt'); 73 const filename4 = join(tmpdir.path, 'append-sync4.txt'); 98 const filename5 = join(tmpdir.path, 'append-sync5.txt');
|
H A D | test-require-symlink.js | 23 const tmpDirTarget = path.join(tmpdir.path, dirName); 31 const fullPathSource = path.join(source, entry); 32 const fullPathTarget = path.join(target, entry); 49 const linkDir = path.join(dirName, 55 const linkTarget = path.join('..', '..', 'dep2'); 59 const linkScriptTarget = path.join(dirName, 'symlinked.js'); 68 const fooModule = require(path.join(tmpDirTarget, 'foo.js'));
|
/third_party/node/deps/npm/lib/utils/ |
H A D | format-search-stream.js | 58 author: data.maintainers.map((m) => `=${stripVTControlCharacters(m.username)}`).join(' '), 66 pkg.keywords = data.keywords.map((k) => stripVTControlCharacters(k)).join(' ') 76 return columns.map((col) => pkg[col] && ('' + pkg[col]).replace(/\t/g, ' ')).join('\t') 98 ).split('\n').map(line => line.slice(0, maxWidth)).join('\n') 125 }).join('') 130 output = output.split(String.fromCharCode(i)).join(`\u001B[${colors[i - 1]}`) 132 return output.split('\u0000').join('\u001B[0m').trim()
|
/third_party/rust/crates/cxx/macro/src/syntax/ |
H A D | mangle.rs | 81 macro_rules! join { macros 83 symbol::join(&[$(&$segment),+]) 91 join!( in extern_fn() 98 None => join!(efn.name.namespace, CXXBRIDGE, efn.name.rust), in extern_fn() 103 join!( in operator() 114 join!(extern_fn(efn, types), var.rust, 0) in operator() 119 join!(extern_fn(efn, types), var.rust, 1) in r_trampoline()
|
/third_party/rust/crates/cxx/gen/build/src/syntax/ |
H A D | mangle.rs | 81 macro_rules! join { macros 83 symbol::join(&[$(&$segment),+]) 91 join!( in extern_fn() 98 None => join!(efn.name.namespace, CXXBRIDGE, efn.name.rust), in extern_fn() 103 join!( in operator() 114 join!(extern_fn(efn, types), var.rust, 0) in operator() 119 join!(extern_fn(efn, types), var.rust, 1) in r_trampoline()
|
/third_party/rust/crates/cxx/gen/lib/src/syntax/ |
H A D | mangle.rs | 81 macro_rules! join { macros 83 symbol::join(&[$(&$segment),+]) 91 join!( in extern_fn() 98 None => join!(efn.name.namespace, CXXBRIDGE, efn.name.rust), in extern_fn() 103 join!( in operator() 114 join!(extern_fn(efn, types), var.rust, 0) in operator() 119 join!(extern_fn(efn, types), var.rust, 1) in r_trampoline()
|
/third_party/rust/crates/cxx/syntax/ |
H A D | mangle.rs | 81 macro_rules! join { macros 83 symbol::join(&[$(&$segment),+]) 91 join!( in extern_fn() 98 None => join!(efn.name.namespace, CXXBRIDGE, efn.name.rust), in extern_fn() 103 join!( in operator() 114 join!(extern_fn(efn, types), var.rust, 0) in operator() 119 join!(extern_fn(efn, types), var.rust, 1) in r_trampoline()
|
/third_party/rust/crates/cxx/gen/cmd/src/syntax/ |
H A D | mangle.rs | 81 macro_rules! join { macros 83 symbol::join(&[$(&$segment),+]) 91 join!( in extern_fn() 98 None => join!(efn.name.namespace, CXXBRIDGE, efn.name.rust), in extern_fn() 103 join!( in operator() 114 join!(extern_fn(efn, types), var.rust, 0) in operator() 119 join!(extern_fn(efn, types), var.rust, 1) in r_trampoline()
|
/third_party/pcre2/pcre2/doc/ |
H A D | pcre2_substitute.3 | 60 .\" JOIN 64 .\" JOIN 67 .\" JOIN 71 .\" JOIN 74 .\" JOIN 78 .\" JOIN 82 .\" JOIN
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | update_chrome_angle.py | 22 os.chdir(os.path.join(script_dir, "..")) 30 chrome_folder = os.path.join(os.environ['LOCALAPPDATA'], 'Google', 'Chrome SxS', 'Application') 47 binary_path = os.path.join(path, binary_name) 62 chrome_file = os.path.join(chrome_folder, str) 68 dest_folder = os.path.join(chrome_folder, sorted_chrome_bins[0]) 81 src = os.path.join(source_folder, filename) 85 dst = os.path.join(dest_folder, filename)
|
/third_party/skia/infra/bots/recipes/ |
H A D | test_canvaskit.py | 37 copy_dest = checkout_root.join('skia', 'modules', 'canvaskit', 43 'src': base_dir.join('canvaskit.js'), 44 'dst': copy_dest.join('canvaskit.js'), 47 'src': base_dir.join('canvaskit.wasm'), 48 'dst': copy_dest.join('canvaskit.wasm'), 51 recursive_read = [checkout_root.join('skia')] 72 script=checkout_root.join(INNER_KARMA_SCRIPT),
|
/third_party/skia/include/core/ |
H A D | SkStrokeRec.h | 40 SkPaint::Join getJoin() const { return (SkPaint::Join)fJoin; } in getJoin() 60 void setStrokeParams(SkPaint::Cap cap, SkPaint::Join join, SkScalar miterLimit) { in setStrokeParams() argument 62 fJoin = join; in setStrokeParams() 117 static SkScalar GetInflationRadius(SkPaint::Join, SkScalar miterLimit, SkPaint::Cap, 149 uint32_t fJoin : 15; // SkPaint::Join
|
/build/ |
H A D | prebuilts_download.py | 55 mark_file_dir = os.path.join(code_dir, unzip_dir) 57 mark_file_path = os.path.join(mark_file_dir, mark_file_name) 64 sha_sums256_path = os.path.join(os.path.dirname(check_url), sha_sums256) 90 dest_dir = os.path.join(code_dir, unzip_dir) 158 if pathlib.Path(os.path.join(root_dir, 'interface', 'sdk-js')).exists() or pathlib.Path( 159 os.path.join(root_dir, 'foundation', 'arkui')).exists() or pathlib.Path( 160 os.path.join(root_dir, 'arkcompiler')).exists(): 180 abs_unzip_dir = os.path.join(code_dir, unzip_dir) 191 local_file = os.path.join(bin_dir, '{}.{}'.format(md5_huaweicloud_url, bin_file)) 225 npm = os.path.join(arg [all...] |
/third_party/node/deps/v8/tools/unittests/ |
H A D | run_tests_test.py | 33 TEST_DATA_ROOT = os.path.join(TOOLS_ROOT, 'unittests', 'testdata') 34 RUN_TESTS_PY = os.path.join(TOOLS_ROOT, 'run-tests.py') 65 basedir = os.path.join(TEST_DATA_ROOT, baseroot) 67 builddir = os.path.join(tempbase, 'out', 'build') 68 testroot = os.path.join(tempbase, 'test') 70 shutil.copy(os.path.join(basedir, 'v8_build_config.json'), builddir) 71 shutil.copy(os.path.join(basedir, 'd8_mocked.py'), builddir) 73 for suite in os.listdir(os.path.join(basedir, 'test')): 74 os.makedirs(os.path.join(testroot, suite)) 75 for entry in os.listdir(os.path.join(basedi [all...] |
/third_party/node/tools/inspector_protocol/lib/ |
H A D | Values_cpp.template | 72 using {{"::".join(config.encoding_lib.namespace)}}::Error; 73 using {{"::".join(config.encoding_lib.namespace)}}::Status; 74 using {{"::".join(config.encoding_lib.namespace)}}::span; 76 using {{"::".join(config.encoding_lib.namespace + ['cbor'])}}::CBORTokenTag; 77 using {{"::".join(config.encoding_lib.namespace + ['cbor'])}}::CBORTokenizer; 78 using {{"::".join(config.encoding_lib.namespace + ['cbor'])}}::EncodeBinary; 79 using {{"::".join(config.encoding_lib.namespace + ['cbor'])}}::EncodeDouble; 80 using {{"::".join(config.encoding_lib.namespace + ['cbor'])}}::EncodeFalse; 81 using {{"::".join(config.encoding_lib.namespace + ['cbor'])}}::EncodeFromLatin1; 82 using {{"::".join(confi [all...] |
/third_party/python/Tools/scripts/ |
H A D | freeze_modules.py | 18 FROZEN_ONLY = os.path.join(ROOT_DIR, 'Tools', 'freeze', 'flag.py') 20 STDLIB_DIR = os.path.join(ROOT_DIR, 'Lib') 23 FROZEN_MODULES_DIR = os.path.join(ROOT_DIR, 'Python', 'frozen_modules') 24 DEEPFROZEN_MODULES_DIR = os.path.join(ROOT_DIR, 'Python', 'deepfreeze') 26 FROZEN_FILE = os.path.join(ROOT_DIR, 'Python', 'frozen.c') 27 MAKEFILE = os.path.join(ROOT_DIR, 'Makefile.pre.in') 28 PCBUILD_PROJECT = os.path.join(ROOT_DIR, 'PCbuild', '_freeze_module.vcxproj') 29 PCBUILD_FILTERS = os.path.join(ROOT_DIR, 'PCbuild', '_freeze_module.vcxproj.filters') 30 PCBUILD_PYTHONCORE = os.path.join(ROOT_DIR, 'PCbuild', 'pythoncore.vcxproj') 100 ntpath.join(*pat [all...] |
/build/hb/services/ |
H A D | gn.py | 83 gn_path = os.path.join(self.config.root_path, 'prebuilts/build-tools/{}-x86/bin/gn' 99 '--args={}'.format(' '.join(self._convert_args())), 105 ' '.join(self._convert_args()).replace('"', "\\\""), 106 ' '.join(gn_gen_cmd[3:])), 126 animation_thread.join() 140 if (os.path.exists(os.path.join(out_dir, "args.gn"))): 165 if (os.path.exists(os.path.join(out_dir, "args.gn"))): 189 if (os.path.exists(os.path.join(out_dir, "args.gn"))): 209 if (os.path.exists(os.path.join(out_dir, "args.gn"))): 250 if (os.path.exists(os.path.join(out_di [all...] |
/third_party/mbedtls/scripts/ |
H A D | generate_psa_constants.py | 246 return '\n '.join(map(self._make_return_case, 250 return '\n '.join(map(self._make_return_case, 254 return '\n '.join(map(self._make_return_case, 258 return '\n '.join(map(self._make_append_case, 276 return ''.join([make(k, d[k]) for k in sorted(d.keys())]) 281 return ''.join([make(k, d[k]) for k in sorted(d.keys())]) 284 return '\n '.join(map(self._make_return_case, 288 return '\n '.join(map(self._make_return_case, 292 return '\n '.join(map(self._make_append_case, 304 return ''.join([mak [all...] |
/third_party/ninja/misc/ |
H A D | write_fake_manifests.py | 49 return '_'.join(name) 74 return os.path.sep.join([ 80 return [(os.path.join(self.src_dir, path, s + '.cc'), 81 os.path.join('obj', path, '%s.%s.o' % (name, s))) 95 self.ninja_file_path = os.path.join( 99 self.output = os.path.join('lib' + self.name + '.a') 101 self.output = os.path.join(self.name) 111 compile_depends = os.path.join( 154 cc_path = os.path.join(root_dir, cc_filename) 260 with FileWriter(os.path.join(root_di [all...] |