Searched refs:arg (Results 1 - 25 of 2314) sorted by relevance

1234567891011>>

/external/toybox/tests/
H A Dgroupdel.test9 arg="&>/dev/null"
14 grep '^toyTestGroup:' /etc/group $arg && groupdel toyTestGroup $arg &&
17 grep '^toy1Test2Group3:' /etc/group $arg && groupdel toy1Test2Group3 $arg &&
20 grep '^987654321:' /etc/group $arg && groupdel 987654321 $arg &&
23 grep '^toy.1Test-2Group.3:' /etc/group $arg &&
24 groupdel toy.1Test-2Group.3 $arg && echo 'yes'" "yes\n" "" ""
26 grep '^toyTestGroup:' /etc/group $arg
[all...]
H A Dgroupadd.test14 arg="&>/dev/null"
19 grep '^toyTestGroup:' /etc/group $arg && groupdel toyTestGroup $arg &&
22 grep '^toy1Test2Group3:' /etc/group $arg && groupdel toy1Test2Group3 $arg &&
25 grep '^987654321:' /etc/group $arg && groupdel 987654321 $arg &&
28 grep '^toy.1Test-2Group.3:' /etc/group $arg &&
29 groupdel toy.1Test-2Group.3 $arg && echo 'yes'" "yes\n" "" ""
33 grep '^$_s210:' /etc/group $arg
[all...]
H A Duseradd.test16 arg="&>/dev/null"
24 testing "adduser user_name (text)" "useradd $user $arg ||
25 grep '^$user:' /etc/passwd $arg && [ -d /home/$user ] &&
27 userdel -r $user $arg
30 testing "adduser user_name (alphanumeric)" "useradd $user $arg ||
31 grep '^$user:' /etc/passwd $arg && [ -d /home/$user ] &&
33 userdel -r $user $arg
36 testing "adduser user_name (numeric)" "useradd $user $arg ||
37 grep '^$user:' /etc/passwd $arg && [ -d /home/$user ] &&
39 userdel -r $user $arg
[all...]
/external/clang/test/Sema/
H A Dtypedef-prototype.c4 typedef int unary_int_func(int arg);
7 int add_one(int arg) { argument
8 return arg + 1;
H A Dblock-sentinel-attribute.c3 void (^e) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (1,1))); variable
6 void (^bbad) (int arg, const char * format) __attribute__ ((__sentinel__)) ; // expected-warning {{'sentinel' attribute only supported for variadic blocks}}
7 bbad = ^void (int arg, const char * format) __attribute__ ((__sentinel__)) {} ; // expected-warning {{'sentinel' attribute only supported for variadic blocks}}
8 void (^b) (int arg, const char * format, ...) __attribute__ ((__sentinel__)) = // expected-note {{block has been explicitly marked sentinel here}}
9 ^ __attribute__ ((__sentinel__)) (int arg, const char * format, ...) {};
10 void (^z) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (2))) = ^ __attribute__ ((__sentinel__ (2))) (int arg, const char * format, ...) {}; // expected-note {{block has been explicitly marked sentinel here}}
13 void (^y) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (5))) = ^ __attribute__ ((__sentinel__ (5))) (int arg, const char * format, ...) {}; // expected-note {{block has been explicitly marked sentinel here}}
/external/clang/test/CodeGenCXX/
H A Dmember-init-assignment.cpp7 Foo(unsigned arg);
10 Foo::Foo(unsigned arg) : file_id(arg = 42) argument
13 // CHECK: define {{.*}} @_ZN3FooC2Ej(%struct.Foo* %this, i32 %arg) unnamed_addr
H A Ddebug-info-method2.cpp8 int bar(int arg) const;
11 int A::bar(int arg) const{
12 return arg+2;
H A D2004-11-27-FriendDefaultArgCrash.cpp7 friend void foo(int arg = 0) {};
/external/clang/test/CodeGen/
H A Ddebug-line-1.c11 int f(char* arg) { argument
12 int x = atoi(arg);
H A Dsystemz-abi.cpp7 struct agg_float_cpp pass_agg_float_cpp(struct agg_float_cpp arg) { return arg; } argument
H A Dmrtd.c5 void baz(int arg);
7 // CHECK: define x86_stdcallcc void @foo(i32 %arg) [[NUW:#[0-9]+]]
8 void foo(int arg) { argument
10 bar(arg);
12 baz(arg);
19 void qux(int arg, ...) { } argument
20 // CHECK: define void @qux(i32 %arg, ...)
H A Dsystemz-abi.c5 char pass_char(char arg) { return arg; } argument
8 short pass_short(short arg) { return arg; } argument
11 int pass_int(int arg) { return arg; } argument
14 long pass_long(long arg) { return arg; } argument
17 long long pass_longlong(long long arg) { return arg; } argument
20 pass_int128(__int128 arg) argument
23 pass_float(float arg) argument
26 pass_double(double arg) argument
29 pass_longdouble(long double arg) argument
35 pass_complex_char(_Complex char arg) argument
38 pass_complex_short(_Complex short arg) argument
41 pass_complex_int(_Complex int arg) argument
44 pass_complex_long(_Complex long arg) argument
47 pass_complex_longlong(_Complex long long arg) argument
50 pass_complex_float(_Complex float arg) argument
53 pass_complex_double(_Complex double arg) argument
56 pass_complex_longdouble(_Complex long double arg) argument
63 pass_agg_1byte(struct agg_1byte arg) argument
67 pass_agg_2byte(struct agg_2byte arg) argument
71 pass_agg_3byte(struct agg_3byte arg) argument
75 pass_agg_4byte(struct agg_4byte arg) argument
79 pass_agg_5byte(struct agg_5byte arg) argument
83 pass_agg_6byte(struct agg_6byte arg) argument
87 pass_agg_7byte(struct agg_7byte arg) argument
91 pass_agg_8byte(struct agg_8byte arg) argument
95 pass_agg_16byte(struct agg_16byte arg) argument
102 pass_agg_float(struct agg_float arg) argument
106 pass_agg_double(struct agg_double arg) argument
110 pass_agg_longdouble(struct agg_longdouble arg) argument
114 pass_agg_float_a8(struct agg_float_a8 arg) argument
118 pass_agg_float_a16(struct agg_float_a16 arg) argument
125 pass_agg_nofloat1(struct agg_nofloat1 arg) argument
129 pass_agg_nofloat2(struct agg_nofloat2 arg) argument
133 pass_agg_nofloat3(struct agg_nofloat3 arg) argument
[all...]
H A Dsystemz-abi-vector.c33 v1i8 pass_v1i8(v1i8 arg) { return arg; } argument
36 v2i8 pass_v2i8(v2i8 arg) { return arg; } argument
39 v4i8 pass_v4i8(v4i8 arg) { return arg; } argument
42 v8i8 pass_v8i8(v8i8 arg) { return arg; } argument
45 v16i8 pass_v16i8(v16i8 arg) { return arg; } argument
48 pass_v32i8(v32i8 arg) argument
51 pass_v1i16(v1i16 arg) argument
54 pass_v2i16(v2i16 arg) argument
57 pass_v4i16(v4i16 arg) argument
60 pass_v8i16(v8i16 arg) argument
63 pass_v1i32(v1i32 arg) argument
66 pass_v2i32(v2i32 arg) argument
69 pass_v4i32(v4i32 arg) argument
72 pass_v1i64(v1i64 arg) argument
75 pass_v2i64(v2i64 arg) argument
78 pass_v1i128(v1i128 arg) argument
81 pass_v1f32(v1f32 arg) argument
84 pass_v2f32(v2f32 arg) argument
87 pass_v4f32(v4f32 arg) argument
90 pass_v1f64(v1f64 arg) argument
93 pass_v2f64(v2f64 arg) argument
96 pass_v1f128(v1f128 arg) argument
[all...]
H A Dattr-minsize.cpp40 void test4(T arg) { argument
45 void test4<int>(int arg);
52 void test4<float>(float arg);
59 void test5(T arg) { argument
64 void test5<int>(int arg);
71 void test5<float>(float arg);
/external/valgrind/none/tests/
H A Dargs.stdout.exp0 arg 0: `./args'
2 arg 1: `a'
3 arg 2: `b'
4 arg 3: `1 2 3'
/external/llvm/test/DebugInfo/Inputs/
H A Ddwarfdump-test-32bit.elf.c5 int foo(int arg) { argument
6 int a = arg * 2;
10 int bar(int arg) { argument
11 int a = foo(arg) * foo(arg * 2);
/external/bison/lib/
H A Dquote.h31 char const *quote_n_mem (int n, char const *arg, size_t argsize);
36 char const *quote_mem (char const *arg, size_t argsize);
40 char const *quote_n (int n, char const *arg);
44 char const *quote (char const *arg);
H A Dsignbitd.c31 gl_signbitd (double arg) argument
43 m.value = arg;
46 return copysign (1.0, arg) < 0;
50 if (isnand (arg))
52 if (arg < 0.0)
54 else if (arg == 0.0)
58 double arg_mem = arg;
/external/v8/test/mjsunit/regress/
H A Dregress-crbug-157520.js31 var f = function(arg) {
32 arg = 2;
H A Dregress-crbug-244461.js30 function foo(arg) {
31 var a = arg();
H A Dregress-1122.js39 for (var arg = 0; arg < n ; arg++) {
40 if (arg != 0) source += ',';
41 source += 'arg' + arg;
43 source += ') { return arg' + (n - n % 2) / 2 + '; })(';
44 for (var arg = 0; arg < m ; arg
[all...]
/external/strace/
H A Dioctl.c87 evdev_decode_number(unsigned int arg) argument
89 unsigned int nr = _IOC_NR(arg);
91 if (_IOC_DIR(arg) == _IOC_WRITE) {
100 if (_IOC_DIR(arg) != _IOC_READ)
106 tprintf(", %u)", _IOC_SIZE(arg));
117 tprintf("EVIOCGNAME(%u)", _IOC_SIZE(arg));
120 tprintf("EVIOCGPHYS(%u)", _IOC_SIZE(arg));
123 tprintf("EVIOCGUNIQ(%u)", _IOC_SIZE(arg));
126 tprintf("EVIOCGPROP(%u)", _IOC_SIZE(arg));
129 tprintf("EVIOCGMTSLOTS(%u)", _IOC_SIZE(arg));
149 hiddev_decode_number(unsigned int arg) argument
185 ioctl_decode_command_number(unsigned int arg) argument
225 ioctl_decode(struct tcb *tcp, unsigned int code, long arg) argument
[all...]
/external/iproute2/ip/
H A Drtm_map.c59 int rtnl_rtntype_a2n(int *id, char *arg) argument
64 if (strcmp(arg, "local") == 0)
66 else if (strcmp(arg, "nat") == 0)
68 else if (matches(arg, "broadcast") == 0 ||
69 strcmp(arg, "brd") == 0)
71 else if (matches(arg, "anycast") == 0)
73 else if (matches(arg, "multicast") == 0)
75 else if (matches(arg, "prohibit") == 0)
77 else if (matches(arg, "unreachable") == 0)
79 else if (matches(arg, "blackhol
96 get_rt_realms(__u32 *realms, char *arg) argument
[all...]
/external/v8/src/
H A Dmacros.py102 macro IS_NULL(arg) = (arg === null);
103 macro IS_NULL_OR_UNDEFINED(arg) = (arg == null);
104 macro IS_UNDEFINED(arg) = (arg === (void 0));
105 macro IS_NUMBER(arg) = (typeof(arg) === 'number');
106 macro IS_STRING(arg) = (typeof(arg)
[all...]
/external/libvpx/libvpx/
H A Dargs.h20 struct arg { struct
45 struct arg arg_init(char **argv);
46 int arg_match(struct arg *arg_, const struct arg_def *def, char **argv);
47 const char *arg_next(struct arg *arg);
51 unsigned int arg_parse_uint(const struct arg *arg);
52 int arg_parse_int(const struct arg *arg);
53 struct vpx_rational arg_parse_rational(const struct arg *ar
[all...]

Completed in 2122 milliseconds

1234567891011>>