Home | History | Annotate | Download | only in SemaObjCXX

Lines Matching full:property

10 @property CFStringRef property;
20 id p1 = (id)[object property];
21 id p2 = (__bridge_transfer id)[object property];
22 id p3 = (__bridge id)[object property];
23 return (id) object.property;
52 x = (id) [object property];
53 x = (id) (cond ? [object property] : (void*) 0);
54 x = (id) (cond ? (void*) 0 : [object property]);
55 x = (id) (cond ? (CFStringRef) @"help" : [object property]);
57 x = (id) object.property;
58 x = (id) (cond ? object.property : (void*) 0);
59 x = (id) (cond ? (void*) 0 : object.property);
60 x = (id) (cond ? (CFStringRef) @"help" : object.property);