Lines Matching full:filenames
7 - (id) filenames __attribute__((deprecated)); // expected-note {{'filenames' has been explicitly marked deprecated here}}
12 - (id) filenames __attribute__((deprecated));
13 - (id)initWithAccount: (id)account filenames:(id)filenames;
19 id p = [self initWithAccount : 0 filenames :[scope filenames]]; // expected-warning {{'filenames' may be deprecated because the receiver type is unknown}}
22 - (id) filenames { return 0; }
23 - (id)initWithAccount: (id)account filenames:(id)filenames { return 0; }