/third_party/icu/icu4j/perf-tests/perldriver/ |
H A D | Output.pm | 288 my ($test, $args); 289 ($test, $args) = split(/,/, shift(@$j)); 300 print HTML "<td class=\"string\">".$args."</td>";
|
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
H A D | BreakIteratorPerformanceTest.java | 35 public static void main(String[] args) throws Exception { in main() argument 36 new BreakIteratorPerformanceTest().run(args); in main() 39 protected void setup(String[] args) { in setup() argument
|
/third_party/icu/icu4j/samples/src/com/ibm/icu/samples/shaping/ |
H A D | ArabicShapingSample.java | 17 * Invoke from a command line passing args and strings. Use '-help' to see description of arguments. 24 public static final void main(String[] args) { in main() argument 33 for (int i = 0; i < args.length; ++i) { in main() 34 String arg = args[i]; in main()
|
/third_party/mbedtls/scripts/ |
H A D | generate_ssl_debug_helpers.py | 407 args = parser.parse_args() 409 generate_ssl_debug_helpers(args.output_directory, args.mbedtls_root)
|
/third_party/ltp/docparse/ |
H A D | testinfo.pl | 137 my ($link, %args) = @_; 139 $args{text} //= $link; 140 $args{delimiter} //= ""; 142 return "xref:$link\[$args{text}\]$args{delimiter}\n";
|
/third_party/node/lib/internal/readline/ |
H A D | utils.js | 19 function CSI(strings, ...args) { 23 if (n < args.length) 24 ret += args[n];
|
/third_party/node/deps/v8/tools/ |
H A D | generate-ten-powers.scm | 180 *main-args*)) 228 (define *main-args* #f) 235 (define (my-main args) 236 (set! *main-args* args) 237 (args-parse (cdr args) 239 (("?") (args-parse-usage #f)) 241 (args-parse-usage #f)) 255 (args [all...] |
/third_party/node/test/js-native-api/test_error/ |
H A D | test_error.c | 8 napi_value args[1]; in checkError() local 9 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); in checkError() 12 NODE_API_CALL(env, napi_is_error(env, args[0], &r)); in checkError()
|
/third_party/node/deps/v8/tools/testrunner/testproc/ |
H A D | fuzzer.py | 355 def create_fuzzer_config(name, probability, *args, **kwargs): 359 analyzer_class(*args, **kwargs) if analyzer_class else None, 360 fuzzer_class(*args, **kwargs),
|
/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/ |
H A D | help.js | 145 const args = cmd._args.map(arg => humanReadableArgName(arg)).join(' '); 149 (args ? ' ' + args : '');
|
/third_party/node/deps/npm/node_modules/columnify/ |
H A D | index.js | 234 function mixin(...args) { 235 if (Object.assign) return Object.assign(...args) 236 return ObjectAssign(...args)
|
/third_party/node/deps/npm/node_modules/hosted-git-info/lib/ |
H A D | hosts.js | 5 const maybeJoin = (...args) => args.every(arg => arg) ? args.join('') : ''
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_test_arit.c | 348 LLVMTypeRef args[2] = { LLVMPointerType(vf32t, 0), LLVMPointerType(vf32t, 0) }; in build_unary_test_func() local 351 args, ARRAY_SIZE(args), 0)); in build_unary_test_func()
|
/third_party/icu/icu4c/source/test/perf/perldriver/ |
H A D | Output.pm | 288 my ($test, $args); 289 ($test, $args) = split(/,/, shift(@$j)); 300 print HTML "<td class=\"string\">".$args."</td>";
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | zconf.h | 241 # define OF(args) args
243 # define OF(args) ()
|
/third_party/node/deps/openssl/openssl/crypto/async/ |
H A D | async.c | 178 int (*func)(void *), void *args, size_t size) in ASYNC_start_job() 256 if (args != NULL) { in ASYNC_start_job() 264 memcpy(ctx->currjob->funcargs, args, size); in ASYNC_start_job() 177 ASYNC_start_job(ASYNC_JOB **job, ASYNC_WAIT_CTX *wctx, int *ret, int (*func)(void *), void *args, size_t size) ASYNC_start_job() argument
|
/third_party/rust/crates/clap/tests/builder/ |
H A D | tests.rs | 89 pub fn check_complex_output(args: &str, out: &str) { in check_complex_output() 92 .try_get_matches_from(args.split(' ').collect::<Vec<_>>()) in check_complex_output() 255 .args([Arg::new("test").short('s'), Arg::new("test2").short('l')]) in add_multiple_arg()
|
/third_party/python/Tools/scripts/ |
H A D | fixcid.py | 64 opts, args = getopt.getopt(sys.argv[1:], 'crs:') 70 if not args: # No arguments 80 for arg in args:
|
/third_party/python/Lib/asyncio/ |
H A D | futures.py | 321 return exceptions.CancelledError(*exc.args) 323 return exceptions.TimeoutError(*exc.args) 325 return exceptions.InvalidStateError(*exc.args)
|
/third_party/python/Lib/ctypes/test/ |
H A D | test_as_parameter.py | 56 args = [] 61 args.append(v) 68 self.assertEqual(args, expected)
|
/third_party/python/Lib/multiprocessing/ |
H A D | forkserver.py | 151 args = [exe] + util._args_from_interpreter_flags() 152 args += ['-c', cmd] 153 pid = util.spawnv_passfds(exe, args, fds_to_pass)
|
/third_party/openssl/crypto/async/ |
H A D | async.c | 178 int (*func)(void *), void *args, size_t size) in ASYNC_start_job() 256 if (args != NULL) { in ASYNC_start_job() 264 memcpy(ctx->currjob->funcargs, args, size); in ASYNC_start_job() 177 ASYNC_start_job(ASYNC_JOB **job, ASYNC_WAIT_CTX *wctx, int *ret, int (*func)(void *), void *args, size_t size) ASYNC_start_job() argument
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | export_targets.py | 77 def run_checked(*args, **kwargs): 78 print(' ', args, file=sys.stderr) 80 return subprocess.run(args, check=True, **kwargs)
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | TranslatorMetal.cpp | 265 TIntermSequence args; in insertSampleMaskWritingLogic() local 266 args.push_back(coverageMask); in insertSampleMaskWritingLogic() 268 TIntermAggregate::CreateFunctionCall(*sampleMaskWriteFunc, &args); in insertSampleMaskWritingLogic()
|
/third_party/vk-gl-cts/external/amber/src/tests/ |
H A D | run_tests.py | 317 self.options, self.args = parser.parse_args() 334 if self.args: 335 for filename in self.args:
|