Searched defs:propertyList (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/win/
H A DQTCFDictionary.cpp33 CFDataRef QTCFPropertyListCreateXMLData(CFAllocatorRef allocator, CFPropertyListRef propertyList) argument
36 typedef CFDataRef (* pfnCFPropertyListCreateXMLData)(CFAllocatorRef allocator, CFPropertyListRef propertyList);
45 return pCFPropertyListCreateXMLData(allocator, propertyList);
/external/webkit/Tools/DumpRenderTree/cf/
H A DWebArchiveDumpSupport.cpp106 static void convertWebResourceResponseToDictionary(CFMutableDictionaryRef propertyList) argument
108 CFDataRef responseData = static_cast<CFDataRef>(CFDictionaryGetValue(propertyList, CFSTR("WebResourceResponse"))); // WebResourceResponseKey in WebResource.m
145 CFDictionarySetValue(propertyList, CFSTR("WebResourceResponse"), responseDictionary.get());
165 RetainPtr<CFMutableDictionaryRef> propertyList(AdoptCF, (CFMutableDictionaryRef)CFPropertyListCreateFromStream(kCFAllocatorDefault, readStream.get(), bytesCount, kCFPropertyListMutableContainersAndLeaves, &format, 0));
168 RetainPtr<CFMutableDictionaryRef> propertyList(AdoptCF, (CFMutableDictionaryRef)CFPropertyListCreateWithData(kCFAllocatorDefault, webArchiveData, kCFPropertyListMutableContainersAndLeaves, &format, &error));
171 if (!propertyList) {
178 CFArrayAppendValue(resources.get(), propertyList.get());
212 RetainPtr<CFDataRef> xmlData(AdoptCF, CFPropertyListCreateXMLData(kCFAllocatorDefault, propertyList.get()));
214 RetainPtr<CFDataRef> xmlData(AdoptCF, CFPropertyListCreateData(kCFAllocatorDefault, propertyList.get(), kCFPropertyListXMLFormat_v1_0, 0, &error));
/external/webkit/Source/WebCore/loader/archive/cf/
H A DLegacyWebArchive.cpp73 RetainPtr<CFMutableDictionaryRef> propertyList(AdoptCF, CFDictionaryCreateMutable(0, 3, 0, 0));
74 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceDataKey, 0);
75 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceURLKey, 0);
76 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceMIMETypeKey, 0);
77 return propertyList;
80 RetainPtr<CFMutableDictionaryRef> propertyList(AdoptCF, CFDictionaryCreateMutable(0, 6, 0, &kCFTypeDictionaryValueCallBacks));
89 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceDataKey, cfData.get());
94 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceURLKey, cfURL.get());
104 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceFrameNameKey, cfFrameName.get());
111 CFDictionarySetValue(propertyList
371 RetainPtr<CFDictionaryRef> propertyList = createPropertyListRepresentation(this); local
[all...]
/external/webkit/Source/JavaScriptCore/parser/
H A DJSParser.cpp1762 TreePropertyList propertyList = context.createPropertyList(property); local
1763 TreePropertyList tail = propertyList;
1781 return context.createObjectLiteral(propertyList);
1802 TreePropertyList propertyList = context.createPropertyList(property); local
1803 TreePropertyList tail = propertyList;
1828 return context.createObjectLiteral(propertyList);

Completed in 159 milliseconds