Home | History | Annotate | Download | only in mac

Lines Matching refs:dictionary

46     RetainPtr<CFDictionaryRef> dictionary(AdoptCF, WKNSURLRequestCreateSerializableRepresentation(resourceRequest.nsURLRequest(), CoreIPC::tokenNullTypeRef()));
47 encode(encoder, dictionary.get());
61 RetainPtr<CFDictionaryRef> dictionary;
62 if (!decode(decoder, dictionary))
65 NSURLRequest *nsURLRequest = WKNSURLRequestFromSerializableRepresentation(dictionary.get(), CoreIPC::tokenNullTypeRef());
81 RetainPtr<CFDictionaryRef> dictionary(AdoptCF, WKNSURLResponseCreateSerializableRepresentation(resourceResponse.nsURLResponse(), CoreIPC::tokenNullTypeRef()));
82 encode(encoder, dictionary.get());
96 RetainPtr<CFDictionaryRef> dictionary;
97 if (!decode(decoder, dictionary))
100 NSURLResponse* nsURLResponse = WKNSURLResponseFromSerializableRepresentation(dictionary.get(), CoreIPC::tokenNullTypeRef());