OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:leakref
(Results
1 - 25
of
50
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebData.cpp
62
SharedBuffer::create(data, size).
leakRef
()));
80
: m_private(static_cast<WebDataPrivate*>(buffer.
leakRef
()))
86
assign(static_cast<WebDataPrivate*>(buffer.
leakRef
()));
WebHTTPBody.cpp
46
assign(static_cast<WebHTTPBodyPrivate*>(FormData::create().
leakRef
()));
175
: m_private(static_cast<WebHTTPBodyPrivate*>(data.
leakRef
()))
181
assign(static_cast<WebHTTPBodyPrivate*>(data.
leakRef
()));
202
assign(static_cast<WebHTTPBodyPrivate*>(m_private->copy().
leakRef
()));
WebThreadSafeData.cpp
65
: m_private(data.
leakRef
())
/external/chromium_org/third_party/WebKit/Source/core/platform/text/
BidiContext.cpp
52
static BidiContext* ltrContext = createUncached(0, LeftToRight, false, FromStyleOrDOM, 0).
leakRef
();
56
static BidiContext* ltrOverrideContext = createUncached(0, LeftToRight, true, FromStyleOrDOM, 0).
leakRef
();
61
static BidiContext* rtlContext = createUncached(1, RightToLeft, false, FromStyleOrDOM, 0).
leakRef
();
65
static BidiContext* rtlOverrideContext = createUncached(1, RightToLeft, true, FromStyleOrDOM, 0).
leakRef
();
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIAccessPromise.cpp
67
m_successCallback->handleEvent(m_access.release().
leakRef
(), m_options->sysex);
83
m_errorCallback->handleEvent(error.
leakRef
());
104
successCallback->handleEvent(m_access.release().
leakRef
(), m_options->sysex);
109
errorCallback->handleEvent(m_error.release().
leakRef
());
/external/chromium_org/third_party/WebKit/Source/wtf/
PassRefPtr.h
55
PassRefPtr(const PassRefPtr& o) : m_ptr(o.
leakRef
()) { }
56
template<typename U> PassRefPtr(const PassRefPtr<U>& o, EnsurePtrConvertibleArgDecl(U, T)) : m_ptr(o.
leakRef
()) { }
64
T*
leakRef
() const WARN_UNUSED_RETURN;
93
template<typename T> inline T* PassRefPtr<T>::
leakRef
() const
158
return adoptRef(static_cast<T*>(p.
leakRef
()));
163
return adoptRef(const_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
());
RefPtr.h
84
: m_ptr(o.
leakRef
())
127
m_ptr = o.
leakRef
();
135
m_ptr = o.
leakRef
();
/external/chromium_org/third_party/WebKit/Source/core/page/
PageGroup.cpp
47
static PageGroup* staticSharedGroup = create().
leakRef
();
53
static PageGroup* staticInspectorGroup = create().
leakRef
();
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/
TimingFunction.h
110
static CubicBezierTimingFunction* ease = adoptRef(new CubicBezierTimingFunction(Ease, 0.25, 0.1, 0.25, 1.0)).
leakRef
();
115
static CubicBezierTimingFunction* easeIn = adoptRef(new CubicBezierTimingFunction(EaseIn, 0.42, 0.0, 1.0, 1.0)).
leakRef
();
120
static CubicBezierTimingFunction* easeOut = adoptRef(new CubicBezierTimingFunction(EaseOut, 0.0, 0.0, 0.58, 1.0)).
leakRef
();
125
static CubicBezierTimingFunction* easeInOut = adoptRef(new CubicBezierTimingFunction(EaseInOut, 0.42, 0.0, 0.58, 1.0)).
leakRef
();
/external/chromium_org/third_party/WebKit/Source/core/platform/text/mac/
StringImplMac.mm
31
return HardAutorelease(createCFString().
leakRef
());
/external/chromium_org/third_party/WebKit/Source/wtf/text/
AtomicString.cpp
96
location = StringImpl::create(c).
leakRef
();
132
location = StringImpl::create8BitIfPossible(buf.s, buf.length).
leakRef
();
160
location = StringImpl::create(buffer.characters, buffer.length).
leakRef
();
230
location = newString.release().
leakRef
();
299
location = buffer.baseString->substring(buffer.start, buffer.length).
leakRef
();
338
location = StringImpl::create(buf.s, buf.length).
leakRef
();
358
location = StringImpl::create(buf.s, buf.length).
leakRef
();
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLCallbackWrapper.h
71
context = m_scriptExecutionContext.release().
leakRef
();
72
callback = m_callback.release().
leakRef
();
/external/chromium_org/third_party/WebKit/Source/web/
WebNotification.cpp
150
: m_private(static_cast<WebNotificationPrivate*>(notification.
leakRef
()))
156
assign(static_cast<WebNotificationPrivate*>(notification.
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
()));
WebNodeCollection.cpp
58
: m_private(static_cast<HTMLCollection*>(col.
leakRef
()))
WebNodeList.cpp
58
: m_private(static_cast<NodeList*>(col.
leakRef
()))
WebRange.cpp
147
: m_private(static_cast<WebRangePrivate*>(range.
leakRef
()))
153
assign(static_cast<WebRangePrivate*>(range.
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/modules/webaudio/
OscillatorNode.cpp
126
s_periodicWaveSine = PeriodicWave::createSine(sampleRate).
leakRef
();
131
s_periodicWaveSquare = PeriodicWave::createSquare(sampleRate).
leakRef
();
136
s_periodicWaveSawtooth = PeriodicWave::createSawtooth(sampleRate).
leakRef
();
141
s_periodicWaveTriangle = PeriodicWave::createTriangle(sampleRate).
leakRef
();
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableValue.cpp
40
static AnimatableNeutral* neutralSentinelValue = AnimatableNeutral::create().
leakRef
();
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
FontCustomPlatformDataMac.cpp
76
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
63
location = QualifiedName::QualifiedNameImpl::create(components.m_prefix, components.m_localName, components.m_namespace).
leakRef
();
Completed in 568 milliseconds
1
2