OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:adoptRef
(Results
26 - 50
of
1190
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/webkit/Source/WebCore/xml/
XMLHttpRequestProgressEvent.h
38
return
adoptRef
(new XMLHttpRequestProgressEvent);
42
return
adoptRef
(new XMLHttpRequestProgressEvent(type, lengthComputable, loaded, total));
/external/webkit/Source/WebCore/css/
MediaList.h
41
return
adoptRef
(new MediaList(0, false));
45
return
adoptRef
(new MediaList(parentRule, media));
49
return
adoptRef
(new MediaList(parentSheet, media, false));
54
return
adoptRef
(new MediaList(0, mediaQueryOrDescription, true));
58
return
adoptRef
(new MediaList(parentSheet, mediaQueryOrDescription, true));
63
return
adoptRef
(new MediaList(0, media, allowDescriptionSyntax));
CSSValueList.h
36
return
adoptRef
(new CSSValueList(false));
40
return
adoptRef
(new CSSValueList(true));
44
return
adoptRef
(new CSSValueList(list));
CSSFontFaceRule.h
37
return
adoptRef
(new CSSFontFaceRule(0));
41
return
adoptRef
(new CSSFontFaceRule(parent));
CSSImageValue.h
37
static PassRefPtr<CSSImageValue> create() { return
adoptRef
(new CSSImageValue); }
38
static PassRefPtr<CSSImageValue> create(const String& url) { return
adoptRef
(new CSSImageValue(url)); }
/external/webkit/Source/WebCore/svg/
SVGPaint.h
49
return
adoptRef
(new SVGPaint(SVG_PAINTTYPE_UNKNOWN));
54
return
adoptRef
(new SVGPaint(SVG_PAINTTYPE_NONE));
59
return
adoptRef
(new SVGPaint(SVG_PAINTTYPE_CURRENTCOLOR));
64
RefPtr<SVGPaint> paint =
adoptRef
(new SVGPaint(SVG_PAINTTYPE_RGBCOLOR));
71
RefPtr<SVGPaint> paint =
adoptRef
(new SVGPaint(SVG_PAINTTYPE_URI, uri));
77
RefPtr<SVGPaint> paint =
adoptRef
(new SVGPaint(SVG_PAINTTYPE_URI_RGBCOLOR, uri));
98
RefPtr<SVGPaint> paint =
adoptRef
(new SVGPaint(type, uri));
/external/webkit/Source/WebCore/dom/
ClientRect.h
40
static PassRefPtr<ClientRect> create() { return
adoptRef
(new ClientRect); }
41
static PassRefPtr<ClientRect> create(const IntRect& rect) { return
adoptRef
(new ClientRect(rect)); }
42
static PassRefPtr<ClientRect> create(const FloatRect& rect) { return
adoptRef
(new ClientRect(rect)); }
ClientRectList.h
41
static PassRefPtr<ClientRectList> create() { return
adoptRef
(new ClientRectList); }
42
static PassRefPtr<ClientRectList> create(const Vector<FloatQuad>& quads) { return
adoptRef
(new ClientRectList(quads)); }
ClipboardEvent.h
38
return
adoptRef
(new ClipboardEvent);
42
return
adoptRef
(new ClipboardEvent(type, canBubbleArg, cancelableArg, clipboardArg));
CompositionEvent.h
38
return
adoptRef
(new CompositionEvent);
42
return
adoptRef
(new CompositionEvent(type, view, data));
DeviceMotionEvent.h
40
return
adoptRef
(new DeviceMotionEvent);
44
return
adoptRef
(new DeviceMotionEvent(eventType, deviceMotionData));
DeviceOrientationEvent.h
40
return
adoptRef
(new DeviceOrientationEvent);
44
return
adoptRef
(new DeviceOrientationEvent(eventType, orientation));
ErrorEvent.h
43
return
adoptRef
(new ErrorEvent);
47
return
adoptRef
(new ErrorEvent(message, fileName, lineNumber));
OverflowEvent.h
43
return
adoptRef
(new OverflowEvent);
47
return
adoptRef
(new OverflowEvent(horizontalOverflowChanged, horizontalOverflow, verticalOverflowChanged, verticalOverflow));
ProgressEvent.h
37
return
adoptRef
(new ProgressEvent);
41
return
adoptRef
(new ProgressEvent(type, lengthComputable, loaded, total));
WebKitAnimationEvent.h
37
return
adoptRef
(new WebKitAnimationEvent);
41
return
adoptRef
(new WebKitAnimationEvent(type, animationName, elapsedTime));
WebKitTransitionEvent.h
37
return
adoptRef
(new WebKitTransitionEvent);
41
return
adoptRef
(new WebKitTransitionEvent(type, animationName, elapsedTime));
/external/webkit/Source/WebCore/html/
DOMFormData.h
47
static PassRefPtr<DOMFormData> create(HTMLFormElement* form) { return
adoptRef
(new DOMFormData(form)); }
48
static PassRefPtr<DOMFormData> create(const TextEncoding& encoding) { return
adoptRef
(new DOMFormData(encoding)); }
HTMLAudioElement.cpp
46
return
adoptRef
(new HTMLAudioElement(tagName, document));
51
RefPtr<HTMLAudioElement> audio =
adoptRef
(new HTMLAudioElement(audioTag, document));
HTMLBlockquoteElement.cpp
40
return
adoptRef
(new HTMLBlockquoteElement(blockquoteTag, document));
45
return
adoptRef
(new HTMLBlockquoteElement(tagName, document));
ImageData.cpp
36
return
adoptRef
(new ImageData(size));
41
return
adoptRef
(new ImageData(size, byteArray));
/external/webkit/Source/WebCore/html/canvas/
WebGLContextEvent.h
37
return
adoptRef
(new WebGLContextEvent);
41
return
adoptRef
(new WebGLContextEvent(type, canBubble, cancelable, statusMessage));
/external/webkit/Source/WebCore/page/
SpeechInputResult.cpp
35
return
adoptRef
(new SpeechInputResult(utterance, confidence));
40
return
adoptRef
(new SpeechInputResult(source.m_utterance, source.m_confidence));
WebKitPoint.h
39
return
adoptRef
(new WebKitPoint());
43
return
adoptRef
(new WebKitPoint(x, y));
/external/webkit/Source/WebCore/platform/graphics/qt/
StillImageQt.h
39
return
adoptRef
(new StillImage(pixmap));
44
return
adoptRef
(new StillImage(pixmap));
Completed in 235 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>