/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/ |
DOM2DTMdefaultNamespaceDeclarationNode.java | 28 import org.w3c.dom.Element; 47 * there isn't a single root element? I think this fails that case... 57 Element pseudoparent; 60 DOM2DTMdefaultNamespaceDeclarationNode(Element pseudoparent,String prefix,String uri,int handle) 75 public Element getOwnerElement() {return pseudoparent;} 102 * added to the root element and we prune on elements, we shouldn't have 228 * attributes, if it is an <code>Element</code>). 548 * element content whitespaces . Similarly, on setting, no parsing is 598 * element content whitespaces . Similarly, on setting, no parsing is 656 * element if any, and the value of the <code>documentURI</code [all...] |
/dalvik/libcore/xml/src/main/java/org/w3c/dom/ |
Element.java | 16 * The <code>Element</code> interface represents an element in an HTML or XML 18 * <code>Element</code> interface inherits from <code>Node</code>, the 20 * be used to retrieve the set of all attributes for an element. There are 21 * methods on the <code>Element</code> interface to retrieve either an 32 public interface Element extends Node { 34 * The name of the element. If <code>Node.localName</code> is different 42 * the <code>tagName</code> of an HTML element in the canonical 57 * in the element, its value is changed to be that of the value 113 * <code>nodeName</code>) is already present in the element, it is [all...] |
/external/webkit/WebCore/accessibility/ |
AccessibilityMenuListOption.cpp | 43 void AccessibilityMenuListOption::setElement(HTMLElement* element) 45 ASSERT_ARG(element, element->hasTagName(optionTag)); 46 m_element = element; 49 Element* AccessibilityMenuListOption::actionElement() const 61 // disabled() returns true if the parent <select> element is disabled,
|
/external/webkit/WebCore/bindings/v8/custom/ |
V8NamedNodeMapCustom.cpp | 82 Element* element = impl->element(); local 83 if (!wrapper.IsEmpty() && element) { 84 v8::Handle<v8::Value> owner = toV8(element);
|
/external/webkit/WebCore/dom/ |
ChildNodeList.cpp | 26 #include "Element.h" 101 bool ChildNodeList::nodeMatches(Element* testNode) const 105 // for an element that was located with getElementById.
|
Clipboard.h | 68 virtual void declareAndWriteDragImage(Element*, const KURL&, const String& title, Frame*) = 0;
|
/external/webkit/WebCore/editing/ |
InsertListCommand.cpp | 27 #include "Element.h" 170 RefPtr<Element> placeholder = createBreakElement(document()); 171 RefPtr<Element> nodeToInsert = placeholder; 215 Element* previousList = outermostEnclosingList(previousPosition.deepEquivalent().node()); 216 Element* nextList = outermostEnclosingList(nextPosition.deepEquivalent().node());
|
ModifySelectionListLevel.cpp | 122 void ModifySelectionListLevelCommand::appendSiblingNodeRange(Node* startNode, Node* endNode, Element* newParent) 181 appendSiblingNodeRange(startListChild, endListChild, static_cast<Element*>(previousItem)); 184 // create a sublist for the preceding element and move nodes there 185 RefPtr<Element> newParent; 263 Element* listNode = startListChild->parentElement();
|
WrapContentsInDummySpanCommand.cpp | 34 WrapContentsInDummySpanCommand::WrapContentsInDummySpanCommand(PassRefPtr<Element> element) 35 : SimpleEditCommand(element->document()) 36 , m_element(element)
|
/external/webkit/WebCore/history/ |
CachedPage.cpp | 76 // Restore the focus appearance for the focused element. 81 static_cast<Element*>(node)->updateFocusAppearance(true);
|
/external/webkit/WebCore/html/ |
HTMLAnchorElement.h | 114 RefPtr<Element> m_rootEditableElementForSelectionOnMouseDown;
|
/external/webkit/WebCore/platform/chromium/ |
ClipboardChromium.h | 74 virtual void declareAndWriteDragImage(Element*, const KURL&, const String& title, Frame*);
|
/external/webkit/WebCore/platform/mac/ |
ClipboardMac.h | 71 virtual void declareAndWriteDragImage(Element*, const KURL&, const String& title, Frame*);
|
/external/webkit/WebCore/platform/qt/ |
ClipboardQt.h | 66 virtual void declareAndWriteDragImage(Element*, const KURL&, const String& title, Frame*);
|
/external/webkit/WebCore/platform/win/ |
ClipboardWin.h | 67 virtual void declareAndWriteDragImage(Element*, const KURL&, const String& title, Frame*);
|
/external/webkit/WebCore/platform/wx/ |
ClipboardWx.cpp | 115 void ClipboardWx::declareAndWriteDragImage(Element*, const KURL&, const String&, Frame*)
|
/external/webkit/WebCore/plugins/ |
PluginDatabase.h | 45 class Element;
|
/external/webkit/WebCore/rendering/ |
RenderMenuList.h | 2 * This file is part of the select element renderer in WebCore. 42 RenderMenuList(Element*);
|
/external/webkit/WebCore/svg/ |
SVGAltGlyphElement.cpp | 87 Element* elt = document()->getElementById(getTarget(getAttribute(XLinkNames::hrefAttr)));
|
SVGTRefElement.cpp | 46 Element* target = document()->getElementById(SVGURIReference::getTarget(href()));
|
/external/webkit/WebCore/wml/ |
WMLInputElement.h | 72 virtual void copyNonAttributeProperties(const Element* source);
|
WMLSelectElement.h | 69 virtual const Vector<Element*>& listItems() const { return m_data.listItems(this); }
|
/frameworks/base/libs/rs/ |
rsProgramVertex.h | 64 void initAddUserElement(const Element *e, String8 *names, uint32_t *count, const char *prefix);
|
/frameworks/base/awt/javax/imageio/metadata/ |
IIOMetadataNode.java | 26 import org.w3c.dom.Element; 42 public class IIOMetadataNode implements Element, NodeList { 160 Element owner = newAttr.getOwnerElement(); 276 * <i>Description copied from interface: org.w3c.dom.Element (DOM Level 300 * attribute of this element. 308 * <i>Description copied from interface: org.w3c.dom.Element (DOM Level 333 * attribute of this element. 342 * <i>Description copied from interface: org.w3c.dom.Element (DOM Level 365 * attribute of this element. 598 * attribute of the HTML BASE element if any, and the value of th [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/ |
TreeWalker.java | 28 import org.w3c.dom.Element; 307 Element elem_node = (Element) node; 310 // for the element itself is declared 468 Element elem_node = (Element) node;
|