Home
last modified time | relevance | path

Searched refs:propertyList (Results 1 – 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/loader/archive/cf/
DLegacyWebArchive.cpp73 … RetainPtr<CFMutableDictionaryRef> propertyList(AdoptCF, CFDictionaryCreateMutable(0, 3, 0, 0)); in createPropertyListRepresentation() local
74 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceDataKey, 0); in createPropertyListRepresentation()
75 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceURLKey, 0); in createPropertyListRepresentation()
76 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceMIMETypeKey, 0); in createPropertyListRepresentation()
77 return propertyList; in createPropertyListRepresentation()
80 …RetainPtr<CFMutableDictionaryRef> propertyList(AdoptCF, CFDictionaryCreateMutable(0, 6, 0, &kCFTyp… in createPropertyListRepresentation() local
89 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceDataKey, cfData.get()); in createPropertyListRepresentation()
94 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceURLKey, cfURL.get()); in createPropertyListRepresentation()
104 … CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceFrameNameKey, cfFrameName.get()); in createPropertyListRepresentation()
111 … CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceMIMETypeKey, cfMIMEType.get()); in createPropertyListRepresentation()
[all …]
/external/webkit/Tools/DumpRenderTree/cf/
DWebArchiveDumpSupport.cpp106 static void convertWebResourceResponseToDictionary(CFMutableDictionaryRef propertyList) in convertWebResourceResponseToDictionary() argument
108 …CFDataRef responseData = static_cast<CFDataRef>(CFDictionaryGetValue(propertyList, CFSTR("WebResou… in convertWebResourceResponseToDictionary()
145 CFDictionarySetValue(propertyList, CFSTR("WebResourceResponse"), responseDictionary.get()); in convertWebResourceResponseToDictionary()
165 …RetainPtr<CFMutableDictionaryRef> propertyList(AdoptCF, (CFMutableDictionaryRef)CFPropertyListCrea… in createXMLStringFromWebArchiveData() local
168 …RetainPtr<CFMutableDictionaryRef> propertyList(AdoptCF, (CFMutableDictionaryRef)CFPropertyListCrea… in createXMLStringFromWebArchiveData() local
171 if (!propertyList) { in createXMLStringFromWebArchiveData()
178 CFArrayAppendValue(resources.get(), propertyList.get()); in createXMLStringFromWebArchiveData()
212 …<CFDataRef> xmlData(AdoptCF, CFPropertyListCreateXMLData(kCFAllocatorDefault, propertyList.get())); in createXMLStringFromWebArchiveData()
214 …taRef> xmlData(AdoptCF, CFPropertyListCreateData(kCFAllocatorDefault, propertyList.get(), kCFPrope… in createXMLStringFromWebArchiveData()
/external/webkit/Source/WebCore/platform/graphics/win/
DQTCFDictionary.cpp33 CFDataRef QTCFPropertyListCreateXMLData(CFAllocatorRef allocator, CFPropertyListRef propertyList) in QTCFPropertyListCreateXMLData() argument
36 …taRef (* pfnCFPropertyListCreateXMLData)(CFAllocatorRef allocator, CFPropertyListRef propertyList); in QTCFPropertyListCreateXMLData()
45 return pCFPropertyListCreateXMLData(allocator, propertyList); in QTCFPropertyListCreateXMLData()
/external/webkit/Source/WebKit2/UIProcess/cf/
DWebPageProxyCF.cpp123 …RetainPtr<CFPropertyListRef> propertyList(AdoptCF, CFPropertyListCreateFromXMLData(0, data.get(), … in restoreFromSessionStateData() local
130 if (!propertyList) in restoreFromSessionStateData()
133 if (CFGetTypeID(propertyList.get()) != CFDictionaryGetTypeID()) { in restoreFromSessionStateData()
134 …ef (%i) - its CFTypeID is %i", (int)CFDictionaryGetTypeID(), (int)CFGetTypeID(propertyList.get())); in restoreFromSessionStateData()
139 …if (CFTypeRef value = CFDictionaryGetValue(static_cast<CFDictionaryRef>(propertyList.get()), Sessi… in restoreFromSessionStateData()
147 …if (CFTypeRef value = CFDictionaryGetValue(static_cast<CFDictionaryRef>(propertyList.get()), Provi… in restoreFromSessionStateData()
/external/webkit/Source/WebCore/platform/network/mac/
DNetworkStateNotifierMac.cpp47 …RetainPtr<CFPropertyListRef> propertyList(AdoptCF, SCDynamicStoreCopyValue(m_store.get(), str.get(… in updateState() local
49 if (!propertyList) in updateState()
52 if (CFGetTypeID(propertyList.get()) != CFDictionaryGetTypeID()) in updateState()
55 …CFArrayRef netInterfaces = (CFArrayRef)CFDictionaryGetValue((CFDictionaryRef)propertyList.get(), k… in updateState()
/external/webkit/Source/WebCore/plugins/mac/
DPluginPackageMac.cpp89 WTF::RetainPtr<CFPropertyListRef> propertyList = in readPListFile() local
94 if (!propertyList) in readPListFile()
97 if (CFGetTypeID(propertyList.get()) != CFDictionaryGetTypeID()) in readPListFile()
100 map = static_cast<CFDictionaryRef>(static_cast<CFPropertyListRef>(propertyList.get())); in readPListFile()
/external/webkit/Tools/DumpRenderTree/mac/
DDumpRenderTreePasteboard.m180 - (BOOL)setPropertyList:(id)propertyList forType:(NSString *)dataType
183 if (propertyList)
184 data = CFPropertyListCreateXMLData(NULL, propertyList);
/external/chromium/chrome/common/extensions/docs/js/
Dapi_page_generator.js505 var propertyList = [];
509 propertyList.push(prop);
511 return propertyList;
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/mac/
DNetscapePluginModuleMac.mm99 …RetainPtr<CFPropertyListRef> propertyList(AdoptCF, CFPropertyListCreateWithData(kCFAllocatorDefaul…
105 if (!propertyList || CFGetTypeID(propertyList.get()) != CFDictionaryGetTypeID())
108 …st<CFDictionaryRef>(CFDictionaryGetValue(static_cast<CFDictionaryRef>(propertyList.get()), CFSTR("…
/external/webkit/Source/JavaScriptCore/parser/
DJSParser.cpp1762 TreePropertyList propertyList = context.createPropertyList(property); in parseObjectLiteral() local
1763 TreePropertyList tail = propertyList; in parseObjectLiteral()
1781 return context.createObjectLiteral(propertyList); in parseObjectLiteral()
1802 TreePropertyList propertyList = context.createPropertyList(property); in parseStrictObjectLiteral() local
1803 TreePropertyList tail = propertyList; in parseStrictObjectLiteral()
1828 return context.createObjectLiteral(propertyList); in parseStrictObjectLiteral()
/external/webkit/Source/WebKit/mac/
DChangeLog-2006-02-0917606 …(-[WebDataSource propertyList]): does the above with all the data source data, this is what "Mail …