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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/dom/
XMLDocument.h 38 return adoptRefWillBeNoop(new XMLDocument(initializer, XMLDocumentClass));
43 return adoptRefWillBeNoop(new XMLDocument(initializer, XMLDocumentClass | XHTMLDocumentClass));
48 return adoptRefWillBeNoop(new XMLDocument(initializer, XMLDocumentClass | SVGDocumentClass));
DOMError.h 43 return adoptRefWillBeNoop(new DOMError(name));
47 return adoptRefWillBeNoop(new DOMError(name, message));
52 return adoptRefWillBeNoop(new DOMError(DOMException::getErrorName(ec), DOMException::getErrorMessage(ec)));
57 return adoptRefWillBeNoop(new DOMError(DOMException::getErrorName(ec), message));
ClientRectList.h 45 return adoptRefWillBeNoop(new ClientRectList);
49 return adoptRefWillBeNoop(new ClientRectList(quads));
ClientRect.h 44 return adoptRefWillBeNoop(new ClientRect);
48 return adoptRefWillBeNoop(new ClientRect(rect));
52 return adoptRefWillBeNoop(new ClientRect(rect));
  /external/chromium_org/third_party/WebKit/Source/core/events/
PageTransitionEvent.h 43 return adoptRefWillBeNoop(new PageTransitionEvent);
47 return adoptRefWillBeNoop(new PageTransitionEvent(type, persisted));
51 return adoptRefWillBeNoop(new PageTransitionEvent(type, initializer));
AnimationPlayerEvent.h 23 return adoptRefWillBeNoop(new AnimationPlayerEvent);
27 return adoptRefWillBeNoop(new AnimationPlayerEvent(type, currentTime, timelineTime));
31 return adoptRefWillBeNoop(new AnimationPlayerEvent(type, initializer));
AutocompleteErrorEvent.h 40 return adoptRefWillBeNoop(new AutocompleteErrorEvent);
45 return adoptRefWillBeNoop(new AutocompleteErrorEvent(reason));
50 return adoptRefWillBeNoop(new AutocompleteErrorEvent(eventType, initializer));
OverflowEvent.h 51 return adoptRefWillBeNoop(new OverflowEvent);
55 return adoptRefWillBeNoop(new OverflowEvent(horizontalOverflowChanged, horizontalOverflow, verticalOverflowChanged, verticalOverflow));
59 return adoptRefWillBeNoop(new OverflowEvent(type, initializer));
ProgressEvent.h 45 return adoptRefWillBeNoop(new ProgressEvent);
49 return adoptRefWillBeNoop(new ProgressEvent(type, lengthComputable, loaded, total));
53 return adoptRefWillBeNoop(new ProgressEvent(type, initializer));
TransitionEvent.h 46 return adoptRefWillBeNoop(new TransitionEvent);
50 return adoptRefWillBeNoop(new TransitionEvent(type, propertyName, elapsedTime, pseudoElement));
54 return adoptRefWillBeNoop(new TransitionEvent(type, initializer));
WebKitAnimationEvent.h 47 return adoptRefWillBeNoop(new WebKitAnimationEvent);
51 return adoptRefWillBeNoop(new WebKitAnimationEvent(type, animationName, elapsedTime));
55 return adoptRefWillBeNoop(new WebKitAnimationEvent(type, initializer));
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSGridLineNamesValue.cpp 48 return adoptRefWillBeNoop(new CSSGridLineNamesValue(*this));
CSSInitialValue.h 33 return adoptRefWillBeNoop(new CSSInitialValue(/* implicit */ false));
37 return adoptRefWillBeNoop(new CSSInitialValue(/* implicit */ true));
CSSFontFaceLoadEvent.h 50 return adoptRefWillBeNoop(new CSSFontFaceLoadEvent());
55 return adoptRefWillBeNoop(new CSSFontFaceLoadEvent(type, initializer));
60 return adoptRefWillBeNoop(new CSSFontFaceLoadEvent(type, fontfaces));
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementAsyncImportMicrotaskQueue.h 42 static PassRefPtrWillBeRawPtr<CustomElementAsyncImportMicrotaskQueue> create() { return adoptRefWillBeNoop(new CustomElementAsyncImportMicrotaskQueue()); }
CustomElementSyncMicrotaskQueue.h 14 static PassRefPtrWillBeRawPtr<CustomElementSyncMicrotaskQueue> create() { return adoptRefWillBeNoop(new CustomElementSyncMicrotaskQueue()); }
  /external/chromium_org/third_party/WebKit/Source/core/editing/
BreakBlockquoteCommand.h 37 return adoptRefWillBeNoop(new BreakBlockquoteCommand(document));
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
ButtonInputType.cpp 41 return adoptRefWillBeNoop(new ButtonInputType(element));
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPaint.h 50 return adoptRefWillBeNoop(new SVGPaint(SVG_PAINTTYPE_UNKNOWN));
55 return adoptRefWillBeNoop(new SVGPaint(SVG_PAINTTYPE_NONE));
60 return adoptRefWillBeNoop(new SVGPaint(SVG_PAINTTYPE_CURRENTCOLOR));
65 RefPtrWillBeRawPtr<SVGPaint> paint = adoptRefWillBeNoop(new SVGPaint(SVG_PAINTTYPE_RGBCOLOR));
72 RefPtrWillBeRawPtr<SVGPaint> paint = adoptRefWillBeNoop(new SVGPaint(SVG_PAINTTYPE_URI, uri));
78 RefPtrWillBeRawPtr<SVGPaint> paint = adoptRefWillBeNoop(new SVGPaint(SVG_PAINTTYPE_URI_RGBCOLOR, uri));
85 RefPtrWillBeRawPtr<SVGPaint> paint = adoptRefWillBeNoop(new SVGPaint(SVG_PAINTTYPE_URI_NONE, uri));
91 RefPtrWillBeRawPtr<SVGPaint> paint = adoptRefWillBeNoop(new SVGPaint(SVG_PAINTTYPE_URI_CURRENTCOLOR, uri));
116 RefPtrWillBeRawPtr<SVGPaint> paint = adoptRefWillBeNoop(new SVGPaint(type, uri));
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognitionEvent.cpp 39 return adoptRefWillBeNoop(new SpeechRecognitionEvent);
44 return adoptRefWillBeNoop(new SpeechRecognitionEvent(eventName, initializer));
49 return adoptRefWillBeNoop(new SpeechRecognitionEvent(EventTypeNames::result, resultIndex, SpeechRecognitionResultList::create(results)));
57 return adoptRefWillBeNoop(new SpeechRecognitionEvent(EventTypeNames::nomatch, 0, SpeechRecognitionResultList::create(results)));
60 return adoptRefWillBeNoop(new SpeechRecognitionEvent(EventTypeNames::nomatch, 0, nullptr));
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLContextEvent.h 43 return adoptRefWillBeNoop(new WebGLContextEvent);
47 return adoptRefWillBeNoop(new WebGLContextEvent(type, canBubble, cancelable, statusMessage));
51 return adoptRefWillBeNoop(new WebGLContextEvent(type, initializer));
  /external/chromium_org/third_party/WebKit/Source/modules/device_light/
DeviceLightEvent.h 29 return adoptRefWillBeNoop(new DeviceLightEvent);
33 return adoptRefWillBeNoop(new DeviceLightEvent(eventType, value));
37 return adoptRefWillBeNoop(new DeviceLightEvent(eventType, initializer));
  /external/chromium_org/third_party/WebKit/Source/modules/gamepad/
GamepadEvent.h 23 return adoptRefWillBeNoop(new GamepadEvent);
27 return adoptRefWillBeNoop(new GamepadEvent(type, canBubble, cancelable, gamepad));
31 return adoptRefWillBeNoop(new GamepadEvent(type, initializer));
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCDTMFToneChangeEvent.cpp 33 return adoptRefWillBeNoop(new RTCDTMFToneChangeEvent);
38 return adoptRefWillBeNoop(new RTCDTMFToneChangeEvent(tone));
44 return adoptRefWillBeNoop(new RTCDTMFToneChangeEvent(initializer));
  /external/chromium_org/third_party/WebKit/Source/modules/push_messaging/
PushEvent.h 25 return adoptRefWillBeNoop(new PushEvent);
29 return adoptRefWillBeNoop(new PushEvent(type, data));
33 return adoptRefWillBeNoop(new PushEvent(type, initializer));

Completed in 1004 milliseconds

1 2 3 4 5 6 7 8 91011>>