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

1 23 4 5 6 7 8 91011>>

  /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/Sema/
alloc_size.c 12 void* fn3(unsigned) __attribute__((alloc_size(0))); // expected-error{{attribute parameter 1 is out of bounds}}
13 void* fn4(unsigned) __attribute__((alloc_size(2))); // expected-error{{attribute parameter 1 is out of bounds}}
22 void* fn9(unsigned) __attribute__((alloc_size(12345678901234567890123))); // expected-warning {{integer constant is too large for its type}} // expected-error {{attribute parameter 1 is out of bounds}}
24 void* fn10(size_t, size_t) __attribute__((alloc_size(1,2))); // expected-error{{redefinition of parameter}} \
25 // expected-error{{a parameter list without types is only allowed in a function definition}} \
26 // expected-error{{attribute parameter 1 is out of bounds}}
27 void* fn11() __attribute__((alloc_size(1))); // expected-error{{attribute parameter 1 is out of bounds}}
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/SemaObjC/
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'}}
method-typecheck-2.m 19 - (void) doSomething: (int) x {} // expected-warning {{conflicting parameter types}}
20 + (void) doSomethingClassy: (float) x{} // expected-warning {{conflicting parameter types}}
21 - (void) doSomethingInProtocol: (id) x {} // expected-warning {{conflicting parameter types}}
22 + (void) doSomethingClassyInProtocol: (id) x {} // expected-warning {{conflicting parameter types}}
  /sdk/templates/projects/NewAndroidApplication/
template.xml 15 <parameter
22 <parameter
29 <parameter
39 </parameter>
41 <parameter
52 <parameter
59 <parameter
66 <parameter
73 <parameter
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1-11.cpp 7 template<int *ip> struct IP { // expected-note 4 {{template parameter is declared here}}
17 IP<0> ip0; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}}
18 IP<(0)> ip1; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}}
25 IP<(float*)0> ip6; // expected-error{{null non-type template argument of type 'float *' does not match template parameter of type 'int *'}}
28 template<int X::*pm> struct PM { // expected-note 2 {{template parameter is declared here}}
32 PM<0> pm0; // expected-error{{null non-type template argument must be cast to template parameter type 'int X::*'}}
33 PM<(0)> pm1; // expected-error{{null non-type template argument must be cast to template parameter type 'int X::*'}}
39 template<int (X::*pmf)(int)> struct PMF { // expected-note 2 {{template parameter is declared here}}
43 PMF<0> pmf0; // expected-error{{null non-type template argument must be cast to template parameter type 'int (X::*)(int)'}}
44 PMF<(0)> pmf1; // expected-error{{null non-type template argument must be cast to template parameter type 'int (X::*)(int)'}
    [all...]
  /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...]
  /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
  /external/eigen/doc/snippets/
Map_inner_stride.cpp 4 (array, 6) // the inner stride has already been passed as template parameter
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
Control.java 25 public void setUp(ViewGroup container, Parameter parameter, Editor editor);
29 public void setPrameter(Parameter parameter);
  /sdk/templates/other/ContentProvider/
template.xml 8 <parameter
15 <parameter
23 <parameter
30 <parameter

Completed in 377 milliseconds

1 23 4 5 6 7 8 91011>>