HomeSort by relevance Sort by last modified time
    Searched full:declared (Results 101 - 125 of 3775) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/clang/test/SemaObjC/
objc-container-subscripting-3.m 5 - (int)objectAtIndexedSubscript:(int)index; // expected-note {{method 'objectAtIndexedSubscript:' declared here}}
6 - (void)setObject:(int)object atIndexedSubscript:(int)index; // expected-note {{parameter of type 'int' is declared here}}
10 - (int)objectForKeyedSubscript:(id)key; // expected-note {{method 'objectForKeyedSubscript:' declared here}}
11 - (void)setObject:(int)object forKeyedSubscript:(id)key; // expected-note {{parameter of type 'int' is declared here}}
ivar-lookup.m 60 int IVAR; // expected-error {{instance variable is already declared}}
67 int IVAR; // expected-error {{instance variable is already declared}}
73 int IVAR; // expected-error {{instance variable is already declared}}
74 int PIVAR; // expected-error {{instance variable is already declared}}
80 int IVAR; // expected-error {{instance variable is already declared}}
146 // expected-error {{instance variable is already declared}}
151 int d; // expected-error {{instance variable is already declared}}
152 NSString *e_strong; // expected-error {{instance variable is already declared}}
153 NSData *f_weak; // expected-error {{instance variable is already declared}}
154 NSData *g; // expected-error 2 {{instance variable is already declared}}
    [all...]
arc-property-lifetime.m 10 @property(strong) id x; // expected-note {{property declared here}}
11 @property(strong) id y; // expected-note {{property declared here}}
27 @property(retain) id x; // expected-note {{property declared here}}
28 @property(retain) id y; // expected-note {{property declared here}}
44 @property(copy) id x; // expected-note {{property declared here}}
45 @property(copy) id y; // expected-note {{property declared here}}
56 @property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretained}}
57 @property(strong) __autoreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}}
61 @property(retain) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretained}}
62 @property(retain) __autoreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}
    [all...]
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}}
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}}
property-inherited.m 4 // rdar://6497242 Inherited overridden protocol declared objects don't work
24 @property(nonatomic, assign) id<BarDelegate> delegate2; // expected-note {{property declared here}}
39 @property(assign) NSMutableData *p_data; // expected-note {{property declared here}}
54 @property (nonatomic) void* selected; // expected-note {{property declared here}}
58 @property (nonatomic) void* selected; // expected-note {{property declared here}}
63 @property (nonatomic) void* selected1; // expected-note {{property declared here}}
  /external/clang/test/SemaTemplate/
missing-class-keyword-crash.cpp 4 // expected-note{{template parameter is declared here}}
rdar9173693.cpp 5 template< bool > struct assert_arg_pred_impl { }; // expected-note 3 {{declared here}}
temp_arg_type.cpp 2 template<typename T> class A; // expected-note 2 {{template parameter is declared here}} expected-note{{template is declared here}}
20 template<typename T> class B {}; // expected-note{{template is declared here}}
30 struct { int x; } Unnamed; // expected-note{{unnamed type used in template argument was declared here}}
  /external/libxml2/result/VC/
ElementValid5 2 <doc><a/><b> but this</b><c>was not declared</c><b>seems</b></doc>
  /external/llvm/test/Verifier/
2002-04-13-RetTypes.ll 4 ; declared return type of the function they live in.
  /external/selinux/libsepol/tests/policies/test-linker/
module1.conf 25 # test for attr declared in base, added to in module
29 # test for attr declared in base, added to in 2 modules
33 # test for attr declared in base optional, added to in module
37 # test for attr declared in module, added to in base optional
53 # attr a added to in base optional, declared/added to in module, added to in other module
57 # attr a added to in base optional, declared/added in module , added to in other module optional
128 # attr a added to in base optional, declared/added in module optional, added to in other module
  /external/clang/test/SemaCXX/
default-constructor-initializers.cpp 7 struct X2 : X1 { // expected-note 2 {{'X2' declared here}}
18 X2 x2; // expected-note {{member is declared here}}
19 X2 & rx2; // expected-note {{declared here}}
48 int& z; // expected-note {{declared here}}
49 const int c1; // expected-note {{declared here}}
array-bounds.cpp 4 int x[2]; // expected-note 4 {{array 'x' declared here}}
5 int y[2]; // expected-note 2 {{array 'y' declared here}}
6 int z[1]; // expected-note {{array 'z' declared here}}
7 int w[1][1]; // expected-note {{array 'w' declared here}}
8 int v[1][1][1]; // expected-note {{array 'v' declared here}}
33 void f2(const int (&a)[2]) { // expected-note {{declared here}}
44 short a[2]; // expected-note 4 {{declared here}}
56 int array[2]; // expected-note {{declared here}}
61 int array2[] = { 0, 1, 2 }; // expected-note 2 {{declared here}}
69 const char str2[] = "foo"; // expected-note {{declared here}
    [all...]
  /external/clang/test/FixIt/
typo.cpp 8 template<typename T> class basic_string { // expected-note 3{{'basic_string' declared here}}
10 int find(const char *substr); // expected-note{{'find' declared here}}
11 static const int npos = -1; // expected-note{{'npos' declared here}}
14 typedef basic_string<char> string; // expected-note 2{{'string' declared here}}
17 namespace otherstd { // expected-note 2{{'otherstd' declared here}} \
30 float area(float radius, // expected-note{{'radius' declared here}}
53 int member; // expected-note 3{{'member' declared here}}
69 typedef int Integer; // expected-note{{'Integer' declared here}}
70 int global_value; // expected-note{{'global_value' declared here}}
79 typedef std::basic_string<char> yarn; // expected-note 2 {{'nonstd::yarn' declared here}
    [all...]
typo-using.cpp 11 namespace N { class AAA {}; } // expected-note {{'AAA' declared here}}
16 namespace N { class AAA {}; } // expected-note {{'AAA' declared here}}
21 namespace N { void FFF() {} } // expected-note {{'FFF' declared here}}
26 class ABC {}; // expected-note {{'::using_suggestion_ty_dropped_specifier::ABC' declared here}}
32 class BCD {}; // expected-note {{'::using_suggestion_tyname_ty_dropped_specifier::BCD' declared here}}
38 void EFG() {} // expected-note {{'::using_suggestion_val_dropped_specifier::EFG' declared here}}
44 class CCC { public: typedef int AAA; }; // expected-note {{'AAA' declared here}}
49 class CCC { public: void AAA() { } }; // expected-note {{'AAA' declared here}}
54 class CCC { public: typedef int AAA; }; // expected-note {{'AAA' declared here}}
  /external/clang/test/ARCMT/
atautorelease-check.m 103 // 'x' is declared inside the "pool scope" but used outside it, if we create
105 int x = 0; // expected-note {{declared here}}
109 ++x; // expected-error {{a name is referenced outside the NSAutoreleasePool scope that it was declared in}}
116 struct S { int x; }; // expected-note {{declared here}}
120 struct S *var; // expected-error {{a name is referenced outside the NSAutoreleasePool scope that it was declared in}}
128 enum { Bar }; // expected-note {{declared here}}
132 int x = Bar; // expected-error {{a name is referenced outside the NSAutoreleasePool scope that it was declared in}}
139 typedef int Bar; // expected-note {{declared here}}
143 Bar x; // expected-error {{a name is referenced outside the NSAutoreleasePool scope that it was declared in}}
  /external/clang/test/Modules/
module-private.cpp 62 template<> __module_private__ void public_func_template<int>(); // expected-error{{template specialization cannot be declared __module_private__}}
73 template<> __module_private__ struct public_class<int>::inner_struct { }; // expected-error{{member specialization cannot be declared __module_private__}}
74 template<> __module_private__ int public_class<int>::static_var = 17; // expected-error{{member specialization cannot be declared __module_private__}}
77 __module_private__ struct public_class<float> { }; // expected-error{{template specialization cannot be declared __module_private__}}
80 __module_private__ struct public_class<T *> { }; // expected-error{{partial specialization cannot be declared __module_private__}}
85 void local_var_private(__module_private__ int param) { // expected-error{{parameter 'param' cannot be declared __module_private__}}
86 __module_private__ struct Local { int x, y; } local; //expected-error{{local variable 'local' cannot be declared __module_private__}}
88 __module_private__ struct OtherLocal { int x; }; // expected-error{{local struct cannot be declared __module_private__}}
90 typedef __module_private__ int local_typedef; // expected-error{{typedef 'local_typedef' cannot be declared __module_private__}}
  /external/clang/test/ASTMerge/
struct.c 8 // CHECK: struct2.c:15:11: error: external variable 'x1' declared with incompatible types in different translation units ('struct S1' vs. 'struct S1')
9 // CHECK: struct1.c:18:11: note: declared here with type 'struct S1'
12 // CHECK: struct2.c:18:30: error: external variable 'x2' declared with incompatible types in different translation units ('union S2' vs. 'struct S2')
13 // CHECK: struct1.c:21:31: note: declared here with type 'struct S2'
17 // CHECK: struct2.c:21:31: error: external variable 'x3' declared with incompatible types in different translation units ('struct S3' vs. 'struct S3')
18 // CHECK: struct1.c:24:41: note: declared here with type 'struct S3'
22 // CHECK: struct2.c:24:31: error: external variable 'x4' declared with incompatible types in different translation units ('struct S4' vs. 'struct S4')
23 // CHECK: struct1.c:27:22: note: declared here with type 'struct S4'
27 // CHECK: struct2.c:30:38: error: external variable 'x6' declared with incompatible types in different translation units ('struct S6' vs. 'struct S6')
28 // CHECK: struct1.c:33:42: note: declared here with type 'struct S6
    [all...]
interface.m 5 // CHECK: interface2.m:16:9: error: instance variable 'ivar2' declared with incompatible types in different translation units ('float' vs. 'int')
6 // CHECK: interface1.m:16:7: note: declared here with type 'int'
11 // CHECK: interface1.m:34:1: note: class method 'foo' also declared here
13 // CHECK: interface1.m:40:17: note: declared here with type 'int'
15 // CHECK: interface1.m:46:1: note: class method 'bar:' also declared here
17 // CHECK: interface1.m:58:19: note: declared here with type 'float'
enum.c 8 // CHECK: enum2.c:13:3: error: external variable 'x2' declared with incompatible types in different translation units ('enum E2' vs. 'enum E2')
9 // CHECK: enum1.c:13:3: note: declared here with type 'enum E2'
13 // CHECK: enum2.c:20:3: error: external variable 'x3' declared with incompatible types in different translation units ('enum E3' vs. 'enum E3')
14 // CHECK: enum1.c:20:3: note: declared here with type 'enum E3'
18 // CHECK: enum2.c:26:3: error: external variable 'x4' declared with incompatible types in different translation units ('enum E4' vs. 'enum E4')
19 // CHECK: enum1.c:27:3: note: declared here with type 'enum E4'
23 // CHECK: enum2.c:34:3: error: external variable 'x5' declared with incompatible types in different translation units ('enum E5' vs. 'enum E5')
24 // CHECK: enum1.c:34:3: note: declared here with type 'enum E5'
namespace.cpp 5 // CHECK: namespace2.cpp:16:17: error: external variable 'z' declared with incompatible types in different translation units ('double' vs. 'float')
6 // CHECK: namespace1.cpp:16:16: note: declared here with type 'float'
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
parameter-matching.cpp 8 template<typename ...T> struct X1t; // expected-note{{previous template type parameter pack declared here}}
11 template<typename T> struct X2t; // expected-note{{previous template type parameter declared here}}
17 template<template<typename ...T> class> struct X1t_intt; // expected-note{{previous template type parameter pack declared here}}
20 template<template<typename T> class> struct X2t_intt; // expected-note{{previous template type parameter declared here}}
23 template<int ...Values> struct X1nt; // expected-note{{previous non-type template parameter pack declared here}}
26 template<template<class T> class> class X1tt; // expected-note{{previous template template parameter declared here}}
  /external/clang/test/SemaObjCXX/
property-synthesis-error.mm 41 TCPPObject& operator=(const TCPPObject& inObj); // expected-note {{'operator=' declared here}}
79 @property (readonly, nonatomic) IncompleteStruct& x; // expected-note {{property declared here}}
80 @property (readonly, nonatomic) IncompleteStruct& y; // expected-note {{property declared here}}
90 T *x; // expected-error {{'x' declared as a pointer to a reference of type 'int &'}}
95 // expected-note 2 {{implicitly declared private here}} \
96 // expected-note {{'operator=' declared here}}
  /external/clang/test/CXX/class.access/
p4.cpp 19 void foo(Protected&); // expected-note 2 {{declared protected here}}
21 void foo(Private&); // expected-note 2 {{declared private here}}
45 void operator+(Protected&); // expected-note {{declared protected here}}
46 void operator[](Protected&); // expected-note {{declared protected here}}
47 void operator()(Protected&); // expected-note {{declared protected here}}
49 operator ProtectedSurrogate() const; // expected-note {{declared protected here}}
51 void operator+(Private&); // expected-note {{declared private here}}
52 void operator[](Private&); // expected-note {{declared private here}}
53 void operator()(Private&); // expected-note {{declared private here}}
54 void operator-(); // expected-note {{declared private here}
    [all...]
  /art/test/068-classloader/src-ex/
GetDoubled.java 18 * The interface we implement was declared in a different class loader,
19 * which means the DoubledExtend we return is not the one it was declared

Completed in 777 milliseconds

1 2 3 45 6 7 8 91011>>