Lines Matching full:second
44 void test5(ObjCTy *first, __strong ObjCTy *second) EXT_RET {
46 second = 0; // fine
50 __strong ObjCTy *second) EXT_RET {
52 second = 0;
59 withThird:(ObjCTy *)second EXT_RET {
61 …second = 0; // expected-error{{variable declared with 'objc_externally_retained' cannot be modifie…
66 ^(__strong ObjCTy *first, ObjCTy *second) EXT_RET {
68 …second = 0; // expected-error{{variable declared with 'objc_externally_retained' cannot be modifie…
72 ^(__strong ObjCTy *first, ObjCTy *second) __attribute__((objc_externally_retained)) {
74 …second = 0; // expected-error{{variable declared with 'objc_externally_retained' cannot be modifie…
80 void test9(ObjCTy *first, __strong ObjCTy *second) {
82 second = 0;
84 void (^test10)(ObjCTy *first, ObjCTy *second) = ^(ObjCTy *first, __strong ObjCTy *second) {
86 second = 0;
90 -(void)meth: (ObjCTy *)first withSecond:(__strong ObjCTy *)second {
92 second = 0;
94 +(void)othermeth: (ObjCTy *)first withSecond:(__strong ObjCTy *)second {
96 second = 0;
102 void inline_member(ObjCTy *first, __strong ObjCTy *second) {
104 second = 0;
106 static void static_inline_member(ObjCTy *first, __strong ObjCTy *second) {
108 second = 0;
113 void test13(ObjCTy *first, __weak ObjCTy *second, __unsafe_unretained ObjCTy *third, __strong ObjCT…
115 second = 0;