OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:leakRef
(Results
1 - 25
of
35
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImplMac.mm
45
return HardAutorelease(createCFString().
leakRef
());
AtomicString.cpp
136
location = StringImpl::create(c).
leakRef
();
172
location = StringImpl::create8BitIfPossible(buf.s, buf.length).
leakRef
();
200
location = StringImpl::create(buffer.characters, buffer.length).
leakRef
();
270
location = newString.release().
leakRef
();
339
location = buffer.baseString->substring(buffer.start, buffer.length).
leakRef
();
378
location = StringImpl::create(buf.s, buf.length).
leakRef
();
398
location = StringImpl::create(buf.s, buf.length).
leakRef
();
/external/chromium_org/third_party/WebKit/public/platform/
WebPrivatePtr.h
85
: m_ptr(prp.
leakRef
())
105
assign(prp.
leakRef
());
/external/chromium_org/third_party/WebKit/Source/platform/exported/
WebThreadSafeData.cpp
65
: m_private(data.
leakRef
())
WebHTTPBody.cpp
46
assign(static_cast<WebHTTPBodyPrivate*>(FormData::create().
leakRef
()));
172
: m_private(static_cast<WebHTTPBodyPrivate*>(data.
leakRef
()))
178
assign(static_cast<WebHTTPBodyPrivate*>(data.
leakRef
()));
199
assign(static_cast<WebHTTPBodyPrivate*>(m_private->copy().
leakRef
()));
/external/chromium_org/third_party/WebKit/Source/web/
WebNodeList.cpp
58
: m_private(static_cast<NodeList*>(col.
leakRef
()))
WebNotification.cpp
128
: m_private(static_cast<WebNotificationPrivate*>(notification.
leakRef
()))
134
assign(static_cast<WebNotificationPrivate*>(notification.
leakRef
()));
WebNodeCollection.cpp
58
: m_private(static_cast<HTMLCollection*>(col.
leakRef
()))
WebSecurityOrigin.cpp
132
: m_private(static_cast<WebSecurityOriginPrivate*>(origin.
leakRef
()))
138
assign(static_cast<WebSecurityOriginPrivate*>(origin.
leakRef
()));
WebDragData.cpp
54
assign(static_cast<WebDragDataPrivate*>(ChromiumDataObject::create().
leakRef
()));
149
: m_private(static_cast<WebDragDataPrivate*>(data.
leakRef
()))
155
assign(static_cast<WebDragDataPrivate*>(data.
leakRef
()));
WebRange.cpp
147
: m_private(static_cast<WebRangePrivate*>(range.
leakRef
()))
153
assign(static_cast<WebRangePrivate*>(range.
leakRef
()));
WebHelperPluginImpl.cpp
274
return adoptRef(new WebHelperPluginImpl(client)).
leakRef
();
WebPagePopupImpl.cpp
343
return adoptRef(new WebPagePopupImpl(client)).
leakRef
();
WebPopupMenuImpl.cpp
64
return adoptRef(new WebPopupMenuImpl(client)).
leakRef
();
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AsyncAudioDecoder.cpp
61
m_thread->postTask(new Task(WTF::bind(&AsyncAudioDecoder::decode, audioDataRef.release().
leakRef
(), sampleRate, successCallback.leakPtr(), errorCallback.leakPtr())));
71
callOnMainThread(WTF::bind(&AsyncAudioDecoder::notifyComplete, audioData, successCallback, errorCallback, audioBuffer.release().
leakRef
()));
/external/chromium_org/third_party/WebKit/Source/wtf/
PassRefPtr.h
67
PassRefPtr(const PassRefPtr& o) : m_ptr(o.
leakRef
()) { }
68
template<typename U> PassRefPtr(const PassRefPtr<U>& o, EnsurePtrConvertibleArgDecl(U, T)) : m_ptr(o.
leakRef
()) { }
76
T*
leakRef
() const WARN_UNUSED_RETURN;
105
template<typename T> inline T* PassRefPtr<T>::
leakRef
() const
170
return adoptRef(static_cast<T*>(p.
leakRef
()));
RetainPtr.h
78
RetainPtr(RetainPtr&& o) : m_ptr(o.
leakRef
()) { }
90
PtrType
leakRef
() WARN_UNUSED_RETURN;
144
template<typename T> inline typename RetainPtr<T>::PtrType RetainPtr<T>::
leakRef
()
200
adoptCF(o.
leakRef
());
206
adoptCF(o.
leakRef
());
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableStrokeDasharrayList.cpp
73
zeroPixels = AnimatableSVGLength::create(length).
leakRef
();
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLCallbackWrapper.h
72
context = m_executionContext.release().
leakRef
();
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
FontCustomPlatformDataMac.cpp
75
return adoptPtr(new FontCustomPlatformData(cgFontRef.
leakRef
(), typeface.release()));
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8DOMWrapper.h
84
DOMDataStore::setWrapper<V8T>(object.
leakRef
(), wrapper, isolate, configuration);
/external/chromium_org/third_party/WebKit/Source/core/dom/
QualifiedName.cpp
72
location = QualifiedName::QualifiedNameImpl::create(AtomicString(components.m_prefix), AtomicString(components.m_localName), AtomicString(components.m_namespace)).
leakRef
();
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSDefaultStyleSheets.cpp
74
StyleSheetContents* sheet = StyleSheetContents::create(CSSParserContext(UASheetMode)).
leakRef
(); // leak the sheet on purpose
CSSPrimitiveValue.cpp
379
m_value.counter = c.
leakRef
();
386
m_value.rect = r.
leakRef
();
393
m_value.quad = quad.
leakRef
();
400
m_value.pair = p.
leakRef
();
407
m_value.calc = c.
leakRef
();
414
m_value.shape = shape.
leakRef
();
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontCache.cpp
172
return getLastResortFallbackFont(fontDescription, DoNotRetain).
leakRef
();
Completed in 303 milliseconds
1
2