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

1 23 4 5 6 7 8 91011>>

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
typed_parameter.hpp 12 // Description : generic typed parameter model
18 // Boost.Runtime.Parameter
24 #include <boost/test/utils/runtime/cla/parameter.hpp>
41 class typed_parameter : public cla::parameter {
44 : cla::parameter( ID, m_arg_factory, rtti::type_id<T>() == rtti::type_id<bool>() )
47 // parameter properties modification
51 cla::parameter::accept_modifier( m );
56 BOOST_RT_PARAM_LITERAL( "can't define a value generator for optional parameter " ) << id_2_report() );
  /external/clang/test/Sema/
void_arg.c 10 X = sizeof(int (int, void)); // expected-error {{must be the first and only parameter}}
11 X = sizeof(int (void, ...)); // expected-error {{must be the first and only parameter}}
14 X = sizeof(int (int, Void)); // expected-error {{must be the first and only parameter}}
15 X = sizeof(int (Void, ...)); // expected-error {{must be the first and only parameter}}
26 void f(const void); // expected-error {{parameter must not have type qualifiers}}
warn-sizeof-arrayarg.c 15 // expected-warning{{sizeof on array function parameter will return size of 'int *' instead of 'int [10]'}}
17 // expected-warning{{sizeof on array function parameter will return size of 'int *' instead of 'int [10]'}}
19 // expected-warning{{sizeof on array function parameter will return size of 'int *' instead of 'int [10]'}}
21 // expected-warning{{sizeof on array function parameter will return size of 'int *' instead of 'Arr' (aka 'int [10]')}}
  /external/clang/test/FixIt/
dereference-addressof.c 6 void ip(int *aPtr) {} // expected-note{{passing argument to parameter 'aPtr' here}}
7 void i(int a) {} // expected-note{{passing argument to parameter 'a' here}}
8 void ii(int a) {} // expected-note{{passing argument to parameter 'a' here}}
9 void fp(float *aPtr) {} // expected-note{{passing argument to parameter 'aPtr' here}}
10 void f(float a) {} // expected-note{{passing argument to parameter 'a' here}}
14 ip(a); // expected-warning{{incompatible integer to pointer conversion passing 'int' to parameter of type 'int *'; take the address with &}}
15 i(aPtr); // expected-warning{{incompatible pointer to integer conversion passing 'int *' to parameter of type 'int'; dereference with *}}
16 ii(&a); // expected-warning{{incompatible pointer to integer conversion passing 'int *' to parameter of type 'int'; remove &}}
17 fp(*bPtr); // expected-error{{passing 'float' to parameter of incompatible type 'float *'; remove *}}
18 f(bPtr); // expected-error{{passing 'float *' to parameter of incompatible type 'float'; dereference with *}
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
UserDataNotification.java 45 * Get value of operation parameter
47 * @return value of operation parameter
54 * Gets value of key parameter
56 * @return value of key parameter
63 * Gets value of data parameter
65 * @return value of data parameter
72 * Gets value of src parameter
74 * @return value of src parameter
81 * Gets value of dst parameter
83 * @return value of dst parameter
    [all...]
  /external/clang/test/SemaObjC/
warn-superclass-method-mismatch.m 12 -(void) method2: (Sub*) x; // expected-note{{passing argument to parameter 'x' here}}
24 -(void) method: (struct A*) a; // expected-warning {{method parameter type 'struct A *' does not match super class method parameter type 'int *'}}
25 -(void) method1: (Sub*) x; // expected-warning {{method parameter type 'Sub *' does not match super class method parameter type 'Base *'}}
27 + method3: (int)x1 : (Sub *)x2 : (float)x3; // expected-warning {{method parameter type 'Sub *' does not match super class method parameter type 'Base *'}}
29 -(void) method_r: (char)ch : (float*)f1 : (Sub*) x; // expected-warning {{method parameter type 'Sub *' does not match super class method parameter type 'int *'}}
30 - method5: (int) x : (float) d; // expected-warning {{method parameter type 'float' does not match super class method parameter type 'double'}
    [all...]
argument-checking.m 5 extern int charStarFunc(char *); // expected-note{{passing argument to parameter here}}
6 extern int charFunc(char); // expected-note{{passing argument to parameter here}}
10 -(int)charStarMeth:(char *)s; // expected-note{{passing argument to parameter 's' here}}
11 -structMeth:(struct S)s; // expected-note{{passing argument to parameter 's' here}}
13 :(struct S)s2; // expected-note{{passing argument to parameter 's2' here}}
20 charStarFunc(1); // expected-warning {{incompatible integer to pointer conversion passing 'int' to parameter of type 'char *'}}
21 charFunc("abc"); // expected-warning {{incompatible pointer to integer conversion passing 'char [4]' to parameter of type 'char'}}
class-method-self.m 6 - (void)addObserver:(XX*)o; // expected-note 2{{passing argument to parameter 'o' here}}
21 [obj addObserver:self]; // expected-warning {{incompatible pointer types sending 'Class' to parameter of type 'XX *'}}
23 [obj addObserver:whatever]; // expected-warning {{incompatible pointer types sending 'Class' to parameter of type 'XX *'}}
method-arg-qualifier-warning.m 6 - (BOOL)isEqualToString:(NSString *)aString; // expected-note 2{{passing argument to parameter 'aString' here}}
15 [@"Identifier1" isEqualToString:Identifier1]; // expected-warning {{sending 'const NSString *' to parameter of type 'NSString *' discards qualifiers}}
16 [@"Identifier2" isEqualToString:Identifier2]; // expected-warning {{sending 'const NSString *' to parameter of type 'NSString *' discards qualifiers}}
method-unused-attribute.m 1 // RUN: %clang_cc1 -fsyntax-only -Wunused-parameter -verify -Wno-objc-root-class %s
12 - (void) will_warn_unused_arg: (void *) __attribute__((unused)) notice : (id)warn_unused {} // expected-warning {{unused parameter 'warn_unused'}}
13 - (void) unused_attr_on_decl_ignored: (void *) will_warn{} // expected-warning {{unused parameter 'will_warn'}}
objc-container-subscripting.m 7 - (id)objectAtIndexedSubscript:(double)index; // expected-note {{parameter of type 'double' is declared here}}
8 - (void)setObject:(id *)object atIndexedSubscript:(void *)index; // expected-note {{parameter of type 'void *' is declared here}} \
9 // expected-note {{parameter of type 'id *' is declared here}}
15 id oldObject = array[10]; // expected-error {{method index parameter type 'double' is not integral type}}
16 array[3] = 0; // expected-error {{method index parameter type 'void *' is not integral type}} \
17 // expected-error {{cannot assign to this array because assigning method's 2nd parameter of type 'id *' is not an Objective-C pointer type}}
29 - (id)objectForKeyedSubscript:(id*)key; // expected-note {{parameter of type 'id *' is declared here}}
30 - (void)setObject:(void*)object forKeyedSubscript:(id*)key; // expected-note {{parameter of type 'void *' is declared here}} \
31 // expected-note {{parameter of type 'id *' is declared here}}
39 oldObject = dictionary[key]; // expected-error {{method key parameter type 'id *' is not object type}
    [all...]
stmts.m 12 } @catch (struct some_struct x) { // expected-error {{@catch parameter is not a pointer to an interface type}}
13 } @catch (int x) { // expected-error {{@catch parameter is not a pointer to an interface type}}
14 } @catch (static NSObject *y) { // expected-error {{@catch parameter cannot have storage specifier 'static'}}
  /external/clang/test/CXX/over/over.oper/over.literal/
p5.cpp 12 friend U operator "" _a(const T *, size_t); // expected-error {{parameter}}
15 friend void operator "" _b(); // expected-error {{parameter}}
18 template<char... C, int N = 0> void operator "" _b(); // expected-error {{parameter}}
19 template<char... C> void operator "" _b(int N = 0); // expected-error {{parameter}}
20 template<char, char...> void operator "" _b(); // expected-error {{parameter}}
21 template<typename T> T operator "" _b(const char *); // expected-error {{parameter}}
22 template<typename T> int operator "" _b(const T *, size_t); // expected-error {{parameter}}
  /external/clang/test/CXX/temp/temp.param/
p11.cpp 6 class T2> // expected-error{{template parameter missing a default argument}}
10 template<class> class> // expected-error{{template parameter missing a default argument}}
14 int M> // expected-error{{template parameter missing a default argument}}
p2.cpp 5 // template-parameter. typename followed by an unqualified-id names a
6 // template type parameter.
11 // parameter-declaration.
15 // A storage class shall not be specified in a template-parameter declaration.
  /external/oprofile/doc/
op-jit-devel.xml 158 <paramdef>op_agent_t <parameter>hdl</parameter></paramdef>
167 <parameter>hdl : </parameter>Handle returned from an earlier call to
186 <paramdef>op_agent_t<parameter>hdl</parameter></paramdef>
187 <paramdef>char const *<parameter>symbol_name</parameter></paramdef>
188 <paramdef>uint64_t<parameter>vma</parameter></paramdef
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
BouncyCastleProviderConfiguration.java 31 void setParameter(String parameterName, Object parameter)
44 if (parameter instanceof ECParameterSpec || parameter == null)
46 curveSpec = (ECParameterSpec)parameter;
50 curveSpec = EC5Util.convertSpec((java.security.spec.ECParameterSpec)parameter, false);
69 if (parameter instanceof ECParameterSpec || parameter == null)
71 ecImplicitCaParams = (ECParameterSpec)parameter;
75 ecImplicitCaParams = EC5Util.convertSpec((java.security.spec.ECParameterSpec)parameter, false);
87 if (parameter instanceof DHParameterSpec || parameter instanceof DHParameterSpec[] || parameter == null
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
SecurityAgreeHeader.java 60 * Set Encryption Algorithm (ealg parameter)
67 * Set Algorithm (alg parameter)
81 * Set Mode (mod parameter)
88 * Set Client SPI (spi-c parameter)
95 * Set Server SPI (spi-s parameter)
102 * Set Client Port (port-c parameter)
110 * Set Server Port (port-s parameter)
118 * @param q - q parameter value
133 * @return ealg parameter value
139 * @return alg parameter valu
    [all...]
  /libcore/luni/src/main/java/javax/sql/
RowSet.java 84 * a parameter is set or its value is actively reset. {@code
261 * Sets the specified {@code ARRAY} parameter in the {@code RowSet} command
265 * the index of the parameter to set; the first parameter's index
268 * the {@code Array} data value to which the parameter is set.
276 * Sets the value of the specified parameter in the {@code RowSet} command
281 * the index of the parameter to set; the first parameter's index
284 * the ASCII data value to which the parameter is set.
294 * Sets the value of the specified parameter in the RowSet command with th
    [all...]
  /external/clang/test/Parser/
cxx-template-decl.cpp 9 template < ; // expected-error {{expected template parameter}} \
10 // expected-error{{expected ',' or '>' in template-parameter-list}} \
12 template <int +> struct x1; // expected-error {{expected ',' or '>' in template-parameter-list}}
15 template <int +, T> struct x2; // expected-error {{expected ',' or '>' in template-parameter-list}} \
17 template<template<int+>> struct x3; // expected-error {{expected ',' or '>' in template-parameter-list}} \
18 expected-error {{template template parameter requires 'class' after the parameter list}}
21 template <template <typename> > struct Err2; // expected-error {{template template parameter requires 'class' after the parameter list}}
22 template <template <typename> Foo> struct Err3; // expected-error {{template template parameter requires 'class' after the parameter list}
    [all...]
  /art/test/004-annotations/src/android/test/anno/
AnnoFancyParameter.java 5 @Target(ElementType.PARAMETER)
  /dalvik/tests/004-annotations/src/android/test/anno/
AnnoFancyParameter.java 5 @Target(ElementType.PARAMETER)
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p22.cpp 4 // If the original function parameter associated with A is a function
5 // parameter pack and the function parameter associated with P is not
6 // a function parameter pack, then template argument deduction fails.
  /external/clang/test/SemaCXX/
PR8012.cpp 3 void foo (int operator+); // expected-error{{cannot be the name of a parameter}}
pragma-unused.cpp 1 // RUN: %clang_cc1 -fsyntax-only -Wunused-parameter -Wunused -verify %s

Completed in 629 milliseconds

1 23 4 5 6 7 8 91011>>