Lines Matching refs:mutable
18 NSMutableSet* mutable = [NSMutableSet setWithCapacity:5];
19 [mutable addObject:@1];
20 [mutable addObject:@2];
21 [mutable addObject:@3];
22 [mutable addObject:@4];
23 [mutable addObject:@5];
24 [mutable addObject:[NSURL URLWithString:@"www.apple.com"]];
25 [mutable addObject:@[@1,@2,@3]];
26 [mutable unionSet:set];
27 [mutable removeAllObjects]; // Set break point at this line.
28 [mutable unionSet:set];
29 [mutable addObject:@1];