HomeSort by relevance Sort by last modified time
    Searched refs:propertyList (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/win/
QTCFDictionary.cpp 33 CFDataRef QTCFPropertyListCreateXMLData(CFAllocatorRef allocator, CFPropertyListRef propertyList)
36 typedef CFDataRef (* pfnCFPropertyListCreateXMLData)(CFAllocatorRef allocator, CFPropertyListRef propertyList);
45 return pCFPropertyListCreateXMLData(allocator, propertyList);
  /external/webkit/Source/WebCore/platform/network/mac/
NetworkStateNotifierMac.cpp 47 RetainPtr<CFPropertyListRef> propertyList(AdoptCF, SCDynamicStoreCopyValue(m_store.get(), str.get()));
49 if (!propertyList)
52 if (CFGetTypeID(propertyList.get()) != CFDictionaryGetTypeID())
55 CFArrayRef netInterfaces = (CFArrayRef)CFDictionaryGetValue((CFDictionaryRef)propertyList.get(), kSCDynamicStorePropNetInterfaces);
  /external/webkit/Source/WebCore/loader/archive/cf/
LegacyWebArchive.cpp 73 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.get(), LegacyWebArchiveResourceMIMETypeKey, cfMIMEType.get())
    [all...]
  /external/webkit/Tools/DumpRenderTree/cf/
WebArchiveDumpSupport.cpp 106 static void convertWebResourceResponseToDictionary(CFMutableDictionaryRef propertyList)
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/WebKit2/UIProcess/cf/
WebPageProxyCF.cpp 123 RetainPtr<CFPropertyListRef> propertyList(AdoptCF, CFPropertyListCreateFromXMLData(0, data.get(), kCFPropertyListImmutable, &propertyListError));
130 if (!propertyList)
133 if (CFGetTypeID(propertyList.get()) != CFDictionaryGetTypeID()) {
134 LOG(SessionState, "SessionState property list is not a CFDictionaryRef (%i) - its CFTypeID is %i", (int)CFDictionaryGetTypeID(), (int)CFGetTypeID(propertyList.get()));
139 if (CFTypeRef value = CFDictionaryGetValue(static_cast<CFDictionaryRef>(propertyList.get()), SessionHistoryKey())) {
147 if (CFTypeRef value = CFDictionaryGetValue(static_cast<CFDictionaryRef>(propertyList.get()), ProvisionalURLKey())) {
  /external/webkit/Tools/DumpRenderTree/mac/
DumpRenderTreePasteboard.m 180 - (BOOL)setPropertyList:(id)propertyList forType:(NSString *)dataType
183 if (propertyList)
184 data = CFPropertyListCreateXMLData(NULL, propertyList);
  /external/webkit/Source/WebCore/plugins/mac/
PluginPackageMac.cpp 89 WTF::RetainPtr<CFPropertyListRef> propertyList =
94 if (!propertyList)
97 if (CFGetTypeID(propertyList.get()) != CFDictionaryGetTypeID())
100 map = static_cast<CFDictionaryRef>(static_cast<CFPropertyListRef>(propertyList.get()));
  /external/webkit/Source/WebKit2/Shared/Plugins/Netscape/mac/
NetscapePluginModuleMac.mm 99 RetainPtr<CFPropertyListRef> propertyList(AdoptCF, CFPropertyListCreateWithData(kCFAllocatorDefault, propertyListData, kCFPropertyListImmutable, 0, 0));
105 if (!propertyList || CFGetTypeID(propertyList.get()) != CFDictionaryGetTypeID())
108 return static_cast<CFDictionaryRef>(CFDictionaryGetValue(static_cast<CFDictionaryRef>(propertyList.get()), CFSTR("WebPluginMIMETypes")));
  /frameworks/base/media/java/android/mtp/
MtpDatabase.java 679 int[] propertyList = getSupportedObjectProperties(format);
680 propertyGroup = new MtpPropertyGroup(this, mMediaProvider, mVolumeName, propertyList);
686 int[] propertyList = new int[] { (int)property };
687 propertyGroup = new MtpPropertyGroup(this, mMediaProvider, mVolumeName, propertyList);
    [all...]
  /external/chromium/chrome/common/extensions/docs/js/
api_page_generator.js 505 var propertyList = [];
509 propertyList.push(prop);
511 return propertyList;
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.cpp 67 #define TreePropertyList typename TreeBuilder::PropertyList
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 376 milliseconds