HomeSort by relevance Sort by last modified time
    Searched refs:Element (Results 751 - 775 of 827) sorted by null

<<31323334

  /external/webkit/WebCore/rendering/
RenderView.cpp 25 #include "Element.h"
207 Element* elt;
220 // This code typically only executes if the root element's visibility has been set to hidden,
256 Element* elt = document()->ownerElement();
RenderEmbeddedObject.cpp 53 RenderEmbeddedObject::RenderEmbeddedObject(Element* element)
54 : RenderPartObject(element)
326 serviceType = "application/x-media-element-proxy-plugin";
RenderMediaControlsChromium.cpp 227 bool RenderMediaControlsChromium::shouldRenderMediaControlPart(ControlPart part, Element* e)
  /external/webkit/WebCore/bindings/objc/
DOM.mm 77 // Populate it with HTML and SVG element classes.
231 // Do a special lookup to ignore element prefixes
445 // FIXME: Could we move this function to WebCore::Element and autogenerate?
454 // FIXME: Could we move this function to WebCore::Element and autogenerate?
466 // FIXME: Could we move this function to WebCore::Element and autogenerate?
468 WebCore::Element* element = core(self);
469 ASSERT(element);
470 return element->document()->completeURL(deprecatedParseURL(element->getAttribute(name)))
    [all...]
  /external/webkit/WebKit/chromium/src/
WebViewImpl.cpp 534 Element* element = static_cast<Element*>(node); local
535 if (!element->hasLocalName(HTMLNames::inputTag)) {
541 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(element);
659 // the selected element. Ideally we'd have the position of a context menu
967 Element* element = static_cast<Element*>(focusedNode); local
    [all...]
ChromeClientImpl.cpp 203 hit_test.setURLElement(reinterpret_cast<Element*>(node));
  /external/webkit/WebKit/qt/Api/
qwebframe.cpp 29 #include "Element.h"
212 // Returns the value of counter in the element specified by \a id.
217 Element* element = document->getElementById(id); local
218 return WebCore::counterValueForElement(element);
229 Element* element = frame->document()->getElementById(AtomicString(id));
230 if (!element)
233 return PrintContext::pageNumberForElement(element, FloatSize(width, height));
607 Element *documentElement = d->frame->document()->documentElement()
    [all...]
  /external/webkit/WebKit/wx/
WebFrame.cpp 31 #include "Element.h"
176 WebCore::Element *documentElement = m_impl->frame->document()->documentElement();
  /frameworks/base/media/java/android/media/
MediaScanner.java 41 import android.sax.Element;
    [all...]
  /external/v8/src/
heap.h     [all...]
parser.cc 59 class Element {
61 Element(PositionStack* stack, int value) {
68 Element* previous() { return previous_; }
71 Element* previous_;
84 Element* top() { return top_; }
85 void set_top(Element* value) { top_ = value; }
86 Element* top_;
334 // Adds element at end of list. This element is buffered and can
4022 Handle<Object> element = arguments[i]; local
    [all...]
  /external/webkit/WebCore/dom/
Position.cpp 196 Element* Position::element() const function in class:WebCore::Position
201 return static_cast<Element*>(n);
206 Element* elem = element();
228 // 1) The node is node like a text node that is not an element, and therefore has no children.
267 // 1) The node is node like a text node that is not an element, and therefore has no children.
    [all...]
  /external/webkit/WebCore/platform/win/
ClipboardWin.cpp 35 #include "Element.h"
137 // The filename for any content based drag or file url should be the last element of
656 static CachedImage* getCachedImage(Element* element)
658 // Attempt to pull CachedImage from element
659 ASSERT(element);
660 RenderObject* renderer = element->renderer();
671 static void writeImageToDataObject(IDataObject* dataObject, Element* element, const KURL& url)
674 CachedImage* cachedImage = getCachedImage(element);
    [all...]
  /external/webkit/WebKit/win/
WebFrame.cpp 176 static Element *elementFromDOMElement(IDOMElement *element)
178 if (!element)
182 HRESULT hr = element->QueryInterface(IID_IDOMElementPrivate, (void**) &elePriv);
184 Element* ele;
192 static HTMLFormElement *formElementFromDOMElement(IDOMElement *element)
194 if (!element)
198 HRESULT hr = element->QueryInterface(IID_IDOMElementPrivate, (void**) &elePriv);
200 Element* ele;
209 static HTMLInputElement* inputElementFromDOMElement(IDOMElement* element)
845 Element* element = coreFrame->document()->getElementById(coreId); local
    [all...]
WebFrame.h 51 class Element;
238 /* [in] */ IDOMElement* element,
335 HRESULT elementWithName(BSTR name, IDOMElement* form, IDOMElement** element);
336 HRESULT formForElement(IDOMElement* element, IDOMElement** form);
338 HRESULT elementIsPassword(IDOMElement* element, bool* result);
  /external/webkit/WebCore/editing/
visible_units.cpp 30 #include "Element.h"
396 // pseudoelements) have no corresponding DOM element, and so cannot be
463 // pseudoelements) have no corresponding DOM element, and so cannot be
620 Element* rootElement = node->isContentEditable() ? node->rootEditableElement() : node->document()->documentElement();
721 Element* rootElement = node->isContentEditable() ? node->rootEditableElement() : node->document()->documentElement();
    [all...]
  /external/webkit/WebCore/html/
HTMLAnchorElement.cpp 74 // If not a link we should still be able to focus the element if it has tabIndex.
360 return Element::tabIndex();
HTMLBodyElement.cpp 178 Element* ownerElement = document()->ownerElement();
  /external/webkit/WebCore/page/animation/
AnimationController.cpp 141 it->element->dispatchEvent(WebKitTransitionEvent::create(it->eventType, it->name, it->elapsedTime));
143 it->element->dispatchEvent(WebKitAnimationEvent::create(it->eventType, it->name, it->elapsedTime));
165 void AnimationControllerPrivate::addEventToDispatch(PassRefPtr<Element> element, const AtomicString& eventType, const String& name, double elapsedTime)
169 event.element = element;
  /external/webkit/WebCore/wml/
WMLInputElement.cpp 226 void WMLInputElement::copyNonAttributeProperties(const Element* source)
  /external/webkit/WebKit/win/WebCoreSupport/
WebInspectorClient.cpp 40 #include <WebCore/Element.h>
  /frameworks/base/libs/rs/
rsType.cpp 282 sprintf(buf, "%s element: ", prefix);
319 stc->mElement.set(static_cast<const Element *>(vse));
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTM.java 47 import org.w3c.dom.Element;
89 /** True iff the first element has been processed. This is used to control
133 // Document node. If it's an Element node, we need to immediately
159 // considered children of the element
423 m_firstch.setElementAt(NULL,m_last_parent); // Popping from an element
560 // considered children of the element
571 (Element)next,"xml",NAMESPACE_DECL_NS,
764 // Assume that attributes immediately follow the element.
817 // %TBD% If an element only has one text node, we should just use it
897 * not considered part of the content of an element
    [all...]
  /external/webkit/WebCore/accessibility/
AccessibilityObject.cpp 142 Element* actionElem = actionElement();
745 Element* anchor = axObj->anchorElement();
887 // "option" isn't here because it may map to different roles depending on the parent element's role
893 // "menuitem" isn't here because it may map to different roles depending on the parent element's role
    [all...]
  /external/webkit/WebCore/bindings/js/
JSDOMBinding.cpp 373 if (NamedNodeMap* attributes = static_cast<Element*>(node)->attributeMap()) {
387 if (static_cast<Element*>(node)->hasTagName(canvasTag)) {
397 // If a wrapper is the last reference to an image or script element
399 // because it is the only thing keeping the image element alive, and if
400 // the image element is destroyed, its load event will not fire.
438 // If an element has pending activity that may result in event listeners being called

Completed in 191 milliseconds

<<31323334