/external/webkit/WebCore/inspector/ |
InspectorController.h | 64 class Element; 194 void didModifyDOMAttr(Element*); 377 inline void InspectorController::didModifyDOMAttr(Element* element) 380 m_domAgent->didModifyDOMAttr(element);
|
/external/webkit/WebCore/page/animation/ |
KeyframeAnimation.cpp | 52 m_object->document()->styleSelector()->keyframeStylesForAnimation(static_cast<Element*>(m_object->node()), unanimatedStyle, m_keyframes); 280 RefPtr<Element> element; local 282 element = static_cast<Element*>(m_object->node()); 284 ASSERT(!element || (element->document() && !element->document()->inPageCache())); 285 if (!element) 289 m_compAnim->animationController()->addEventToDispatch(element, eventType, m_keyframes.animationName(), elapsedTime) [all...] |
ImplicitAnimation.cpp | 160 RefPtr<Element> element = 0; local 162 element = static_cast<Element*>(m_object->node()); 164 ASSERT(!element || (element->document() && !element->document()->inPageCache())); 165 if (!element) 169 m_compAnim->animationController()->addEventToDispatch(element, eventType, propertyName, elapsedTime); 172 if (eventType == eventNames().webkitTransitionEndEvent && element->renderer() [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/ |
ElementImpl.java | 21 import org.w3c.dom.Element; 40 public class ElementImpl extends InnerNodeImpl implements Element { 144 * This implementation walks the entire document looking for an element 148 Element getElementById(String name) { 167 Element element = ((ElementImpl) node).getElementById(name); local 168 if (element != null) { 169 return element;
|
/dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/ |
DocumentImportNode.java | 9 import org.w3c.dom.Element; 28 * the second element node, from a list of nodes whose local names are "address" 73 // Element element; 83 // element = (Element) childList.item(1); 84 // attr = element.getAttributeNode("street"); 102 Element element; local 114 element = (Element) addresses.item(1) [all...] |
CreateElementNS.java | 34 import org.w3c.dom.Element; 221 Element newElement;
|
NodeIsSupported.java | 34 import org.w3c.dom.Element; 47 * Call the isSupported method on the document element node with a combination 96 Element element; local 112 element = doc.getDocumentElement(); 115 success = element.isSupported(featureXML, version); 117 success = element.isSupported(featureXML, version1); 122 success = element.isSupported(featureCore, version); 124 success = element.isSupported(featureCore, version1); 125 success = element.isSupported(featureCore, version2) [all...] |
/external/webkit/WebCore/bindings/js/ |
JSClipboardCustom.cpp | 33 #include "Element.h" 134 if (static_cast<Element*>(node)->hasLocalName(imgTag) && !node->inDocument())
|
/external/webkit/WebCore/editing/ |
VisiblePosition.h | 85 Element* rootEditableElement() const { return m_deepPosition.isNotNull() ? m_deepPosition.node()->rootEditableElement() : 0; }
|
VisibleSelection.h | 94 Element* rootEditableElement() const;
|
/external/webkit/WebCore/page/ |
DOMWindow.h | 49 class Element; 131 Element* frameElement() const; 190 PassRefPtr<CSSStyleDeclaration> getComputedStyle(Element*, const String& pseudoElt) const; 193 PassRefPtr<CSSRuleList> getMatchedCSSRules(Element*, const String& pseudoElt, bool authorOnly = true) const;
|
/external/webkit/WebCore/platform/haiku/ |
ClipboardHaiku.cpp | 175 void ClipboardHaiku::declareAndWriteDragImage(Element*, const KURL&, const String&, Frame*)
|
RenderThemeHaiku.cpp | 164 void RenderThemeHaiku::adjustMenuListStyle(CSSStyleSelector*, RenderStyle* style, Element*) const
|
/external/webkit/WebCore/svg/graphics/ |
SVGResource.cpp | 121 Element* element = document->getElementById(id); 123 if (element && element->isSVGElement()) 124 svgElement = static_cast<SVGElement*>(element);
|
/external/webkit/WebCore/wml/ |
WMLOptGroupElement.cpp | 93 static inline WMLSelectElement* ownerSelectElement(Element* element) 95 Node* select = element->parentNode();
|
WMLOptionElement.cpp | 52 static inline WMLSelectElement* ownerSelectElement(Element* element) 54 Node* select = element->parentNode();
|
WMLSelectElement.cpp | 290 // first option element containing that value is added to the default index if that 303 // option elements, the index of the first option element containing that value is added 337 const Vector<Element*>& items = m_data.listItems(this); 351 // Spec: If the 'name' attribute is specified and the select is a multiple-choice element, 353 // element at the index is added to the name variable. 358 // Spec: If the 'name' attribute is specified and the select is a single-choice element, 360 // element at the default option index. 387 const Vector<Element*>& items = m_data.listItems(this); 450 const Vector<Element*>& items = m_data.listItems(this); 486 const Vector<Element*>& items = m_data.listItems(this) [all...] |
/external/webkit/WebKit/chromium/src/ |
DOMUtilitiesPrivate.cpp | 34 #include "Element.h" 82 String nameOfInputElement(HTMLInputElement* element) 84 return WebInputElement(element).nameForAutofill(); 87 bool elementHasLegalLinkAttribute(const Element* element, 92 if (element->hasTagName(HTMLNames::imgTag) 93 || element->hasTagName(HTMLNames::scriptTag) 94 || element->hasTagName(HTMLNames::iframeTag) 95 || element->hasTagName(HTMLNames::frameTag)) 97 if (element->hasTagName(HTMLNames::inputTag)) [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xalan/xslt/ |
EnvironmentCheck.java | 34 import org.w3c.dom.Element; 418 Element envCheckNode = factory.createElement("EnvironmentCheck"); 424 Element statusNode = factory.createElement("status"); 433 Element hashNode = factory.createElement("environment"); 463 Element node = factory.createElement("item"); 472 Element node = factory.createElement("item"); 479 Element statusNode = factory.createElement("status"); 531 Element node = factory.createElement("foundJar"); 540 Element node = factory.createElement("foundJar"); [all...] |
/external/webkit/WebCore/rendering/ |
RenderThemeChromiumSkia.cpp | 367 void RenderThemeChromiumSkia::adjustButtonStyle(CSSStyleSelector*, RenderStyle* style, Element*) const 386 void RenderThemeChromiumSkia::adjustSearchFieldStyle(CSSStyleSelector*, RenderStyle* style, Element*) const 397 void RenderThemeChromiumSkia::adjustSearchFieldCancelButtonStyle(CSSStyleSelector*, RenderStyle* style, Element*) const 431 void RenderThemeChromiumSkia::adjustSearchFieldDecorationStyle(CSSStyleSelector*, RenderStyle* style, Element*) const 438 void RenderThemeChromiumSkia::adjustSearchFieldResultsDecorationStyle(CSSStyleSelector*, RenderStyle* style, Element*) const 471 void RenderThemeChromiumSkia::adjustSearchFieldResultsButtonStyle(CSSStyleSelector*, RenderStyle* style, Element*) const 600 void RenderThemeChromiumSkia::adjustMenuListStyle(CSSStyleSelector* selector, RenderStyle* style, WebCore::Element* e) const 630 void RenderThemeChromiumSkia::adjustMenuListButtonStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const 745 bool RenderThemeChromiumSkia::shouldRenderMediaControlPart(ControlPart part, Element* e)
|
RenderThemeSafari.cpp | 31 #include "Element.h" 504 void RenderThemeSafari::adjustButtonStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const 616 void RenderThemeSafari::adjustTextFieldStyle(CSSStyleSelector*, RenderStyle*, Element*) const 644 void RenderThemeSafari::adjustTextAreaStyle(CSSStyleSelector*, RenderStyle*, Element*) const 866 void RenderThemeSafari::adjustMenuListStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const [all...] |
/external/webkit/WebCore/dom/ |
XMLTokenizerLibxml2.cpp | 555 XMLTokenizer::XMLTokenizer(DocumentFragment* fragment, Element* parentElement, FragmentScriptingPermission scriptingPermission) 585 Vector<Element*> elemStack; 592 parentElement = static_cast<Element*>(n); 598 for (Element* element = elemStack.last(); !elemStack.isEmpty(); elemStack.removeLast()) { 599 if (NamedNodeMap* attrs = element->attributes()) { 610 // If the parent element is not in document tree, there may be no xmlns attribute; just default to the parent's namespace. 680 static inline void handleElementNamespaces(Element* newElement, const xmlChar** libxmlNamespaces, int nb_namespaces, ExceptionCode& ec, FragmentScriptingPermission scriptingPermission) 703 static inline void handleElementAttributes(Element* newElement, const xmlChar** libxmlAttributes, int nb_attributes, ExceptionCode& ec, FragmentScriptingPermission scriptingPermission) 756 // we should make sure that the root element MUST be 'html' and 847 Element* element = static_cast<Element*>(n); local [all...] |
/external/libpng/contrib/pngminus/ |
makevms.com | 68 $ File = F$Element(El," ",Argument)
|
/external/webkit/WebCore/loader/ |
ImageLoader.cpp | 29 #include "Element.h" 42 ASSERT(p->element()); 43 ValueCheck<WebCore::Element*>::checkConsistency(p->element()); 86 ImageLoader::ImageLoader(Element* element) 87 : m_element(element)
|
/external/webkit/WebCore/manual-tests/inspector-wrappers/ |
inspector-wrappers-test-utils.js | 37 "<li>Choose \"Inspect Element\" from the context menu";
|