Home
last modified time | relevance | path

Searched defs:arg (Results 1 – 25 of 2586) sorted by relevance

12345678910>>...104

/third_party/rust/crates/clap/tests/
Dmacros.rs1 mod arg { module
4 let arg = clap::arg!(foo: --bar <NUM>); in name_explicit() localVariable
13 let arg = clap::arg!(--bar <NUM>); in name_from_long() localVariable
22 let arg = clap::arg!(<NUM>); in name_from_value() localVariable
43 let arg = clap::arg!(foo: -b); in short() localVariable
51 let arg = clap::arg!(foo: -'b'); in short() localVariable
59 let arg = clap::arg!(foo: -b ...); in short() localVariable
67 let arg = clap::arg!(foo: -b "How to use it"); in short() localVariable
81 let arg = clap::arg!(foo: -b --hello); in short_and_long() localVariable
90 let arg = clap::arg!(foo: -'b' --hello); in short_and_long() localVariable
[all …]
/third_party/rust/crates/clap/src/
Dmacros.rs210 let mut arg = $arg; localVariable
216 let arg = arg localVariable
219 let arg = $crate::arg_impl! { localVariable
233 let mut arg = $arg; localVariable
239 let arg = arg localVariable
242 let arg = $crate::arg_impl! { localVariable
258 let arg = $arg localVariable
261 let arg = $crate::arg_impl! { localVariable
277 let arg = $arg localVariable
280 let arg = $crate::arg_impl! { localVariable
[all …]
/third_party/typescript/tests/baselines/reference/
DfatarrowfunctionsOptionalArgs.js139 (function (arg) { return 2; }); argument
141 (function (arg) { return 2; }); argument
143 (function (arg) { argument
148 (function (arg) { return 4; }); argument
150 (function (arg) { return 5; }); argument
152 (function (arg) { argument
157 (function (arg) { return 7; }); argument
191 (function (arg) { return 22; }); argument
192 (function (arg) { argument
196 (function (arg) { return 24; }); argument
[all …]
DcontextuallyTypedObjectLiteralMethodDeclaration01.js39 method1: function (arg) { argument
42 method2: function (arg) { argument
51 method1: function (arg) { argument
54 method2: function (arg) { argument
61 method1: function (arg) { argument
64 method2: function (arg) { argument
71 method1: function (arg) { argument
74 method2: function (arg) { argument
DcontextuallyTypedClassExpressionMethodDeclaration02.js21 method1(arg) { argument
24 method2(arg) { argument
43 method1 = function (arg) { argument
46 method2 = function (arg) { argument
57 class_1.prototype.method1 = function (arg) { argument
60 class_1.prototype.method2 = function (arg) { argument
69 this.method1 = function (arg) { argument
72 this.method2 = function (arg) { argument
82 this.method1 = function (arg) { argument
85 this.method2 = function (arg) { argument
DspreadTypeVariable.js40 function f1(arg) { argument
43 function f2(arg) { argument
46 function f3(arg) { argument
49 function f4(arg) { argument
52 function f5(arg) { argument
55 function f6(arg) { argument
DcontextuallyTypedClassExpressionMethodDeclaration01.js17 static method1(arg) { argument
20 static method2(arg) { argument
39 static method1 = function (arg) { argument
42 static method2 = function (arg) { argument
53 class_1.method1 = function (arg) { argument
56 class_1.method2 = function (arg) { argument
69 _a.method1 = function (arg) { argument
87 _a.method2 = function (arg) { argument
DconditionalTypesExcessProperties.js3 arg: T property
5 arg?: undefined field
9 sa = { test: 'hi', arg: a }; // not excess (but currently still not assignable) property
10 sa = { test: 'bye', arg: a, arr: a } // excess property
16 sa = { test: 'hi', arg: a }; // not excess (but currently still not assignable) property
17 sa = { test: 'bye', arg: a, arr: a }; // excess property
/third_party/gstreamer/gstreamer/gst/printf/
Dvasnprintf.c405 int arg; in vasnprintf() local
423 int arg; in vasnprintf() local
711 #define SNPRINTF_BUF(arg) \ in vasnprintf() argument
731 #define SNPRINTF_BUF(arg) \ in vasnprintf() argument
752 int arg = a.arg[dp->arg_index].a.a_schar; in vasnprintf() local
758 unsigned int arg = a.arg[dp->arg_index].a.a_uchar; in vasnprintf() local
764 int arg = a.arg[dp->arg_index].a.a_short; in vasnprintf() local
770 unsigned int arg = a.arg[dp->arg_index].a.a_ushort; in vasnprintf() local
776 int arg = a.arg[dp->arg_index].a.a_int; in vasnprintf() local
782 unsigned int arg = a.arg[dp->arg_index].a.a_uint; in vasnprintf() local
[all …]
/third_party/node/deps/npm/node_modules/core-util-is/lib/
Dutil.js25 function isArray(arg) { argument
33 function isBoolean(arg) { argument
38 function isNull(arg) { argument
43 function isNullOrUndefined(arg) { argument
48 function isNumber(arg) { argument
53 function isString(arg) { argument
58 function isSymbol(arg) { argument
63 function isUndefined(arg) { argument
73 function isObject(arg) { argument
88 function isFunction(arg) { argument
[all …]
/third_party/node/deps/npm/node_modules/assert-plus/
Dassert.js21 function _toss(name, expected, oper, arg, actual) { argument
31 function _getClass(arg) { argument
44 check: function (arg) { return typeof (arg) === 'boolean'; } argument
47 check: function (arg) { return typeof (arg) === 'function'; } argument
50 check: function (arg) { return typeof (arg) === 'string'; } argument
53 check: function (arg) { argument
58 check: function (arg) { argument
63 check: function (arg) { argument
68 check: function (arg) { return Buffer.isBuffer(arg); }, argument
72 check: function (arg) { return Array.isArray(arg); }, argument
[all …]
/third_party/musl/libc-test/src/functional/
Dpthread_cancel-points.c23 static void prepare_sem(void *arg) in prepare_sem()
28 static void cleanup_sem(void *arg) in cleanup_sem()
33 static void execute_sem_wait(void *arg) in execute_sem_wait()
38 static void execute_sem_timedwait(void *arg) in execute_sem_timedwait()
48 static void *run_test(void *arg) in run_test()
54 static void prepare_thread(void *arg) in prepare_thread()
60 static void cleanup_thread(void *arg) in cleanup_thread()
71 static void execute_thread_join(void *arg) in execute_thread_join()
77 static void prepare_dummy(void *arg) in prepare_dummy()
81 static void execute_shm_open(void *arg) in execute_shm_open()
[all …]
Dpthread_cancel.c10 static void *start_async(void *arg) in start_async()
18 static void cleanup1(void *arg) in cleanup1()
23 static void cleanup2(void *arg) in cleanup2()
28 static void cleanup3(void *arg) in cleanup3()
33 static void cleanup4(void *arg) in cleanup4()
38 static void *start_single(void *arg) in start_single()
46 static void *start_nested(void *arg) in start_nested()
/third_party/ltp/testcases/kernel/containers/libclone/
Dlibclone.c19 int do_clone_tests(unsigned long clone_flags, in do_clone_tests()
38 int do_unshare_tests(unsigned long clone_flags, in do_unshare_tests()
89 int do_plain_tests(int (*fn1) (void *arg), void *arg1, in do_plain_tests()
106 int do_clone_unshare_test(int use_clone, unsigned long clone_flags, in do_clone_unshare_test()
126 int do_clone_unshare_tests(int use_clone, unsigned long clone_flags, in do_clone_unshare_tests()
/third_party/ltp/lib/
Dcloner.c54 # define clone(fn, stack, flags, arg, ptid, tls, ctid) \ argument
65 ltp_clone_(unsigned long flags, int (*fn)(void *arg), void *arg, in ltp_clone_()
93 int ltp_clone(unsigned long flags, int (*fn)(void *arg), void *arg, in ltp_clone()
99 int ltp_clone7(unsigned long flags, int (*fn)(void *arg), void *arg, in ltp_clone7()
143 ltp_clone_alloc(unsigned long clone_flags, int (*fn) (void *arg), void *arg, in ltp_clone_alloc()
170 int ltp_clone_quick(unsigned long clone_flags, int (*fn) (void *arg), void *arg) in ltp_clone_quick()
/third_party/flutter/skia/third_party/externals/sdl/test/
Dtestautomation_keyboard.c22 keyboard_getKeyboardState(void *arg) in keyboard_getKeyboardState()
48 keyboard_getKeyboardFocus(void *arg) in keyboard_getKeyboardFocus()
65 keyboard_getKeyFromName(void *arg) in keyboard_getKeyFromName()
132 keyboard_getKeyFromScancode(void *arg) in keyboard_getKeyFromScancode()
171 keyboard_getKeyName(void *arg) in keyboard_getKeyName()
227 keyboard_getScancodeNameNegative(void *arg) in keyboard_getScancodeNameNegative()
254 keyboard_getKeyNameNegative(void *arg) in keyboard_getKeyNameNegative()
292 keyboard_getSetModState(void *arg) in keyboard_getSetModState()
353 keyboard_startStopTextInput(void *arg) in keyboard_startStopTextInput()
399 keyboard_setTextInputRect(void *arg) in keyboard_setTextInputRect()
[all …]
/third_party/musl/libc-test/src/functionalext/thread/
Dpthread_rwlock_rdlock.c23 static void *PthreadClockRdlockNoOutRealTimeW1(void *arg) in PthreadClockRdlockNoOutRealTimeW1()
31 static void *PthreadClockRdlockNoOutRealTimeR2(void *arg) in PthreadClockRdlockNoOutRealTimeR2()
63 static void *PthreadClockRdlockOutRealTimeW1(void *arg) in PthreadClockRdlockOutRealTimeW1()
72 static void *PthreadClockRdlockOutRealTimeR2(void *arg) in PthreadClockRdlockOutRealTimeR2()
108 static void *PthreadClockRdlockNoOutMonoTimeW1(void *arg) in PthreadClockRdlockNoOutMonoTimeW1()
116 static void *PthreadClockRdlockNoOutMonoTimeR2(void *arg) in PthreadClockRdlockNoOutMonoTimeR2()
148 static void *PthreadClockRdlockOutMonoTimeW1(void *arg) in PthreadClockRdlockOutMonoTimeW1()
157 static void *PthreadClockRdlockOutMonoTimeR2(void *arg) in PthreadClockRdlockOutMonoTimeR2()
192 static void *PthreadTimedRdlockMonoNPNoOutW1(void *arg) in PthreadTimedRdlockMonoNPNoOutW1()
200 static void *PthreadTimedRdlockMonoNPNoOutR2(void *arg) in PthreadTimedRdlockMonoNPNoOutR2()
[all …]
/third_party/skia/third_party/externals/libpng/contrib/tools/
Dgenpng.c112 color_of(const char *arg) in color_of()
127 width_of(const char *arg) in width_of()
146 coordinate_of(const char *arg) in coordinate_of()
174 struct arg struct
176 const struct color *color;
177 shape_fn_ptr inside_fn;
178 shape_fn_ptr check_fn;
179 double width; /* line width, 0 for 'filled' */
180 double x1, y1, x2, y2;
295 alpha_calc(const struct arg *arg, double x, double y) in alpha_calc()
[all …]
/third_party/flutter/skia/third_party/externals/libpng/contrib/tools/
Dgenpng.c112 color_of(const char *arg) in color_of()
127 width_of(const char *arg) in width_of()
146 coordinate_of(const char *arg) in coordinate_of()
174 struct arg struct
176 const struct color *color;
177 shape_fn_ptr inside_fn;
178 shape_fn_ptr check_fn;
179 double width; /* line width, 0 for 'filled' */
180 double x1, y1, x2, y2;
295 alpha_calc(const struct arg *arg, double x, double y) in alpha_calc()
[all …]
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_hiTraceChain.js58 begin: function(...arg) {
62 end: function(...arg) {
65 getId: function(...arg) {
69 setId: function(...arg) {
72 clearId: function(...arg) {
75 createSpan: function(...arg) {
79 tracepoint: function(...arg) {
82 isValid: function(...arg) {
86 isFlagEnabled: function(...arg) {
90 enableFlag: function(...arg) {
/third_party/ltp/tools/sparse/sparse-src/
Doptions.c145 static const char *match_option(const char *arg, const char *prefix) in match_option()
159 static int handle_subopt_val(const char *opt, const char *arg, const struct val_map *map, int *flag) in handle_subopt_val()
198 static int handle_suboption_mask(const char *arg, const char *opt, const struct mask_map *map, unsi… in handle_suboption_mask()
240 const char *arg = opt; in handle_switches() local
279 static char **handle_onoff_switch(char *arg, char **next, const struct flag flags[]) in handle_onoff_switch()
314 static int handle_switch_setval(const char *arg, const char *opt, const struct flag *flag, int opti… in handle_switch_setval()
357 static char **handle_switch_D(char *arg, char **next) in handle_switch_D()
384 static char **handle_switch_d(char *arg, char **next) in handle_switch_d()
415 static char **handle_switch_E(char *arg, char **next) in handle_switch_E()
422 static int handle_ftabstop(const char *arg, const char *opt, const struct flag *flag, int options) in handle_ftabstop()
[all …]
/third_party/cups-filters/scripting/perl/
DCUPS.xs19 constant_PPD_M(char *name, int len, int arg) in constant_PPD_M()
60 constant_P(char *name, int len, int arg) in constant_P()
89 constant_H(char *name, int len, int arg) in constant_H()
138 constant_IPP_M(char *name, int len, int arg) in constant_IPP_M()
171 constant_I(char *name, int len, int arg) in constant_I()
200 constant_C(char *name, int len, int arg) in constant_C()
233 constant(char *name, int len, int arg) in constant()
/third_party/rust/crates/clap/tests/derive/
Doptions.rs27 arg: i32, in required_option() field
54 arg: i32, in option_with_default() field
73 arg: i32, in option_with_raw_default() field
174 arg: Option<i32>, in option_type_is_optional() field
237 arg: ::std::option::Option<String>, in ignore_qualified_option_type() field
255 arg: Option<Option<i32>>, in option_option_type_is_optional_value() field
282 arg: Option<Option<i32>>, in option_option_type_help() field
295 arg: Option<Option<i32>>, in two_option_option_types() field
350 arg: Vec<i32>, in vec_type_is_multiple_occurrences() field
369 arg: Vec<i32>, in vec_type_with_required() field
[all …]
/third_party/python/Lib/
Dpdb.py520 def do_commands(self, arg): argument
599 def do_break(self, arg, temporary = 0): argument
704 def do_tbreak(self, arg): argument
768 def do_enable(self, arg): argument
785 def do_disable(self, arg): argument
805 def do_condition(self, arg): argument
832 def do_ignore(self, arg): argument
867 def do_clear(self, arg): argument
918 def do_where(self, arg): argument
936 def do_up(self, arg): argument
[all …]
/third_party/python/Modules/clinic/
Dcmathmodule.c.h18 cmath_acos(PyObject *module, PyObject *arg) in cmath_acos()
60 cmath_acosh(PyObject *module, PyObject *arg) in cmath_acosh()
102 cmath_asin(PyObject *module, PyObject *arg) in cmath_asin()
144 cmath_asinh(PyObject *module, PyObject *arg) in cmath_asinh()
186 cmath_atan(PyObject *module, PyObject *arg) in cmath_atan()
228 cmath_atanh(PyObject *module, PyObject *arg) in cmath_atanh()
270 cmath_cos(PyObject *module, PyObject *arg) in cmath_cos()
312 cmath_cosh(PyObject *module, PyObject *arg) in cmath_cosh()
354 cmath_exp(PyObject *module, PyObject *arg) in cmath_exp()
396 cmath_log10(PyObject *module, PyObject *arg) in cmath_log10()
[all …]

12345678910>>...104