Lines Matching refs:property
2 …ang_cc1 -fblocks -objcmt-migrate-readwrite-property -objcmt-migrate-readonly-property -objcmt-atom…
24 @property (weak) NSString *WeakProp;
26 @property (strong) NSString *StrongProp;
28 @property (strong) NSString *UnavailProp __attribute__((unavailable));
31 @property (strong) NSString *UnavailProp1 __attribute__((unavailable));
33 @property (strong) NSString *UnavailProp2;
36 @property (copy) NSDictionary *undoAction;
51 @property (strong) NSArray *names2;
52 @property (strong) NSArray *names3;
53 @property (strong) NSArray *names4;
54 @property (strong) NSArray *names1;
60 @property (assign) id target;
62 @property (assign) id dataSource;
64 @property (assign) id xxxdelegateYYY;
67 @property (strong) id MYtarget;
69 @property (strong) id targetX;
71 @property int value;
73 @property (getter=isContinuous) BOOL continuous;
78 @property (getter=isinValid, readonly) BOOL inValid;
82 @property (readonly) int Length;
83 @property (readonly, strong) id object;
85 @property (readonly) void *JSObject WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_WEBKIT_VERSION_3_0_AND_…
86 @property (getter=isIgnoringInteractionEvents, readonly) BOOL ignoringInteractionEvents;
88 @property (getter=getStringValue, strong) NSString *stringValue;
89 @property (getter=getCounterValue, readonly) BOOL counterValue;
90 @property (getter=getns_dixtionary, readonly, copy) NSDictionary *ns_dixtionary;
95 @property (getter=getM, readonly) BOOL m;
96 @property (getter=getMA, readonly) BOOL MA;
97 @property (getter=getALL, readonly) BOOL ALL;
98 @property (getter=getMANY, readonly) BOOL MANY;
99 @property (getter=getSome, readonly) BOOL some;
104 @property (assign) id target;
106 @property (assign) id dataSource;
108 @property (assign) id xxxdelegateYYY;
111 @property (strong) id MYtarget;
113 @property (strong) id targetX;
115 @property int value;
117 @property (getter=isContinuous) BOOL continuous;
122 @property (getter=isinValid, readonly) BOOL inValid;
126 @property (readonly) int Length;
127 @property (readonly, strong) id object;
133 @property (getter=getM, readonly) BOOL m;
134 @property (getter=getMA, readonly) BOOL MA;
135 @property (getter=getALL, readonly) BOOL ALL;
136 @property (getter=getMANY, readonly) BOOL MANY;
137 @property (getter=getSome, readonly) BOOL some;
163 // Do not infer a property.
164 @property (strong) NSURL *appStoreReceiptURL NS_AVAILABLE;
167 @property (strong) NSURL *appStoreReceiptURLX NS_AVAILABLE;
169 // Do not infer a property.
170 @property (strong) NSURL *appStoreReceiptURLY ;
173 @property (readonly, strong) id OkToInfer NS_AVAILABLE;
175 // Do not infer a property.
176 @property (strong) NSURL *appStoreReceiptURLZ ;
179 // Do not infer a property.
183 @property (strong) id method1 ALIGNED NS_AVAILABLE;
188 - (BOOL)is1stClass; // Not a valid property
189 @property (getter=isClass, readonly) BOOL class; // This is a valid property 'class' is not a ke…
190 - (BOOL)isDouble; // Not a valid property
198 @property (readonly, copy) id (^expressionBlock)(id, NSArray *, NSMutableDictionary *);
199 @property (copy) id (^MyBlock)(id, NSArray *, NSMutableDictionary *);
200 @property (readonly) id (*expressionFuncptr)(id, NSArray *, NSMutableDictionary *);
201 @property id (*MyFuncptr)(id, NSArray *, NSMutableDictionary *);