Home | History | Annotate | Download | only in win

Lines Matching refs:domElement

432             IDOMElement* newElement = DOMElement::createInstance(static_cast<WebCore::Element*>(n));
571 *result = DOMElement::createInstance(m_document->documentElement());
584 *result = DOMElement::createInstance(m_document->createElement(tagNameString, ec).get());
705 *result = DOMElement::createInstance(m_document->getElementById(idString));
719 COMPtr<DOMElement> domEle;
781 // DOMElement - IUnknown ------------------------------------------------------
783 HRESULT STDMETHODCALLTYPE DOMElement::QueryInterface(REFIID riid, void** ppvObject)
789 *ppvObject = static_cast<DOMElement*>(this);
805 // DOMElement - IDOMNodeExtensions---------------------------------------------
807 HRESULT STDMETHODCALLTYPE DOMElement::boundingBox(
827 HRESULT STDMETHODCALLTYPE DOMElement::lineBoxRects(
836 HRESULT STDMETHODCALLTYPE DOMElement::tagName(
849 HRESULT STDMETHODCALLTYPE DOMElement::getAttribute(
863 HRESULT STDMETHODCALLTYPE DOMElement::setAttribute(
877 HRESULT STDMETHODCALLTYPE DOMElement::removeAttribute(
884 HRESULT STDMETHODCALLTYPE DOMElement::getAttributeNode(
892 HRESULT STDMETHODCALLTYPE DOMElement::setAttributeNode(
900 HRESULT STDMETHODCALLTYPE DOMElement::removeAttributeNode(
908 HRESULT STDMETHODCALLTYPE DOMElement::getElementsByTagName(
916 HRESULT STDMETHODCALLTYPE DOMElement::getAttributeNS(
925 HRESULT STDMETHODCALLTYPE DOMElement::setAttributeNS(
934 HRESULT STDMETHODCALLTYPE DOMElement::removeAttributeNS(
942 HRESULT STDMETHODCALLTYPE DOMElement::getAttributeNodeNS(
951 HRESULT STDMETHODCALLTYPE DOMElement::setAttributeNodeNS(
959 HRESULT STDMETHODCALLTYPE DOMElement::getElementsByTagNameNS(
968 HRESULT STDMETHODCALLTYPE DOMElement::hasAttribute(
976 HRESULT STDMETHODCALLTYPE DOMElement::hasAttributeNS(
985 HRESULT STDMETHODCALLTYPE DOMElement::focus( void)
993 HRESULT STDMETHODCALLTYPE DOMElement::blur( void)
1003 HRESULT DOMElement::coreElement(void **element)
1011 HRESULT STDMETHODCALLTYPE DOMElement::isEqual(
1035 HRESULT STDMETHODCALLTYPE DOMElement::isFocused(
1049 HRESULT STDMETHODCALLTYPE DOMElement::innerText(
1066 HRESULT STDMETHODCALLTYPE DOMElement::font(WebFontDescription* webFontDescription)
1090 HRESULT STDMETHODCALLTYPE DOMElement::renderedImage(HBITMAP* image)
1113 HRESULT STDMETHODCALLTYPE DOMElement::style(
1131 HRESULT STDMETHODCALLTYPE DOMElement::offsetLeft(
1141 HRESULT STDMETHODCALLTYPE DOMElement::offsetTop(
1151 HRESULT STDMETHODCALLTYPE DOMElement::offsetWidth(
1161 HRESULT STDMETHODCALLTYPE DOMElement::offsetHeight(
1171 HRESULT STDMETHODCALLTYPE DOMElement::offsetParent(
1179 HRESULT STDMETHODCALLTYPE DOMElement::clientWidth(
1189 HRESULT STDMETHODCALLTYPE DOMElement::clientHeight(
1199 HRESULT STDMETHODCALLTYPE DOMElement::scrollLeft(
1209 HRESULT STDMETHODCALLTYPE DOMElement::setScrollLeft(
1217 HRESULT STDMETHODCALLTYPE DOMElement::scrollTop(
1227 HRESULT STDMETHODCALLTYPE DOMElement::setScrollTop(
1235 HRESULT STDMETHODCALLTYPE DOMElement::scrollWidth(
1245 HRESULT STDMETHODCALLTYPE DOMElement::scrollHeight(
1255 HRESULT STDMETHODCALLTYPE DOMElement::scrollIntoView(
1265 HRESULT STDMETHODCALLTYPE DOMElement::scrollIntoViewIfNeeded(
1275 // DOMElement -----------------------------------------------------------------
1277 DOMElement::DOMElement(WebCore::Element* e)
1283 DOMElement::~DOMElement()
1287 IDOMElement* DOMElement
1293 IDOMElement* domElement = 0;
1297 hr = newElement->QueryInterface(IID_IDOMElement, (void**)&domElement);
1300 hr = newElement->QueryInterface(IID_IDOMElement, (void**)&domElement);
1303 hr = newElement->QueryInterface(IID_IDOMElement, (void**)&domElement);
1306 hr = newElement->QueryInterface(IID_IDOMElement, (void**)&domElement);
1309 hr = newElement->QueryInterface(IID_IDOMElement, (void**)&domElement);
1312 hr = newElement->QueryInterface(IID_IDOMElement, (void**)&domElement);
1314 DOMElement* newElement = new DOMElement(e);
1315 hr = newElement->QueryInterface(IID_IDOMElement, (void**)&domElement);
1321 return domElement;