Lines Matching full:nsmutabledictionary
5 @interface NSMutableDictionary
12 base[key] = obj; // expected-error {{expected method to write array element not found on object of type 'NSMutableDictionary *'}} \
14 obj = base[key]; // expected-error {{expected method to read array element not found on object of type 'NSMutableDictionary *'}} \
19 template void test_dictionary_subscripts(NSMutableDictionary*, id, NSArray *ns);
21 template void test_dictionary_subscripts(NSMutableDictionary*, NSArray *ns, id);
23 template void test_dictionary_subscripts(NSMutableDictionary*, int, id); // expected-note {{in instantiation of function template specialization 'test_dictionary_subscripts<NSMutableDictionary *, int, id>' requested here}}
25 template void test_dictionary_subscripts(NSMutableDictionary*, id, int); // expected-note {{in instantiation of function template specialization 'test_dictionary_subscripts<NSMutableDictionary *, id, int>' requested here}}
81 id test_dict_convertibility(ConvertibleTo<NSMutableDictionary*> toDict,
85 ExplicitlyConvertibleTo<NSMutableDictionary *> toDictExplicit) {
88 NSMutableDictionary *Dict;
96 Id = toDictExplicit[toId] = Id; // expected-error {{no viable overloaded operator[] for type 'ExplicitlyConvertibleTo<NSMutableDictionary *>'}}
122 template void test_variadic_dictionary_subscripting(Key *key, id arg1, NSMutableDictionary* arg2, id arg3);