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

  /external/webkit/Source/JavaScriptGlue/
UserObjectImp.cpp 173 CFTypeID cfType = CFGetTypeID(cfValue); // toPrimitive
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
216 else if (cfType == CFBooleanGetTypeID())
223 else if (cfType == CFStringGetTypeID())
230 else if (cfType == CFNumberGetTypeID())
244 else if (cfType == CFArrayGetTypeID()
    [all...]
JSUtils.cpp 154 CFTypeRef cfType = (CFTypeRef*)ptr->GetData();
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));
JavaScriptGlue.cpp 568 CFTypeID cfType = CFGetTypeID(data);
569 if (cfType == CFDictionaryGetTypeID())
  /external/webkit/Source/WebCore/platform/graphics/win/
QTMovie.cpp 794 CFStringRef cfType = CFStringCreateWithCString(kCFAllocatorDefault, type, kCFStringEncodingMacRoman);
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);
  /external/webkit/Source/WebKit/win/
WebPreferences.cpp 74 CFTypeID cfType = CFGetTypeID(value);
75 if (cfType == CFStringGetTypeID())
77 else if (cfType == CFBooleanGetTypeID()) {
80 } else if (cfType == CFNumberGetTypeID()) {
    [all...]

Completed in 95 milliseconds