/external/webkit/WebCore/dom/ |
SelectElement.cpp | 27 #include "Element.h" 73 void SelectElement::selectAll(SelectElementData& data, Element* element) 76 if (!element->renderer() || !data.multiple()) 80 saveLastSelection(data, element); 83 setActiveSelectionAnchorIndex(data, element, nextSelectableListIndex(data, element, -1)); 84 setActiveSelectionEndIndex(data, previousSelectableListIndex(data, element, -1)); 86 updateListBoxSelection(data, element, false); 87 listBoxOnChange(data, element); 958 SelectElement::recalcListItems(*const_cast<SelectElementData*>(this), element, false); local 978 SelectElement::recalcListItems(*const_cast<SelectElementData*>(this), element); local [all...] |
Attr.h | 42 static PassRefPtr<Attr> create(Element*, Document*, PassRefPtr<Attribute>); 47 Element* ownerElement() const { return m_element; } 63 Attr(Element*, Document*, PassRefPtr<Attribute>); 89 Element* m_element;
|
Attribute.cpp | 28 #include "Element.h" 37 PassRefPtr<Attr> Attribute::createAttrIfNeeded(Element* e)
|
ChildNodeList.h | 45 virtual bool nodeMatches(Element*) const;
|
ClassNodeList.h | 48 virtual bool nodeMatches(Element*) const;
|
NameNodeList.cpp | 26 #include "Element.h" 40 bool NameNodeList::nodeMatches(Element* testNode) const
|
NameNodeList.h | 34 // NodeList which lists all Nodes in a Element with a given "name" attribute 45 virtual bool nodeMatches(Element*) const;
|
/frameworks/base/awt/javax/imageio/metadata/ |
IIOMetadataFormatImpl.java | 55 * The element hash. 57 private HashMap<String, Element> elementHash = new HashMap<String, Element>(); 69 * the name of root element. 84 Element root = new Element(); 95 * the name of root element. 113 Element root = new Element(); 127 * Adds a new attribute to an existing element 156 Element element = findElement(elementName); local 193 Element element = findElement(elementName); local 244 Element element = findElement(elementName); local 290 Element element = findElement(elementName); local 343 Element element = findElement(elementName); local 366 Element element = new Element(); local 397 Element element = new Element(); local 421 Element element = findElement(elementName); local 448 Element element = findElement(elementName); local 491 Element element = findElement(elementName); local 524 Element element = findElement(elementName); local 598 Element element = findElement(elementName); local 608 Element element = findElement(elementName); local 617 Element element = findElement(elementName); local 627 Element element = findElement(elementName); local 635 Element element = findElement(elementName); local 643 Element element = findElement(elementName); local 652 Element element = findElement(elementName); local 671 Element element = findElement(elementName); local 680 Element element = findElement(elementName); local 689 Element element = findElement(elementName); local 698 Element element = findElement(elementName); local 744 Element element = findElement(elementName); local 755 Element element; local 771 Element element = findElement(elementName); local 969 Element element; local 987 Element element = findElement(elementName); local 1005 Element element = findElement(elementName); local [all...] |
/frameworks/base/graphics/java/android/renderscript/ |
RenderScript.java | 198 Element mElement_USER_U8; 199 Element mElement_USER_I8; 200 Element mElement_USER_U16; 201 Element mElement_USER_I16; 202 Element mElement_USER_U32; 203 Element mElement_USER_I32; 204 Element mElement_USER_F32; 206 Element mElement_A_8; 207 Element mElement_RGB_565; 208 Element mElement_RGB_888 [all...] |
/dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_elementnormalize.java | 31 * Append a couple of text nodes to the first sup element, normalize the 32 * document element and check that the element has been normalized. 60 Element root; 62 Element testName; 69 testName = (Element) elementList.item(0); 77 testName = (Element) elementList.item(0);
|
/dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
elementgetelementsbytagnamens04.java | 36 * Create a new element node ('root') and append three newly created child nodes (all have 76 Element element; local 77 Element child1; 78 Element child2; 79 Element child3; 85 element = doc.createElementNS("http://www.w3.org/DOM", "root"); 89 appendedChild = element.appendChild(child1); 90 appendedChild = element.appendChild(child2); 91 appendedChild = element.appendChild(child3) [all...] |
elementsetattributenodens02.java | 35 * Retreive the street attribute from the second address element node. 73 Element element; local 74 Element element2; 85 element = (Element) elementList.item(1); 86 attribute = element.getAttributeNodeNS(nullNS, "street"); 88 element2 = (Element) elementList.item(2);
|
elementsetattributenodens03.java | 36 * another Element object. 38 * Retreive an attribute node of an existing element node. Attempt to add it to an another 39 * element node. Check if the INUSE_ATTRIBUTE_ERR exception is thrown. 75 Element element1; 76 Element element2; 84 element1 = (Element) elementList.item(1); 86 element2 = (Element) elementList.item(2);
|
nodehasattributes04.java | 34 * The method hasAttributes returns whether this node (if it is an element) has any attributes. 35 * Create a new Document, Element and Attr node. Add the Attr to the Element and append the 36 * Element to the Document. Retreive the newly created element node from the document and check 75 Element element; local 76 Element elementTest; 77 Element elementDoc; 86 element = newDoc.createElementNS("http://www.w3.org/DOM/Test", "dom:elem") [all...] |
/dalvik/libcore/support/src/test/java/tests/support/ |
Support_Xml.java | 23 import org.w3c.dom.Element; 47 public static Element firstElementOf(Document doc) throws Exception { 48 return (Element) doc.getFirstChild(); 51 public static String attrOf(Element e) throws Exception {
|
/dalvik/libcore/xml/src/main/java/org/w3c/dom/ |
Document.java | 58 * node that is the document element of the document. 60 public Element getDocumentElement(); 63 * Creates an element of the type specified. Note that the instance 64 * returned implements the <code>Element</code> interface, so attributes 68 * and attached to the element. 69 * <br>To create an element with a qualified name and namespace URI, use 71 * @param tagName The name of the element type to instantiate. For XML, 76 * @return A new <code>Element</code> object with the 85 public Element createElement(String tagName) 143 * <code>Attr</code> instance can then be set on an <code>Element</code> [all...] |
/dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/ |
ElementSetAttributeNodeNS.java | 29 import org.w3c.dom.Element; 40 * Testing Element.setAttributeNodeNS: If an attribute with that local name and 41 * that namespace URI is already present in the element, it is replaced by the 42 * new one. Create a new element and two new attribute nodes (in the same 44 * element node using the setAttributeNodeNS method. Check that only one 52 @TestTargetClass(Element.class) 90 Element element; local 101 element = doc.createElementNS("http://www.w3.org/DOM/Test/Level2", 102 "new:element"); 129 Element element; local 221 Element element; local 248 Element element; local [all...] |
/external/webkit/WebCore/html/ |
HTMLCollection.h | 36 class Element; 75 virtual Element* itemAfter(Element*) const; 79 bool checkForNameMatch(Element*, bool checkName, const AtomicString& name) const;
|
HTMLLegendElement.cpp | 76 Element *HTMLLegendElement::formElement() 85 // Find first form element inside the fieldset. 90 HTMLElement *element = static_cast<HTMLElement *>(node); local 91 if (!element->hasLocalName(legendTag) && element->isFormControlElement()) 92 return element; 102 Element::focus(); 105 if (Element *element = formElement()) 106 element->focus(false) [all...] |
HTMLLegendElement.h | 41 * The first form element in the legend's fieldset 43 Element* formElement();
|
/external/webkit/WebCore/rendering/ |
HitTestResult.h | 29 class Element; 49 Element* URLElement() const { return m_innerURLElement.get(); } 59 void setURLElement(Element*); 85 RefPtr<Element> m_innerURLElement;
|
RenderPart.cpp | 32 RenderPart::RenderPart(Element* node)
|
RenderPart.h | 36 RenderPart(Element*);
|
RenderPartObject.h | 33 RenderPartObject(Element*);
|
/external/webkit/WebKit/win/WebCoreSupport/ |
EmbeddedWidget.h | 34 class Element;
42 static PassRefPtr<EmbeddedWidget> create(IWebEmbeddedView*, WebCore::Element* element, HWND parentWindow, const WebCore::IntSize&);
46 EmbeddedWidget(IWebEmbeddedView* view, WebCore::Element* element)
48 , m_element(element)
75 WebCore::Element* m_element;
|