• Home
  • Raw
  • Download

Lines Matching refs:property

8 @property int d1;
9property id prop_id; // expected-warning {{no 'assign', 'retain', or 'copy' attribute is specifie…
10 @property int name;
14 @property int d1; // expected-note 2 {{property declared here}}
18 @synthesize d1; // expected-error {{synthesized property 'd1' must either be named the same as}}
19 @dynamic bad; // expected-error {{property implementation must have its declaration in interface…
20 @synthesize prop_id; // expected-error {{synthesized property 'prop_id' must either be named the sa…
21 …ted-error {{type of property 'prop_id' ('id') does not match type of instance variable 'IVAR' ('in…
22 @synthesize name; // OK! property with same name as an accessible ivar of same name
25 @implementation I(CAT) // expected-warning {{property 'd1' requires method 'd1' to be defined }} \
26 … // expected-warning {{property 'd1' requires method 'setD1:' to be defined }}
28 @dynamic bad; // expected-error {{property implementation must have its declaration in the categor…
32 @dynamic d; // expected-error {{property implementation must have its declaration in interface 'E'…
36 @dynamic d; // expected-error {{property implementation in a category with no category declaration…
40 @property double bar;
54 @property(copy) BYObjectIdentifier identifier;
61 @property int treeController; // expected-note {{property declared here}}
62 @property int ivar; // OK
63 @property int treeController; // expected-error {{property has a previous declaration}}
67 @synthesize window; // expected-error {{missing context for property implementation declaration}}
79 @property unsigned length;