| /third_party/node/tools/icu/ |
| H A D | icutrim.py | 133 outfile = os.path.join(options.tmpdir, options.outfile) 149 cmd = os.path.join(options.toolpath, tool) + " " + cmd 184 listfile = os.path.join(options.tmpdir,"icudata.lst") 286 treelistfile = os.path.join(options.tmpdir,"%s.lst" % tree) 307 hackerrfile=os.path.join(options.tmpdir, "REMOVE.err") 308 removefile = os.path.join(options.tmpdir, "REMOVE.lst") 310 fi.write('\n'.join(remove).encode("utf-8") + b'\n') 348 treebunddir = os.path.join(treebunddir, trees[tree]["treeprefix"]) 351 treebundres = os.path.join(treebunddir,RES_INDX)
|
| /third_party/node/deps/npm/node_modules/read-package-json/lib/ |
| H A D | read-json.js | 247 fs.access(path.join(dir, 'server.js'), (err) => { 340 path.relative(dirname, path.join(cwd, man)).split(path.sep).join('/') 355 m = path.resolve(path.dirname(file), path.join('.', path.join('/', m))) 366 acc[f] = path.join(m, mf) 540 path.join(path.dirname(index), path.basename(index, path.extname(index))) 542 var dtsPath = path.join(path.dirname(file), dts) 545 data.types = dts.split(path.sep).join('/')
|
| /third_party/node/deps/npm/node_modules/npm-packlist/lib/ |
| H A D | index.js | 5 const { basename, dirname, extname, join, relative, resolve, sep } = require('path') 45 const normalizePath = (path) => path.split('\\').join('/') 50 const ignoreContent = readFile(join(root, file), { encoding: 'utf8' }) 71 const newRoot = join(root, firstRel) 72 const newRel = relative(newRoot, join(root, rel)) 208 const entryPath = join(this.path, entry).replace(/\\/g, '/') 265 this.onReadIgnoreFile(filename, `${rules.join('\n')}\n`, callback) 310 const stat = lstat(join(this.path, file.replace(/^!+/, '')).replace(/\\/g, '/')) 437 this.result.add(join(relativeFrom, file).replace(/\\/g, '/'))
|
| /third_party/lwip/src/core/ipv6/ |
| H A D | mld6.c | 301 * Join a group on one or all network interfaces. 309 * join a new group. If IP6_ADDR_ANY6, join on all netifs 310 * @param groupaddr the ipv6 address of the group to join (possibly but not 328 /* Should we join this interface ? */ 343 * Join a group on a network interface. 345 * @param netif the network interface which should join a new group. 346 * @param groupaddr the ipv6 address of the group to join (possibly but not 627 * We must join the multicast group, but we don't have a valid address yet. */
|
| /third_party/python/Lib/distutils/ |
| H A D | unixccompiler.py | 163 output_filename = os.path.join(output_dir, output_filename) 301 shared = os.path.join(dir, shared_f) 302 dylib = os.path.join(dir, dylib_f) 303 static = os.path.join(dir, static_f) 304 xcode_stub = os.path.join(dir, xcode_stub_f) 310 shared = os.path.join(sysroot, dir[1:], shared_f) 311 dylib = os.path.join(sysroot, dir[1:], dylib_f) 312 static = os.path.join(sysroot, dir[1:], static_f) 313 xcode_stub = os.path.join(sysroot, dir[1:], xcode_stub_f)
|
| /third_party/skia/third_party/externals/spirv-cross/ |
| H A D | spirv_cpp.cpp | 46 join("s.register_resource(", instance_name, "__", ", ", descriptor_set, ", ", binding, ");")); in emit_buffer_block() 73 resource_registrations.push_back(join("s.register_", lowerqual, "(", instance_name, "__", ", ", location, ");")); in emit_interface_block() 106 join("s.register_resource(", instance_name, "__", ", ", descriptor_set, ", ", binding, ");")); in emit_uniform() 113 join("s.register_uniform_constant(", instance_name, "__", ", ", location, ");")); in emit_uniform() 135 resource_registrations.push_back(join("s.register_push_constant(", instance_name, "__", ");")); in emit_push_constant_block() 461 base = join("std::array<", base, ", ", to_array_size(type, i), ">"); in argument_decl() 463 return join(constref ? "const " : "", base, " &", variable_name); in argument_decl() 482 base = join("std::array<", base, ", ", to_array_size(type, i), ">"); in variable_decl() 540 impl_type = join("ComputeShader<Impl::Shader, Impl::Shader::Resources, ", execution.workgroup_size.x, ", ", in emit_header()
|
| /third_party/skia/third_party/externals/dawn/generator/ |
| H A D | generator_lib.py | 87 path = os.path.join(sys.argv[jinja2_path_argv_index + 1], os.pardir) 104 path = os.path.join(self.path, template) 141 return '\n'.join(result) + '\n' 196 root_dir = os.path.join(os.path.dirname(__file__), os.pardir) 299 " ".join(dependencies)) 302 sys.stdout.write(";".join(dependencies)) 321 sys.stdout.write(";".join([ 322 os.path.join(args.output_dir, render.output) for render in renders 366 output_path = os.path.join(args.output_dir, output.name)
|
| /third_party/skia/tools/calmbench/ |
| H A D | ab.py | 141 def join(self, timeout=None): member in ThreadWithException 142 super(ThreadWithException, self).join(timeout) 179 t.join() 189 ts.join() 274 return " --match " + (" ".join(patterns)) 387 ' '.join(map(str, get_lower_upper(ta))) + ", " + 388 ' '.join(map(str, get_lower_upper(tb))) + ", " + 389 ("%s, %s\n" % (' '.join(map(str, ta)), ' '.join(map(str, tb))))
|
| /third_party/python/Lib/test/test_importlib/ |
| H A D | test_namespace_pkgs.py | 62 root = os.path.join(os.path.dirname(__file__), 'namespace_pkgs') 66 os.path.join(self.root, path) for path in self.paths 102 sys.path.append(os.path.join(self.root, 'portion2')) 147 namespace_path = os.path.join(temp_dir, 'foo') 149 module_path = os.path.join(namespace_path, 'just_created.py') 230 fn = os.path.join('nested_portion1.zip', 'nested_portion1') 281 sys.path.append(os.path.join(self.root, 'project3')) 348 sys.path.append(os.path.join(self.root, 'portion2')) 374 expected_path = os.path.join(self.root, 'portion1', 'foo')
|
| /third_party/skia/experimental/tools/ |
| H A D | pdf-comparison.py | 112 yield os.path.join(rp, f) 194 t.join() 202 directory = os.path.join(tempfile.gettempdir(), 'skpdf_control_tree') 225 return os.path.join(build_dir, executable) 230 os.makedirs(os.path.join(data_dir, PDF_CONFIG, source)) 262 cpath, epath = (os.path.join(x, path) for x in (con, exp)) 279 [os.path.join(x, p) for p in differing_paths for x in [con, exp]]) 298 cpath, epath = (os.path.join(x, path) for x in (con, exp)) 321 os.makedirs(os.path.join(con, REFERENCE_BACKEND, source))
|
| /foundation/ability/dmsfwk/services/dtbschedmgr/test/samples/continuationManualTestSuite/entry/src/main/ets/MainAbility/ |
| H A D | Logger.ts | 22 console.debug(`[${this.prefix}] ${args.join('')}`);
25 console.log(`[${this.prefix}] ${args.join('')}`);
28 console.error(`[${this.prefix}] ${args.join('')}`);
|
| /foundation/ability/dmsfwk/services/dtbschedmgr/test/missionCenterDemo/dmsDemo/entry/src/main/ets/Util/ |
| H A D | Logger.ts | 22 console.debug(`[${this.prefix}] ${args.join('')}`); 25 console.log(`[${this.prefix}] ${args.join('')}`); 28 console.error(`[${this.prefix}] ${args.join('')}`);
|
| /foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/ |
| H A D | disableProfiler.pegjs | 15 = code:code+ { return code.join(""); } 31 = "(" c:logChar* ")" { return `(${c.join("")})`; } 32 / "/*" c:logChar* "*/" { return `**${c.join("")}**`; }
|
| /third_party/node/test/parallel/ |
| H A D | test-fs-readfile-flags.js | 13 const emptyFile = path.join(tmpdir.path, 'empty.txt'); 32 const willBeCreated = path.join(tmpdir.path, 'will-be-created'); 43 const willNotBeCreated = path.join(tmpdir.path, 'will-not-be-created');
|
| H A D | test-fs-write-file-typedarrays.js | 5 const join = require('path').join; 10 const filename = join(tmpdir.path, 'test.txt');
|
| H A D | test-fs-write-negativeoffset.js | 8 join, 23 const filename = join(tmpdir.path, 'test.txt'); 39 const filename2 = join(tmpdir.path, 'test2.txt');
|
| H A D | test-http-missing-header-separator-cr.js | 42 ].join('\r\n'); 60 ].join('\r\n'); 78 ].join('\r\n');
|
| H A D | test-http-missing-header-separator-lf.js | 42 ].join('\r\n'); 60 ].join('\r\n'); 78 ].join('\r\n');
|
| H A D | test-preload-print-process-argv.js | 10 const { join } = require('path'); 17 join(tmpdir.path, 'preload.js'), 22 join(tmpdir.path, 'main.js'),
|
| H A D | test-snapshot-argv1.js | 13 const blobPath = path.join(tmpdir.path, 'snapshot.blob'); 20 fs.writeFileSync(path.join(tmpdir.path, 'entry.js'), code, 'utf8'); 34 const stats = fs.statSync(path.join(tmpdir.path, 'snapshot.blob'));
|
| H A D | test-snapshot-namespaced-builtin.js | 13 const blobPath = path.join(tmpdir.path, 'snapshot.blob'); 23 path.join(tmpdir.path, 'entry.js'), 40 const stats = fs.statSync(path.join(tmpdir.path, 'snapshot.blob'));
|
| /third_party/node/deps/v8/third_party/inspector_protocol/lib/ |
| H A D | Object_h.template | 7 #ifndef {{"_".join(config.protocol.namespace)}}_Object_h 8 #define {{"_".join(config.protocol.namespace)}}_Object_h 43 #endif // !defined({{"_".join(config.protocol.namespace)}}_Object_h)
|
| H A D | base_string_adapter_h.template | 7 #ifndef {{"_".join(config.protocol.namespace)}}_BASE_STRING_ADAPTER_H 8 #define {{"_".join(config.protocol.namespace)}}_BASE_STRING_ADAPTER_H 48 #endif // !defined({{"_".join(config.protocol.namespace)}}_BASE_STRING_ADAPTER_H)
|
| /third_party/node/deps/v8/tools/gcmole/ |
| H A D | run-gcmole.py | 13 CLANG_BIN = os.path.join(GCMOLE_PATH, 'gcmole-tools', 'bin') 14 CLANG_PLUGINS = os.path.join(GCMOLE_PATH, 'gcmole-tools') 15 DRIVER = os.path.join(GCMOLE_PATH, 'gcmole.py')
|
| /third_party/node/test/addons/symlinked-module/ |
| H A D | test.js | 18 const addonPath = path.join(__dirname, 'build', common.buildType); 19 const addonLink = path.join(tmpdir.path, 'addon'); 30 const mod = require(path.join(i, 'binding.node'));
|