HomeSort by relevance Sort by last modified time
    Searched full:argument (Results 51 - 75 of 15492) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
acpiioct.h 67 ULONG Argument;
81 ACPI_METHOD_ARGUMENT Argument[ANYSIZE_ARRAY];
88 ACPI_METHOD_ARGUMENT Argument[ANYSIZE_ARRAY];
120 ACPI_METHOD_ARGUMENT Argument[ANYSIZE_ARRAY];
147 #define ACPI_METHOD_ARGUMENT_LENGTH_FROM_ARGUMENT( Argument ) \
148 (ACPI_METHOD_ARGUMENT_LENGTH(((PACPI_METHOD_ARGUMENT)Argument)->DataLength))
150 #define ACPI_METHOD_NEXT_ARGUMENT( Argument ) \
151 (PACPI_METHOD_ARGUMENT) ( (PUCHAR) Argument + \
152 ACPI_METHOD_ARGUMENT_LENGTH_FROM_ARGUMENT( Argument ) )
158 MethodArgument->Argument = IntData;
    [all...]
  /external/clang/test/CXX/temp/temp.arg/temp.arg.type/
p2.cpp 14 enum {e}; // expected-note{{unnamed type used in template argument was declared here}}
17 int i = f0(0, e); // expected-warning{{template argument uses unnamed type}}
26 enum {e1}; // expected-note 2{{unnamed type used in template argument was declared here}}
27 enum {e2}; // expected-note 2{{unnamed type used in template argument was declared here}}
28 enum {e3}; // expected-note{{unnamed type used in template argument was declared here}}
34 f0( // expected-warning{{template argument uses unnamed type}}
35 &f1<__typeof__(e1)>); // expected-warning{{template argument uses unnamed type}}
36 int (*fp1)(int, __typeof__(e2)) = f1; // expected-warning{{template argument uses unnamed type}}
37 f1(e2); // expected-warning{{template argument uses unnamed type}}
40 X<__typeof__(e3)*> x; // expected-warning{{template argument uses unnamed type}
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/
argument.hpp 12 // Description : model of actual argument (both typed and abstract interface)
35 // ************** runtime::argument ************** //
43 class argument { class in namespace:boost::BOOST_RT_PARAM_NAMESPACE
46 argument( parameter const& p, rtti::id_t value_type ) function in class:boost::BOOST_RT_PARAM_NAMESPACE::argument
52 virtual ~argument() {}
64 class typed_argument : public argument {
68 : argument( p, rtti::type_id<T>() )
71 : argument( p, rtti::type_id<T>() )
84 arg_value( argument const& arg_ )
95 arg_value( argument& arg_
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
mutex.py 5 Otherwise, the queue contains 0 or more (function, argument) pairs
8 the first queue entry is removed and its function(argument) pair called,
39 def lock(self, function, argument):
40 """Lock a mutex, call the function with supplied argument
42 function and argument in the queue."""
44 function(argument)
46 self.queue.append((function, argument))
50 function with its argument."""
52 function, argument = self.queue.popleft()
53 function(argument)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
mutex.py 5 Otherwise, the queue contains 0 or more (function, argument) pairs
8 the first queue entry is removed and its function(argument) pair called,
39 def lock(self, function, argument):
40 """Lock a mutex, call the function with supplied argument
42 function and argument in the queue."""
44 function(argument)
46 self.queue.append((function, argument))
50 function with its argument."""
52 function, argument = self.queue.popleft()
53 function(argument)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mutex.py 5 Otherwise, the queue contains 0 or more (function, argument) pairs
8 the first queue entry is removed and its function(argument) pair called,
39 def lock(self, function, argument):
40 """Lock a mutex, call the function with supplied argument
42 function and argument in the queue."""
44 function(argument)
46 self.queue.append((function, argument))
50 function with its argument."""
52 function, argument = self.queue.popleft()
53 function(argument)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mutex.py 5 Otherwise, the queue contains 0 or more (function, argument) pairs
8 the first queue entry is removed and its function(argument) pair called,
39 def lock(self, function, argument):
40 """Lock a mutex, call the function with supplied argument
42 function and argument in the queue."""
44 function(argument)
46 self.queue.append((function, argument))
50 function with its argument."""
52 function, argument = self.queue.popleft()
53 function(argument)
    [all...]
  /external/clang/test/Sema/
format-strings-freebsd.c 11 freebsd_kernel_printf("reg=%b\n", l, "\10\2BITTWO\1BITONE\n"); // expected-warning{{format specifies type 'int' but the argument has type 'long'}}
12 freebsd_kernel_printf("reg=%b\n", i, l); // expected-warning{{format specifies type 'char *' but the argument has type 'long'}}
14 freebsd_kernel_printf("reg=%b\n", i, "\10\2BITTWO\1BITONE\n", l); // expected-warning{{data argument not used by format string}}
18 freebsd_kernel_printf("%6D", i, ":"); // expected-warning{{format specifies type 'void *' but the argument has type 'int'}}
19 freebsd_kernel_printf("%6D", s, i); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
21 freebsd_kernel_printf("%6D", s, ":", i); // expected-warning{{data argument not used by format string}}
24 freebsd_kernel_printf("%*D", 42, i, ":"); // expected-warning{{format specifies type 'void *' but the argument has type 'int'}}
25 freebsd_kernel_printf("%*D", 42, s, i); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
27 freebsd_kernel_printf("%*D", 42, s, ":", i); // expected-warning{{data argument not used by format string}}
31 freebsd_kernel_printf("%r", l); // expected-warning{{format specifies type 'int' but the argument has type 'long'}
    [all...]
warn-strncat-size.c 33 strncat(dest, src, sizeof(src)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
35 strncat(dest, src, sizeof(src) - 1); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
37 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest)); // expected-warning{{the value of the size argument in 'strncat' is too large, might lead to a buffer overflow}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
39 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest) - strlen(dest)); // expected-warning{{the value of the size argument in 'strncat' is too large, might lead to a buffer overflow}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
41 strncat((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}
    [all...]
builtins-arm64.c 21 __builtin_arm_dmb(16); // expected-error {{argument should be a value from 0 to 15}}
22 __builtin_arm_dsb(17); // expected-error {{argument should be a value from 0 to 15}}
23 __builtin_arm_isb(18); // expected-error {{argument should be a value from 0 to 15}}
27 __builtin_arm_prefetch(0, 2, 0, 0, 0); // expected-error {{argument should be a value from 0 to 1}}
28 __builtin_arm_prefetch(0, 0, 3, 0, 0); // expected-error {{argument should be a value from 0 to 2}}
29 __builtin_arm_prefetch(0, 0, 0, 2, 0); // expected-error {{argument should be a value from 0 to 1}}
30 __builtin_arm_prefetch(0, 0, 0, 0, 2); // expected-error {{argument should be a value from 0 to 1}}
format-strings-size_t.c 7 printf("%zu", (double)42); // expected-warning {{format specifies type 'size_t' (aka 'unsigned long') but the argument has type 'double'}}
10 printf("%jd", (double)42); // expected-warning {{format specifies type 'intmax_t' (aka 'long') but the argument has type 'double'}}
11 printf("%ju", (double)42); // expected-warning {{format specifies type 'uintmax_t' (aka 'unsigned long') but the argument has type 'double'}}
14 printf("%td", (double)42); // expected-warning {{format specifies type 'ptrdiff_t' (aka 'long') but the argument has type 'double'}}
20 printf("%jn", (int*)0); // expected-warning{{format specifies type 'intmax_t *' (aka 'long *') but the argument has type 'int *'}}
23 // FIXME: Warn about %zn with non-ssize_t argument.
27 printf("%tn", (int*)0); // expected-warning{{format specifies type 'ptrdiff_t *' (aka 'long *') but the argument has type 'int *'}}
  /external/clang/test/Driver/
unknown-arg.c 4 // CHECK: unknown argument: '-cake-is-lie'
5 // CHECK: unknown argument: '-%0'
6 // CHECK: unknown argument: '-%d'
7 // CHECK: unknown argument: '-HHHH'
8 // CHECK: unknown argument: '-munknown-to-clang-option'
9 // CHECK: unknown argument: '-print-stats'
10 // CHECK: unknown argument: '-funknown-to-clang-option'
  /external/clang/test/SemaCXX/
attr-format.cpp 6 // GCC has a hidden 'this' argument in member functions which is why
7 // the format argument is argument 2 here.
12 expected-error{{implicit this argument as the format string}}
16 expected-error{{invalid for the implicit this argument}}
28 // 'this' argument.
40 // this argument.
  /external/ltrace/testsuite/
run-my-tests.sh 12 # The first argument is not optional: it must either be -m32 or -m64. If the
13 # second argument is used, it specifies the file name of the ltrace to be
14 # tested. The third argument specifies a particular test case to run. If
15 # the third argument is omitted, then all test cases are run. If you wish to
16 # use the third argument, but not the second, specify the second as "".
18 # there is a secret argument: if the name of this script is 'test', then
19 # the --verbose argument is added to RUNTESTFLAGS.
  /hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/src/
loc_api_rpcgen_cb_svc.c 52 } argument; local
75 memset ((char *)&argument, 0, sizeof (argument));
76 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
80 retval = (bool_t) (*local)((char *)&argument, (void *)&result, rqstp);
84 if (!svc_freeargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
99 } argument; local
122 memset ((char *)&argument, 0, sizeof (argument));
123 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
146 } argument; local
193 } argument; local
240 } argument; local
287 } argument; local
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/src/
loc_api_rpcgen_cb_svc.c 52 } argument; local
75 memset ((char *)&argument, 0, sizeof (argument));
76 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
80 retval = (bool_t) (*local)((char *)&argument, (void *)&result, rqstp);
84 if (!svc_freeargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
99 } argument; local
122 memset ((char *)&argument, 0, sizeof (argument));
123 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
146 } argument; local
193 } argument; local
240 } argument; local
287 } argument; local
    [all...]
  /hardware/qcom/gps/msm8909/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/src/
loc_api_rpcgen_cb_svc.c 52 } argument; local
75 memset ((char *)&argument, 0, sizeof (argument));
76 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
80 retval = (bool_t) (*local)((char *)&argument, (void *)&result, rqstp);
84 if (!svc_freeargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
99 } argument; local
122 memset ((char *)&argument, 0, sizeof (argument));
123 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
146 } argument; local
193 } argument; local
240 } argument; local
287 } argument; local
    [all...]
  /hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/src/
loc_api_rpcgen_cb_svc.c 52 } argument; local
75 memset ((char *)&argument, 0, sizeof (argument));
76 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
80 retval = (bool_t) (*local)((char *)&argument, (void *)&result, rqstp);
84 if (!svc_freeargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
99 } argument; local
122 memset ((char *)&argument, 0, sizeof (argument));
123 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
146 } argument; local
193 } argument; local
240 } argument; local
287 } argument; local
    [all...]
  /hardware/qcom/gps/msm8996/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/src/
loc_api_rpcgen_cb_svc.c 52 } argument; local
75 memset ((char *)&argument, 0, sizeof (argument));
76 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
80 retval = (bool_t) (*local)((char *)&argument, (void *)&result, rqstp);
84 if (!svc_freeargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
99 } argument; local
122 memset ((char *)&argument, 0, sizeof (argument));
123 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
146 } argument; local
193 } argument; local
240 } argument; local
287 } argument; local
    [all...]
  /external/clang/test/CodeGen/
builtins-systemz-vector-error.c 30 __builtin_s390_lcbb(cptr, -1); // expected-error {{argument should be a value from 0 to 15}}
31 __builtin_s390_lcbb(cptr, 16); // expected-error {{argument should be a value from 0 to 15}}
34 __builtin_s390_vlbb(cptr, -1); // expected-error {{argument should be a value from 0 to 15}}
35 __builtin_s390_vlbb(cptr, 16); // expected-error {{argument should be a value from 0 to 15}}
38 __builtin_s390_vpdi(vul, vul, -1); // expected-error {{argument should be a value from 0 to 15}}
39 __builtin_s390_vpdi(vul, vul, 16); // expected-error {{argument should be a value from 0 to 15}}
44 __builtin_s390_verimb(vuc, vuc, vuc, -1); // expected-error {{argument should be a value from 0 to 255}}
45 __builtin_s390_verimb(vuc, vuc, vuc, 256); // expected-error {{argument should be a value from 0 to 255}}
48 __builtin_s390_verimh(vus, vus, vus, -1); // expected-error {{argument should be a value from 0 to 255}}
49 __builtin_s390_verimh(vus, vus, vus, 256); // expected-error {{argument should be a value from 0 to 255}
    [all...]
  /external/compiler-rt/test/msan/
cxa_atexit.cc 3 // PR17377: C++ module destructors get stale argument shadow.
9 // This destructor get stale argument shadow left from the call to f().
25 // This call poisons TLS shadow for the first function argument.
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7129.go 18 f(g()) // ERROR "in argument to f"
19 f(true) // ERROR "in argument to f"
20 h(true, true) // ERROR "in argument to h"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7129.go 18 f(g()) // ERROR "in argument to f"
19 f(true) // ERROR "in argument to f"
20 h(true, true) // ERROR "in argument to h"
  /external/apache-xml/src/main/java/org/apache/xpath/
Arg.java 27 * This class holds an instance of an argument on
28 * the stack. The value of the argument can be either an
35 /** Field m_qname: The name of this argument, expressed as a QName
43 * Get the qualified name for this argument.
53 * Set the qualified name for this argument.
62 /** Field m_val: Stored XObject value of this argument
69 * Get the value for this argument.
71 * @return the argument's stored XObject value.
80 * Set the value of this argument.
92 * Call only when the variable or argument is going out of scope
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/int_to_byte/
Test_int_to_byte.java 27 * @title Argument = 1
35 * @title Argument = -1
43 * @title Argument = 16
51 * @title Argument = -32
59 * @title Argument = 134
68 * @title Argument = -134
76 * @title Argument = 127
84 * @title Argument = 128
92 * @title Argument = 0
100 * @title Argument = -12
    [all...]

Completed in 6216 milliseconds

1 23 4 5 6 7 8 91011>>