Home | History | Annotate | Download | only in mac

Lines Matching refs:dictionary

124         RetainPtr<NSDictionary> dictionary;
125 if (!decode(decoder, dictionary))
127 result = dictionary;
244 void encode(ArgumentEncoder* encoder, NSDictionary *dictionary)
248 NSUInteger size = [dictionary count];
249 NSArray *keys = [dictionary allKeys];
250 NSArray *values = [dictionary allValues];
276 RetainPtr<NSMutableDictionary> dictionary(AdoptNS, [[NSMutableDictionary alloc] initWithCapacity:size]);
287 [dictionary.get() setObject:value.get() forKey:key.get()];
290 result.adoptCF(dictionary.leakRef());