Searched refs:declared (Results 1 – 25 of 429) sorted by relevance
12345678910>>...18
/external/clang/test/SemaObjC/ |
D | undef-protocol-methods-1.m | 4 - (void) P1proto; // expected-note {{method 'P1proto' declared here}} 5 + (void) ClsP1Proto; // expected-note {{method 'ClsP1Proto' declared here}} 9 - (void) P2proto; // expected-note {{method 'P2proto' declared here}} 10 + (void) ClsP2Proto; // expected-note {{method 'ClsP2Proto' declared here}} 14 - (void) P3proto; // expected-note {{method 'P3proto' declared here}} 15 + (void) ClsP3Proto; // expected-note {{method 'ClsP3Proto' declared here}} 20 - (void) meth; // expected-note {{method 'meth' declared here}} 21 - (void) meth : (int) arg1; // expected-note {{method 'meth:' declared here}} 22 + (void) cls_meth : (int) arg1; // expected-note {{method 'cls_meth:' declared here}}
|
D | property-deprecated-warning.m | 8 …oduced=2.0,deprecated=3.0))); // expected-note 2 {{property 'ptarget' is declared deprecated here}} 12 - (void)setPtarget:(id)arg; // expected-note {{method 'setPtarget:' declared here}} 17 …ntroduced=2.0,deprecated=3.0))); // expected-note {{property 'target' is declared deprecated here}} 21 - (void)setTarget:(id)target; // expected-note {{method 'setTarget:' declared here}} 25 …lity(ios,introduced=2.0,deprecated=3.0))); // expected-note {{method 'dep_target' declared here}} \ 26 … // expected-note 2 {{property 'dep_target' is declared deprecated here}} \ 27 … // expected-note {{method 'setDep_target:' declared here}} 44 ….0))); // expected-note {{method 'isEnabled' declared here}} expected-note {{property 'enabled' is… 46 … // expected-note {{method 'setNewDelegate:' declared here}} expected-note {{property 'delegate' i… 59 - (id)ptarget; // expected-note {{method 'ptarget' declared here}}
|
D | arc-property-decl-attrs.m | 40 …nretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretain… 41 @property(strong) __weak id y; // expected-error {{strong property 'y' may not also be declared __w… 42 …oreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}} 46 …nretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretain… 47 @property(retain) __weak id y; // expected-error {{strong property 'y' may not also be declared __w… 48 …oreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}} 52 …nretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretain… 53 @property(copy) __weak id y; // expected-error {{strong property 'y' may not also be declared __wea… 54 …oreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}} 60 …id z; // expected-error {{unsafe_unretained property 'z' may not also be declared __autoreleasing}} [all …]
|
D | 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 …nretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretain… 57 …oreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}} 61 …nretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretain… 62 …oreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}} [all …]
|
D | attr-deprecated.m | 4 int X __attribute__((deprecated)); // expected-note 2 {{declared here}} 6 + (void)F __attribute__((deprecated)); // expected-note 2 {{declared here}} 7 - (void)f __attribute__((deprecated)); // expected-note 4 {{declared here}} 45 - (void)p __attribute__((deprecated)); // expected-note {{declared here}} 74 …, setter = MySetter:) int FooBar __attribute__ ((deprecated)); // expected-note 2 {{declared here}} 86 @interface DEPRECATED { // expected-note 2 {{declared here}} 110 @property int test2 __attribute__((deprecated)); // expected-note 4 {{declared here}} \ 111 // expected-note 2 {{property 'test2' is declared deprecated here}} 129 } footype __attribute((deprecated)); // expected-note 2 {{declared here}}
|
D | property-category-4.m | 10 @property (readwrite, retain) id selectedObjects; // expected-note {{property declared here}} 11 @property (readwrite, retain) id d_selectedObjects; // expected-note {{property declared here}} 15 @synthesize selectedObjects = _selectedObjects; // expected-error {{property declared in category '… 16 @dynamic d_selectedObjects; // expected-error {{property declared in category 'CAT' cannot be imple…
|
D | warn-deprecated-implementations.m | 6 - (void) D __attribute__((deprecated)); // expected-note {{method 'D' declared here}} 14 - (void) E __attribute__((deprecated)); // expected-note {{method 'E' declared here}} 32 @interface CL // expected-note 2 {{class declared here}} // expected-note 2 {{declared here}} 46 - (void) B __attribute__((deprecated)); // expected-note {{method 'B' declared here}}
|
D | 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}}
|
D | objc-container-subscripting.m | 7 …tAtIndexedSubscript:(double)index; // expected-note {{parameter of type 'double' is declared here}} 8 …tIndexedSubscript:(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 her… 30 …ject forKeyedSubscript:(id*)key; // expected-note {{parameter of type 'void *' is declared here}} \ 31 … // expected-note {{parameter of type 'id *' is declared here}}
|
D | default-synthesize-3.m | 7 …ected-note 2 {{class with specified objc_requires_property_definitions attribute is declared here}} 8 @property int NoAutoProp; // expected-note 2 {{property declared here}} 16 …ected-note 3 {{class with specified objc_requires_property_definitions attribute is declared here}} 17 @property (copy) id SubProperty; // expected-note 2 {{property declared here}} 27 @property (copy) id DeepMustSynthProperty; // expected-note {{property declared here}} 46 @property (readonly) char isFoo; // expected-note {{property declared here}}
|
D | objc-container-subscripting-3.m | 5 …tIndexedSubscript:(int)index; // expected-note {{method 'objectAtIndexedSubscript:' declared here}} 6 …object atIndexedSubscript:(int)index; // expected-note {{parameter of type 'int' is declared here}} 10 …jectForKeyedSubscript:(id)key; // expected-note {{method 'objectForKeyedSubscript:' declared here}} 11 …int)object forKeyedSubscript:(id)key; // expected-note {{parameter of type 'int' is declared here}}
|
D | default-synthesize-2.m | 33 // object has user declared setter/getter so it won't be 44 id uid; // expected-note {{instance variable is declared here}} 46 @property (readwrite, assign) id uid; // expected-note {{property declared here}} 90 id _var; // expected-note {{'_var' declared here}} 122 id y; // expected-note {{instance variable is declared here}} 124 @property(copy) id y; // expected-note {{property declared here}}
|
/external/valgrind/main/memcheck/tests/ |
D | varinfo5.stderr.exp | 18 declared at varinfo5so.c:38 26 declared at varinfo5so.c:40 34 a global variable declared at varinfo5so.c:42 42 a global variable declared at varinfo5so.c:44 50 declared at varinfo5so.c:49, in frame #1 of thread 1 59 declared at varinfo5so.c:69, in frame #1 of thread 1 68 declared at varinfo5so.c:72, in frame #1 of thread 1 77 declared at varinfo5so.c:67, in frame #1 of thread 1 86 declared at varinfo5so.c:87, in frame #0 of thread 1 95 a global variable declared at varinfo5so.c:88 [all …]
|
D | varinfo5.stderr.exp-ppc64 | 18 declared at varinfo5so.c:38 26 declared at varinfo5so.c:40 34 a global variable declared at varinfo5so.c:42 42 a global variable declared at varinfo5so.c:44 50 declared at varinfo5so.c:49, in frame #1 of thread 1 59 declared at varinfo5so.c:69, in frame #1 of thread 1 68 declared at varinfo5so.c:72, in frame #1 of thread 1 77 declared at varinfo5so.c:67, in frame #1 of thread 1 86 declared at varinfo5so.c:87, in frame #0 of thread 1 95 a global variable declared at varinfo5so.c:88 [all …]
|
D | varinfo1.stderr.exp | 12 declared at varinfo1.c:35 18 declared at varinfo1.c:37 24 a global variable declared at varinfo1.c:39 30 a global variable declared at varinfo1.c:41 36 declared at varinfo1.c:46, in frame #1 of thread 1
|
D | varinfo3.stderr.exp | 6 declared at varinfo3.c:35, in frame #0 of thread 1 13 a global variable declared at varinfo3.c:36 20 declared at varinfo3.c:37, in frame #0 of thread 1 27 a global variable declared at varinfo3.c:38 42 declared at varinfo3.c:51, in frame #2 of thread 1 57 declared at varinfo3.c:53, in frame #2 of thread 1
|
D | varinfo1.stderr.exp-ppc64 | 12 declared at varinfo1.c:35 18 declared at varinfo1.c:37 24 a global variable declared at varinfo1.c:39 30 a global variable declared at varinfo1.c:41 36 declared at varinfo1.c:46, in frame #1 of thread 1
|
D | varinfo3.stderr.exp-ppc64 | 6 declared at varinfo3.c:35, in frame #0 of thread 1 13 a global variable declared at varinfo3.c:36 20 declared at varinfo3.c:37, in frame #0 of thread 1 27 a global variable declared at varinfo3.c:38 42 declared at varinfo3.c:51, in frame #2 of thread 1 57 declared at varinfo3.c:53, in frame #2 of thread 1
|
/external/clang/test/ASTMerge/ |
D | interface.m | 5 // CHECK: interface2.m:16:9: error: instance variable 'ivar2' declared with incompatible types in d… 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'
|
/external/clang/test/FixIt/ |
D | typo.m | 7 @interface NSString // expected-note 2{{'NSString' declared here}} 17 @property int *sprop; // expected-note{{'sprop' declared here}} 22 int his_ivar; // expected-note 2{{'his_ivar' declared here}} 27 @property int his_prop; // expected-note{{'his_prop' declared here}} 32 int her_ivar; // expected-note 2{{'her_ivar' declared here}} 35 @property int her_prop; // expected-note{{'her_prop' declared here}} 67 @interface Collide // expected-note{{'Collide' declared here}} 70 int value; // expected-note{{'value' declared here}} 73 @property int value; // expected-note{{'value' declared here}} 91 @protocol NetworkSocket // expected-note{{'NetworkSocket' declared here}}
|
/external/valgrind/main/drd/tests/ |
D | annotate_ignore_write2.stderr.exp | 5 declared at annotate_ignore_write.c:11, in frame #? of thread 1 10 declared at annotate_ignore_write.c:10, in frame #? of thread 1 15 declared at annotate_ignore_write.c:12, in frame #? of thread 1 20 declared at annotate_ignore_write.c:10, in frame #? of thread 1
|
D | annotate_ignore_write.stderr.exp | 5 declared at annotate_ignore_write.c:11, in frame #? of thread 1 10 declared at annotate_ignore_write.c:12, in frame #? of thread 1 15 declared at annotate_ignore_write.c:10, in frame #? of thread 1
|
D | annotate_ignore_rw2.stderr.exp | 5 declared at annotate_ignore_rw.c:11, in frame #? of thread 1 10 declared at annotate_ignore_rw.c:10, in frame #? of thread 1 15 declared at annotate_ignore_rw.c:12, in frame #? of thread 1
|
/external/clang/test/ARCMT/ |
D | atautorelease-check.m | 104 // 'x' is declared inside the "pool scope" but used outside it, if we create 106 int x = 0; // expected-note {{declared here}} 110 …expected-error {{a name is referenced outside the NSAutoreleasePool scope that it was declared in}} 117 struct S { int x; }; // expected-note {{declared here}} 121 …expected-error {{a name is referenced outside the NSAutoreleasePool scope that it was declared in}} 129 enum { Bar }; // expected-note {{declared here}} 133 …expected-error {{a name is referenced outside the NSAutoreleasePool scope that it was declared in}} 140 typedef int Bar; // expected-note {{declared here}} 144 …expected-error {{a name is referenced outside the NSAutoreleasePool scope that it was declared in}}
|
/external/clang/test/SemaObjCXX/ |
D | 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}}
|
12345678910>>...18