/external/webkit/WebCore/html/ |
D | HTMLPlugInElement.cpp | 49 HTMLPlugInElement::HTMLPlugInElement(const QualifiedName& tagName, Document* doc) in HTMLPlugInElement() function in WebCore::HTMLPlugInElement 58 HTMLPlugInElement::~HTMLPlugInElement() in ~HTMLPlugInElement() 70 void HTMLPlugInElement::detach() in detach() 76 PassScriptInstance HTMLPlugInElement::getInstance() const in getInstance() 94 String HTMLPlugInElement::align() const in align() 99 void HTMLPlugInElement::setAlign(const String& value) in setAlign() 104 String HTMLPlugInElement::height() const in height() 109 void HTMLPlugInElement::setHeight(const String& value) in setHeight() 114 String HTMLPlugInElement::name() const in name() 119 void HTMLPlugInElement::setName(const String& value) in setName() [all …]
|
D | HTMLEmbedElement.cpp | 86 return HTMLPlugInElement::mapToEntry(attrName, result); in mapToEntry() 124 HTMLPlugInElement::parseMappedAttribute(attr); in parseMappedAttribute() 130 return HTMLPlugInElement::rendererIsNeeded(style); in rendererIsNeeded() 150 return HTMLPlugInElement::rendererIsNeeded(style); in rendererIsNeeded() 167 queuePostAttachCallback(&HTMLPlugInElement::updateWidgetCallback, this); in attach() 169 HTMLPlugInElement::attach(); in attach() 207 HTMLPlugInElement::insertedIntoDocument(); in insertedIntoDocument() 215 HTMLPlugInElement::removedFromDocument(); in removedFromDocument() 220 HTMLPlugInElement::attributeChanged(attr, preserveDecls); in attributeChanged()
|
D | HTMLAppletElement.cpp | 38 : HTMLPlugInElement(tagName, doc) in HTMLAppletElement() 69 HTMLPlugInElement::parseMappedAttribute(attr); in parseMappedAttribute() 71 HTMLPlugInElement::parseMappedAttribute(attr); in parseMappedAttribute() 82 HTMLPlugInElement::insertedIntoDocument(); in insertedIntoDocument() 93 HTMLPlugInElement::removedFromDocument(); in removedFromDocument() 101 return HTMLPlugInElement::rendererIsNeeded(style); in rendererIsNeeded() 154 HTMLPlugInElement::finishParsingChildren(); in finishParsingChildren()
|
D | HTMLObjectElement.cpp | 116 HTMLPlugInElement::parseMappedAttribute(attr); in parseMappedAttribute() 118 HTMLPlugInElement::parseMappedAttribute(attr); in parseMappedAttribute() 131 return isGearsPlugin || HTMLPlugInElement::rendererIsNeeded(style); in rendererIsNeeded() 148 queuePostAttachCallback(&HTMLPlugInElement::updateWidgetCallback, this); in attach() 150 HTMLPlugInElement::attach(); in attach() 174 HTMLPlugInElement::finishParsingChildren(); in finishParsingChildren() 187 HTMLPlugInElement::detach(); in detach() 198 HTMLPlugInElement::insertedIntoDocument(); in insertedIntoDocument() 209 HTMLPlugInElement::removedFromDocument(); in removedFromDocument() 218 HTMLPlugInElement::recalcStyle(ch); in recalcStyle() [all …]
|
D | HTMLPlugInElement.h | 37 class HTMLPlugInElement : public HTMLFrameOwnerElement { 39 HTMLPlugInElement(const QualifiedName& tagName, Document*); 40 virtual ~HTMLPlugInElement();
|
D | HTMLPlugInImageElement.h | 31 class HTMLPlugInImageElement : public HTMLPlugInElement {
|
D | HTMLPlugInImageElement.cpp | 33 : HTMLPlugInElement(tagName, document) in HTMLPlugInImageElement()
|
D | HTMLAppletElement.h | 33 class HTMLAppletElement : public HTMLPlugInElement {
|
/external/webkit/WebCore/bindings/v8/custom/ |
D | V8HTMLPlugInElementCustom.cpp | 43 NAMED_PROPERTY_GETTER(HTMLPlugInElement) in NAMED_PROPERTY_GETTER() argument 46 … HTMLPlugInElement* imp = V8DOMWrapper::convertDOMWrapperToNode<HTMLPlugInElement>(info.Holder()); in NAMED_PROPERTY_GETTER() 58 NAMED_PROPERTY_SETTER(HTMLPlugInElement) in NAMED_PROPERTY_SETTER() argument 61 … HTMLPlugInElement* imp = V8DOMWrapper::convertDOMWrapperToNode<HTMLPlugInElement>(info.Holder()); in NAMED_PROPERTY_SETTER() 73 CALLBACK_FUNC_DECL(HTMLPlugInElement) in CALLBACK_FUNC_DECL() argument 79 INDEXED_PROPERTY_GETTER(HTMLPlugInElement) in INDEXED_PROPERTY_GETTER() argument 82 … HTMLPlugInElement* imp = V8DOMWrapper::convertDOMWrapperToNode<HTMLPlugInElement>(info.Holder()); in INDEXED_PROPERTY_GETTER() 94 INDEXED_PROPERTY_SETTER(HTMLPlugInElement) in INDEXED_PROPERTY_SETTER() argument 97 … HTMLPlugInElement* imp = V8DOMWrapper::convertDOMWrapperToNode<HTMLPlugInElement>(info.Holder()); in INDEXED_PROPERTY_SETTER()
|
D | V8CustomBinding.h | 432 DECLARE_NAMED_PROPERTY_GETTER(HTMLPlugInElement); 433 DECLARE_NAMED_PROPERTY_SETTER(HTMLPlugInElement); 434 DECLARE_INDEXED_PROPERTY_GETTER(HTMLPlugInElement); 435 DECLARE_INDEXED_PROPERTY_SETTER(HTMLPlugInElement); 437 DECLARE_CALLBACK(HTMLPlugInElement);
|
/external/webkit/WebKit/mac/Plugins/ |
D | WebBaseNetscapePluginView.h | 45 class HTMLPlugInElement; variable 63 RefPtr<WebCore::HTMLPlugInElement> _element; 79 element:(PassRefPtr<WebCore::HTMLPlugInElement>)element; 95 - (WebCore::HTMLPlugInElement*)element;
|
D | WebNetscapePluginView.h | 121 element:(PassRefPtr<WebCore::HTMLPlugInElement>)element;
|
/external/webkit/WebCore/bindings/js/ |
D | ScriptController.h | 54 class HTMLPlugInElement; variable 130 JSC::JSObject* jsObjectForPluginElement(HTMLPlugInElement*); 133 NPObject* createScriptObjectForPluginElement(HTMLPlugInElement*);
|
D | JSPluginElementFunctions.cpp | 44 HTMLPlugInElement* plugInElement = static_cast<HTMLPlugInElement*>(node); in pluginInstance()
|
D | ScriptController.cpp | 314 NPObject* ScriptController::createScriptObjectForPluginElement(HTMLPlugInElement* plugin) in createScriptObjectForPluginElement() 326 JSObject* ScriptController::jsObjectForPluginElement(HTMLPlugInElement* plugin) in jsObjectForPluginElement()
|
/external/webkit/WebCore/bindings/v8/ |
D | ScriptController.h | 47 class HTMLPlugInElement; variable 152 NPObject* createScriptObjectForPluginElement(HTMLPlugInElement*);
|
D | V8NPObject.cpp | 67 …HTMLPlugInElement* element = V8DOMWrapper::convertDOMWrapperToNode<HTMLPlugInElement>(args.Holder(… in npObjectInvokeImpl()
|
D | V8DOMWrapper.cpp | 285 …medPropertyHandler(USE_NAMED_PROPERTY_GETTER(HTMLPlugInElement), USE_NAMED_PROPERTY_SETTER(HTMLPlu… in getTemplate() 286 …PropertyHandler(USE_INDEXED_PROPERTY_GETTER(HTMLPlugInElement), USE_INDEXED_PROPERTY_SETTER(HTMLPl… in getTemplate() 287 descriptor->InstanceTemplate()->SetCallAsFunctionHandler(USE_CALLBACK(HTMLPlugInElement)); in getTemplate()
|
/external/webkit/WebKit/mac/Plugins/Hosted/ |
D | WebHostedNetscapePluginView.h | 59 element:(PassRefPtr<WebCore::HTMLPlugInElement>)element;
|
D | WebHostedNetscapePluginView.mm | 42 #import <WebCore/HTMLPlugInElement.h> 76 element:(PassRefPtr<WebCore::HTMLPlugInElement>)element
|
/external/webkit/WebCore/loader/ |
D | FrameLoaderClient.h | 58 class HTMLPlugInElement; variable 213 …virtual PassRefPtr<Widget> createPlugin(const IntSize&, HTMLPlugInElement*, const KURL&, const Vec…
|
/external/webkit/WebCore/plugins/android/ |
D | PluginViewAndroid.cpp | 445 HTMLPlugInElement* pluginElement = in getValue() 446 static_cast<HTMLPlugInElement*>(m_element); in getValue()
|
/external/webkit/WebKit/win/WebCoreSupport/ |
D | WebFrameLoaderClient.h | 106 …Ptr<WebCore::Widget> createPlugin(const WebCore::IntSize&, WebCore::HTMLPlugInElement*, const WebC…
|
/external/webkit/WebKit/wx/WebKitSupport/ |
D | FrameLoaderClientWx.h | 193 …virtual PassRefPtr<Widget> createPlugin(const IntSize&, HTMLPlugInElement*, const KURL&, const Vec…
|
/external/webkit/WebKit/haiku/WebCoreSupport/ |
D | FrameLoaderClientHaiku.h | 218 virtual PassRefPtr<Widget> createPlugin(const IntSize&, HTMLPlugInElement*, const KURL&,
|