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

/external/webkit/Source/JavaScriptGlue/
H A DJSUtils.cpp154 CFTypeRef cfType = (CFTypeRef*)ptr->GetData(); local
155 if (cfType)
157 CFTypeID typeID = CFGetTypeID(cfType);
160 result = jsString(getThreadGlobalExecState(), CFStringToUString((CFStringRef)cfType));
166 CFNumberGetValue((CFNumberRef)cfType, kCFNumberDoubleType, &num);
172 result = jsBoolean(CFBooleanGetValue((CFBooleanRef)cfType));
H A DUserObjectImp.cpp173 CFTypeID cfType = CFGetTypeID(cfValue); // toPrimitive local
177 else if (cfType == CFBooleanGetTypeID()) {
183 } else if (cfType == CFStringGetTypeID()) {
185 } else if (cfType == CFNumberGetTypeID()) {
189 } else if (cfType == CFURLGetTypeID()) {
211 CFTypeID cfType = CFGetTypeID(cfValue); // toPrimitive local
216 else if (cfType == CFBooleanGetTypeID())
223 else if (cfType == CFStringGetTypeID())
230 else if (cfType == CFNumberGetTypeID())
244 else if (cfType
291 CFTypeID cfType = CFGetTypeID(cfValue); local
325 CFTypeID cfType = CFGetTypeID(cfValue); local
[all...]
H A DJavaScriptGlue.cpp568 CFTypeID cfType = CFGetTypeID(data); local
569 if (cfType == CFDictionaryGetTypeID())
/external/webkit/Source/WebCore/platform/graphics/win/
H A DQTMovie.cpp794 CFStringRef cfType = CFStringCreateWithCString(kCFAllocatorDefault, type, kCFStringEncodingMacRoman); local
795 if (!cfType)
799 if (CFStringHasPrefix(cfType, CFSTR("audio/")) || CFStringHasPrefix(cfType, CFSTR("video/"))) {
801 if (!CFArrayContainsValue(gSupportedTypes, range, cfType))
802 CFArrayAppendValue(gSupportedTypes, cfType);
805 CFRelease(cfType);

Completed in 88 milliseconds