HomeSort by relevance Sort by last modified time
    Searched refs:leakRef (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/webkit/Source/WebKit2/Shared/API/c/cg/
WKImageCG.cpp 39 return toImpl(imageRef)->bitmap()->makeCGImageCopy().leakRef();
48 return toAPI(webImage.release().leakRef());
  /external/webkit/Source/WebKit2/Shared/API/c/mac/
WKCertificateInfoMac.mm 37 return toAPI(certificateInfo.release().leakRef());
  /external/webkit/Source/WebKit2/UIProcess/API/C/gtk/
WKView.cpp 43 return toAPI(view.release().leakRef());
58 return toCopiedURLAPI(StringImpl::create(url).leakRef());
  /external/webkit/Source/WebKit2/Shared/API/c/
WKUserContentURLPattern.cpp 42 return toAPI(userContentURLPattern.release().leakRef());
WKSecurityOrigin.cpp 42 return toAPI(securityOrigin.release().leakRef());
48 return toAPI(securityOrigin.release().leakRef());
WKSerializedScriptValue.cpp 43 return toAPI(serializedValue.release().leakRef());
49 return toAPI(serializedValue.release().leakRef());
WKContextMenuItem.cpp 45 return toAPI(WebContextMenuItem::create(WebContextMenuItemData(ActionType, toImpl(tag), toImpl(title)->string(), enabled, false)).leakRef());
50 return toAPI(WebContextMenuItem::create(WebContextMenuItemData(CheckableActionType, toImpl(tag), toImpl(title)->string(), enabled, checked)).leakRef());
55 return toAPI(WebContextMenuItem::create(toImpl(title)->string(), enabled, toImpl(submenuItems)).leakRef());
90 return toAPI(toImpl(itemRef)->submenuItemsAsImmutableArray().leakRef());
WKImage.cpp 42 return toAPI(webImage.release().leakRef());
WKURLRequest.cpp 43 return toAPI(WebURLRequest::create(KURL(KURL(), toImpl(url)->string())).leakRef());
WKURL.cpp 40 return toAPI(WebURL::create(String::fromUTF8(string)).leakRef());
WKString.cpp 42 return toAPI(webString.release().leakRef());
89 return toAPI(webString.release().leakRef());
  /external/webkit/Source/WebKit2/Shared/API/c/cf/
WKErrorCF.cpp 44 return cfError.leakRef();
  /external/webkit/Source/WebKit2/Shared/cg/
WebCoreArgumentCodersCG.cpp 42 // BitmapImage::create adopts the CGImageRef that's passed in, which is why we need to leakRef here.
43 return BitmapImage::create(platformImage.leakRef());
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKDownload.cpp 42 return toAPI(WebURLRequest::create(toImpl(download)->request()).leakRef());
WKPageGroup.cpp 43 return toAPI(pageGroup.release().leakRef());
  /external/webkit/Source/JavaScriptCore/API/
JSStringRefCF.cpp 48 return OpaqueJSString::create(reinterpret_cast<UChar*>(buffer.get()), length).leakRef();
50 return OpaqueJSString::create(0, 0).leakRef();
JSStringRef.cpp 39 return OpaqueJSString::create(chars, numChars).leakRef();
50 return OpaqueJSString::create(buffer.data(), p - buffer.data()).leakRef();
54 return OpaqueJSString::create().leakRef();
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleNavigationAction.cpp 60 return toAPI(hitTestResult.release().leakRef());
66 return toAPI(formElement.release().leakRef());
WKBundleBackForwardList.cpp 42 return toAPI(toImpl(listRef)->itemAtIndex(index).leakRef());
  /external/webkit/Source/WebKit2/Shared/API/c/win/
WKCertificateInfoWin.cpp 36 return toAPI(WebCertificateInfo::create(PlatformCertificateInfo(certificate)).leakRef());
  /external/webkit/Source/JavaScriptCore/wtf/
PassRefPtr.h 71 PassRefPtr(const PassRefPtr& o) : m_ptr(o.leakRef()) { }
72 template<typename U> PassRefPtr(const PassRefPtr<U>& o) : m_ptr(o.leakRef()) { }
81 T* leakRef() const WARN_UNUSED_RETURN;
102 // FIXME: Remove releaseRef once we change all callers to call leakRef instead.
103 T* releaseRef() const WARN_UNUSED_RETURN { return leakRef(); }
113 // begins life non-null, and can only become null through a call to leakRef()
137 : m_ptr(o.leakRef())
143 : m_ptr(o.leakRef())
149 : m_ptr(o.leakRef())
159 T* leakRef() const WARN_UNUSED_RETURN { T* tmp = m_ptr; m_ptr = 0; return tmp;
    [all...]
  /external/webkit/Source/WebCore/storage/
SQLCallbackWrapper.h 74 context = m_scriptExecutionContext.release().leakRef();
75 callback = m_callback.release().leakRef();
  /external/webkit/Source/WebKit2/Shared/
WebContextMenuItem.cpp 52 return adoptRef(new WebContextMenuItem(WebContextMenuItemData(WebCore::ContextMenuItemTagNoAction, title, enabled, submenu))).leakRef();
57 DEFINE_STATIC_LOCAL(WebContextMenuItem*, separatorItem, (adoptRef(new WebContextMenuItem(WebContextMenuItemData(WebCore::SeparatorType, WebCore::ContextMenuItemTagNoAction, String(), true, false))).leakRef()));
  /external/webkit/Source/WebKit2/UIProcess/API/C/win/
WKGrammarDetail.cpp 59 return toAPI(toImpl(grammarDetailRef)->guesses().leakRef());
  /external/webkit/Source/WebKit2/UIProcess/win/
WebTextChecker.cpp 38 static WebTextChecker* textChecker = adoptRef(new WebTextChecker).leakRef();

Completed in 1155 milliseconds

1 2 3