/third_party/node/test/js-native-api/test_date/ |
H A D | test_date.c | 7 napi_value args[1]; in createDate() local 8 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); in createDate() 13 NODE_API_CALL(env, napi_typeof(env, args[0], &valuetype0)); in createDate() 19 NODE_API_CALL(env, napi_get_value_double(env, args[0], &time)); in createDate()
|
/third_party/node/test/parallel/ |
H A D | test-fs-stream-construct-compat-old-node.js | 14 function ReadStream(...args) { 15 fs.ReadStream.call(this, ...args); 58 function WriteStream(...args) { 59 fs.WriteStream.call(this, ...args);
|
H A D | test-fs-stream-construct-compat-graceful-fs.js | 14 function ReadStream(...args) { 15 fs.ReadStream.call(this, ...args); 46 function WriteStream(...args) { 47 fs.WriteStream.call(this, ...args);
|
H A D | test-process-emitwarning.js | 46 ].forEach((args) => { 47 process.emitWarning(...args); 76 ].forEach((args) => { 78 () => process.emitWarning(...args),
|
/third_party/node/test/addons/request-interrupt/ |
H A D | binding.cc | 18 void ScheduleInterrupt(const FunctionCallbackInfo<Value>& args) { in ScheduleInterrupt() argument 19 Isolate* isolate = args.GetIsolate(); in ScheduleInterrupt() 36 void ScheduleInterruptWithJS(const FunctionCallbackInfo<Value>& args) { in ScheduleInterruptWithJS() argument 37 Isolate* isolate = args.GetIsolate(); in ScheduleInterruptWithJS()
|
/third_party/node/deps/npm/node_modules/function-bind/ |
H A D | implementation.js | 47 var args = slicy(arguments, 1); 54 concatty(args, arguments) 63 concatty(args, arguments) 68 var boundLength = max(0, target.length - args.length);
|
/third_party/ltp/testcases/kernel/syscalls/mmap/ |
H A D | mmap11.c | 63 static void *wait_thread(void *args); 64 static void *wait_thread2(void *args); 128 void *wait_thread(void *args) in wait_thread() argument 139 void *wait_thread2(void *args) in wait_thread2() argument
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-symbol.cc | 20 if (!args.new_target()->IsUndefined(isolate)) { // [[Construct]] in BUILTIN() 27 Handle<Object> description = args.atOrUndefined(isolate, 1); in BUILTIN() 39 Handle<Object> key_obj = args.atOrUndefined(isolate, 1); in BUILTIN() 49 Handle<Object> obj = args.atOrUndefined(isolate, 1); in BUILTIN()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | vfwscanf.c | 36 va_list args; in read_from_file() local 37 va_start(args, format); in read_from_file() 38 int result = vfwscanf(fp, format, args); in read_from_file() 39 va_end(args); in read_from_file()
|
/third_party/python/Tools/scripts/ |
H A D | findnocoding.py | 19 def walk_python_files(self, paths, *args, **kwargs): 83 opts, args = getopt.getopt(sys.argv[1:], 'cd') 98 if not args: 102 for fullpath in pysource.walk_python_files(args, is_python):
|
/third_party/python/Lib/asyncio/ |
H A D | trsock.py | 70 def getsockopt(self, *args, **kwargs): 71 return self._sock.getsockopt(*args, **kwargs) 73 def setsockopt(self, *args, **kwargs): 74 self._sock.setsockopt(*args, **kwargs)
|
/third_party/python/Lib/lib2to3/fixes/ |
H A D | fix_raise.py | 68 args = [c.clone() for c in val.children[1:-1]] 71 args = [val] 82 e = Call(exc, args) 89 [Name("raise"), Call(exc, args)],
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | json_validate.py | 27 args = ParseArgs() 33 if not os.path.exists(args.json_file): 34 print('Error: json file \"%s\" does not exist.' % args.json_file) 48 with open(args.json_file) as jsonFile:
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
H A D | check_symbol_exports.py | 104 args = parser.parse_args() 106 if not os.path.isfile(args.library): 107 print('{}: error: {} does not exist'.format(PROG, args.library)) 111 status = check_library(args.library)
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/shaders/ |
H A D | gen_mtl_internal_shaders.py | 117 args = [clang] 119 args += ['-xc++'] 120 args += ['-E', temp_fname] 122 combined_source = subprocess.check_output(args)
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
H A D | check_symbol_exports.py | 104 args = parser.parse_args() 106 if not os.path.isfile(args.library): 107 print('{}: error: {} does not exist'.format(PROG, args.library)) 111 status = check_library(args.library)
|
/third_party/skia/third_party/externals/dawn/src/tests/ |
H A D | MockCallback.h | 67 static R CallUnboundCallback(Args... args) { in CallUnboundCallback() argument 68 std::tuple<Args...> tuple = std::make_tuple(args...); in CallUnboundCallback() 94 R CallImpl(const std::index_sequence<Is...>&, std::tuple<Args...> args) { in CallImpl() argument 95 return this->Call(std::get<Is>(args)...); in CallImpl()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
H A D | ObjectContentHasher.h | 31 void Record(const T& value, const Args&... args) { in Record() argument 32 RecordImpl<T, Args...>::Call(this, value, args...); in Record() 42 const Args&... args) { in Call() 43 HashCombine(&recorder->mContentHash, value, args...); in Call()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | callOfConditionalTypeWithConcreteBranches.js | 35 type X<V> = V extends (...args: any[]) => any ? (...args: Parameters<V>) => void : Function; 39 [K in keyof Target]: Target[K] extends (...args: any[]) => void 40 ? (...args: Parameters<Target[K]>) => void
|
H A D | aliasOfGenericFunctionWithRestBehavedSameAsUnaliased.js | 4 type ExtendedMapper<HandledInputT, OutputT, ArgsT extends any[]> = (name : string, mixed : HandledInputT, ...args : ArgsT) => OutputT; 12 (name : string, mixed : HandledInputT, ...args : ArgsT) => OutputT 21 {x:(name : string, mixed : HandledInputT, ...args : ArgsT) => OutputT}["x"] 30 type b3 = (name: string, mixed: any, ...args: any[]) => any
|
/third_party/python/Lib/test/test_tools/ |
H A D | test_fixcid.py | 37 args=("-c", "-",), 70 output = self.run_script(args=(os_helper.TESTFN,)) 78 def run_script(self, input="", *, args=("-",), substfile="xx yy\n"): 84 argv = ["fixcid.py", "-s", substfilename] + list(args)
|
/third_party/skia/infra/bots/recipes/ |
H A D | test_lottie_web.py | 61 args = [ 73 args.extend([ 85 args=args,
|
H A D | test_canvaskit.py | 53 args = [ 62 args.extend([ 73 args=args,
|
/third_party/skia/gm/ |
H A D | fpcoordinateoverride.cpp | 64 void emitCode(EmitArgs& args) override { in onMakeProgramImpl() 65 GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder; in onMakeProgramImpl() 66 SkString s1 = this->invokeChild(0, args, "float2(sk_FragCoord.x, sk_FragCoord.y)"); in onMakeProgramImpl() 67 SkString s2 = this->invokeChild(0, args, "float2(sk_FragCoord.x, 512-sk_FragCoord.y)"); in onMakeProgramImpl()
|
/third_party/spirv-tools/utils/ |
H A D | check_symbol_exports.py | 104 args = parser.parse_args() 106 if not os.path.isfile(args.library): 107 print('{}: error: {} does not exist'.format(PROG, args.library)) 111 status = check_library(args.library)
|