Lines Matching refs:expected

46   NSMutableArray *_array; // expected-note {{'_array' declared here}}
47 NSMutableDictionary *_dictionary; // expected-note {{'_dictionary' declared here}}
48 NSMutableSet *_set; // expected-note {{'_set' declared here}}
49 NSCountedSet *_countedSet; // expected-note {{'_countedSet' declared here}}
50 NSMutableOrderedSet *_orderedSet; // expected-note {{'_orderedSet' declared here}}
57 …[_array addObject:_array]; // expected-warning {{adding '_array' to '_array' might cause circular …
58 …[_dictionary setObject:_dictionary forKey:@"key"]; // expected-warning {{adding '_dictionary' to '…
59 …[_set addObject:_set]; // expected-warning {{adding '_set' to '_set' might cause circular dependen…
60 …[_countedSet addObject:_countedSet]; // expected-warning {{adding '_countedSet' to '_countedSet' m…
61 …[_orderedSet addObject:_orderedSet]; // expected-warning {{adding '_orderedSet' to '_orderedSet' m…
64 - (void)checkNSMutableArray:(NSMutableArray *)a { // expected-note {{'a' declared here}}
65 …[a addObject:a]; // expected-warning {{adding 'a' to 'a' might cause circular dependency in contai…
68 - (void)checkNSMutableDictionary:(NSMutableDictionary *)d { // expected-note {{'d' declared here}}
69 …[d setObject:d forKey:@"key"]; // expected-warning {{adding 'd' to 'd' might cause circular depend…
72 - (void)checkNSMutableSet:(NSMutableSet *)s { // expected-note {{'s' declared here}}
73 …[s addObject:s]; // expected-warning {{adding 's' to 's' might cause circular dependency in contai…
76 - (void)checkNSCountedSet:(NSCountedSet *)s { // expected-note {{'s' declared here}}
77 …[s addObject:s]; // expected-warning {{adding 's' to 's' might cause circular dependency in contai…
80 - (void)checkNSMutableOrderedSet:(NSMutableOrderedSet *)s { // expected-note {{'s' declared here}}
81 …[s addObject:s]; // expected-warning {{adding 's' to 's' might cause circular dependency in contai…
86 void checkNSMutableArrayParam(NSMutableArray *a) { // expected-note {{'a' declared here}}
87 …[a addObject:a]; // expected-warning {{adding 'a' to 'a' might cause circular dependency in contai…
90 void checkNSMutableDictionaryParam(NSMutableDictionary *d) { // expected-note {{'d' declared here}}
91 …[d setObject:d forKey:@"key"]; // expected-warning {{adding 'd' to 'd' might cause circular depend…
94 void checkNSMutableSetParam(NSMutableSet *s) { // expected-note {{'s' declared here}}
95 …[s addObject:s]; // expected-warning {{adding 's' to 's' might cause circular dependency in contai…
98 void checkNSCountedSetParam(NSCountedSet *s) { // expected-note {{'s' declared here}}
99 …[s addObject:s]; // expected-warning {{adding 's' to 's' might cause circular dependency in contai…
102 void checkNSMutableOrderedSetParam(NSMutableOrderedSet *s) { // expected-note {{'s' declared here}}
103 …[s addObject:s]; // expected-warning {{adding 's' to 's' might cause circular dependency in contai…
107 NSMutableArray *a = nil; // expected-note 5 {{'a' declared here}} 5
109 …[a addObject:a]; // expected-warning {{adding 'a' to 'a' might cause circular dependency in contai…
110 …[a insertObject:a atIndex:0]; // expected-warning {{adding 'a' to 'a' might cause circular depende…
111 …[a replaceObjectAtIndex:0 withObject:a]; // expected-warning {{adding 'a' to 'a' might cause circu…
112 …[a setObject:a atIndexedSubscript:0]; // expected-warning {{adding 'a' to 'a' might cause circular…
113 a[0] = a; // expected-warning {{adding 'a' to 'a' might cause circular dependency in container}}
117 NSMutableDictionary *d = nil; // expected-note 4 {{'d' declared here}}
119 …[d setObject:d forKey:@"key"]; // expected-warning {{adding 'd' to 'd' might cause circular depend…
120 …[d setObject:d forKeyedSubscript:@"key"]; // expected-warning {{adding 'd' to 'd' might cause circ…
121 …[d setValue:d forKey:@"key"]; // expected-warning {{adding 'd' to 'd' might cause circular depende…
122 …d[@"key"] = d; // expected-warning {{adding 'd' to 'd' might cause circular dependency in containe…
126 NSMutableSet *s = nil; // expected-note {{'s' declared here}}
128 …[s addObject:s]; // expected-warning {{adding 's' to 's' might cause circular dependency in contai…
132 NSCountedSet *s = nil; // expected-note {{'s' declared here}}
134 …[s addObject:s]; // expected-warning {{adding 's' to 's' might cause circular dependency in contai…
138 NSMutableOrderedSet *s = nil; // expected-note 5 {{'s' declared here}}
140 …[s addObject:s]; // expected-warning {{adding 's' to 's' might cause circular dependency in contai…
141 …[s insertObject:s atIndex:0]; // expected-warning {{adding 's' to 's' might cause circular depende…
142 …[s setObject:s atIndex:0]; // expected-warning {{adding 's' to 's' might cause circular dependency…
143 …[s setObject:s atIndexedSubscript:0]; // expected-warning {{adding 's' to 's' might cause circular…
144 …[s replaceObjectAtIndex:0 withObject:s]; // expected-warning {{adding 's' to 's' might cause circu…