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

  /external/webkit/JavaScriptGlue/
UserObjectImp.cpp 176 CFTypeRef cfValue = jsObjPtr ? jsObjPtr->CopyCFValue() : 0;
177 if (cfValue) {
178 CFTypeID cfType = CFGetTypeID(cfValue); // toPrimitive
179 if (cfValue == GetCFNull()) {
183 if (cfValue == kCFBooleanTrue) {
189 result = jsString(exec, CFStringToUString((CFStringRef)cfValue));
192 CFNumberGetValue((CFNumberRef)cfValue, kCFNumberDoubleType, &d);
195 CFURLRef absURL = CFURLCopyAbsoluteURL((CFURLRef)cfValue);
201 ReleaseCFType(cfValue);
213 CFTypeRef cfValue = jsObjPtr ? jsObjPtr->CopyCFValue() : 0
    [all...]
JSUtils.cpp 308 CFTypeRef cfValue = KJSValueToCFTypeInternal(object->get(exec, i), exec, &imps);
309 CFArrayAppendValue((CFMutableArrayRef)result, cfValue);
310 ReleaseCFType(cfValue);
334 CFTypeRef cfValue = KJSValueToCFTypeInternal(object->get(exec, propName), exec, &imps);
335 if (cfKey && cfValue)
337 CFDictionaryAddValue((CFMutableDictionaryRef)result, cfKey, cfValue);
340 ReleaseCFType(cfValue);
JavaScriptGlue.cpp 486 CFTypeRef cfValue = JSObjectCopyCFValue(jsValue);
488 if (cfValue)
492 CFDictionarySetValue((CFMutableDictionaryRef)data, propertyName, cfValue);
504 CFArraySetValueAtIndex((CFMutableArrayRef)data, index, cfValue);
507 CFRelease(cfValue);
609 CFTypeRef cfvalue = JSObjectCopyCFValue(jsValue); local
610 if (cfvalue)
612 CFArrayAppendValue(cfArray, cfvalue);
613 CFRelease(cfvalue);
637 CFTypeRef cfValue = (CFTypeRef)CFArrayGetValueAtIndex(array, i)
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
WKCACFLayer.h 66 static RetainPtr<CFTypeRef> cfValue(float value) { return RetainPtr<CFTypeRef>(AdoptCF, CFNumberCreate(0, kCFNumberFloat32Type, &value)); }
67 static RetainPtr<CFTypeRef> cfValue(const TransformationMatrix& value)
88 static RetainPtr<CFTypeRef> cfValue(const FloatPoint& value)
94 static RetainPtr<CFTypeRef> cfValue(const FloatRect& rect)
104 static RetainPtr<CFTypeRef> cfValue(const Color& color)

Completed in 464 milliseconds