/dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_nodeinsertbeforenewchildexists.java | 35 * Insert a node Element ("em") that is already 89 childList = ((Element) /*Node */employeeNode).getElementsByTagName("*"); 102 assertEqualsAutoCase("element", "childNames", expected, result);
|
hc_noderemovechildnode.java | 34 * Retrieve the second p element and remove its first child. 35 * After the removal, the second p element should have 5 element 89 emList = ((Element) /*Node */employeeNode).getElementsByTagName("em"); 93 assertEqualsAutoCase("element", "removedName", "em", removedName); 107 assertEqualsAutoCase("element", "childNames", expected, actual);
|
hc_nodereplacechildnewchildexists.java | 86 childList = ((Element) /*Node */employeeNode).getElementsByTagName("*"); 104 assertEqualsAutoCase("element", "childNames", expected, actual);
|
/dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
createElementNS03.java | 73 Element newElement;
|
elementgetattributenodens01.java | 33 * Create a new element node and add 2 new attribute nodes to it that have the same 71 Element element; local 83 element = doc.createElementNS("namespaceURI", "root"); 85 newAttribute1 = element.setAttributeNodeNS(attribute1); 87 newAttribute2 = element.setAttributeNodeNS(attribute2); 88 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Level2", "att");
|
getElementsByTagNameNS10.java | 36 * order in which they are encountered in a preorder traversal of this Element tree. 38 * Create a NodeList of all the descendant elements of the document element 77 Element docElem;
|
importNode01.java | 80 Element attrOwnerElement;
|
nodeissupported01.java | 37 * Call the isSupported method on the document element node with a combination of features 68 Element element; local 84 element = doc.getDocumentElement(); 87 success = element.isSupported(featureXML, version); 89 success = element.isSupported(featureXML, version1); 94 success = element.isSupported(featureCore, version); 96 success = element.isSupported(featureCore, version1); 97 success = element.isSupported(featureCore, version2);
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/ |
DOMBuilder.java | 31 import org.w3c.dom.Element; 65 /** Vector of element nodes */ 83 if (node instanceof Element) 209 XMLErrorResources.ER_CANT_OUTPUT_TEXT_BEFORE_DOC, null)); //"Warning: can't output text before document element! Ignoring..."); 296 * Receive notification of the beginning of an element. 299 * element in the XML document; there will be a corresponding 301 * element is empty). All of the element's content will be 305 * <p>If the element name has a namespace prefix, the prefix will 313 * @param name The element name [all...] |
/external/webkit/WebCore/accessibility/ |
AccessibilityMenuListPopup.cpp | 65 AccessibilityMenuListOption* AccessibilityMenuListPopup::menuListOptionAccessibilityObject(HTMLElement* element) const 67 if (!element || !element->hasTagName(optionTag)) 74 option->setElement(element); 95 const Vector<Element*>& listItems = static_cast<HTMLSelectElement*>(selectNode)->listItems();
|
/external/webkit/WebCore/editing/ |
SplitElementCommand.cpp | 29 #include "Element.h" 34 SplitElementCommand::SplitElementCommand(PassRefPtr<Element> element, PassRefPtr<Node> atChild) 35 : SimpleEditCommand(element->document()) 36 , m_element2(element)
|
ApplyStyleCommand.cpp | 303 const Element *elem = static_cast<const Element *>(node); 310 static PassRefPtr<Element> createFontElement(Document* document) 312 RefPtr<Element> fontNode = createHTMLElement(document, fontTag); 507 ApplyStyleCommand::ApplyStyleCommand(PassRefPtr<Element> element, bool removeOnly, EditAction editingAction) 508 : CompositeEditCommand(element->document()) 515 , m_styledInlineElement(element) 627 startRange = TextIterator::rangeFromLocationAndLength(static_cast<Element*>(scope), startIndex, 0, true); 628 endRange = TextIterator::rangeFromLocationAndLength(static_cast<Element*>(scope), endIndex, 0, true) 719 RefPtr<HTMLElement> element; local 858 StyledElement* element = static_cast<StyledElement*>(n); local 1084 HTMLElement* element = static_cast<HTMLElement*>(node); local 1649 Element *element = static_cast<Element *>(startNode); local 1687 Element *element = static_cast<Element *>(endNode); local 1708 RefPtr<Element> element = elementToInsert; local [all...] |
/external/webkit/WebCore/html/ |
CollectionCache.cpp | 37 dest.add(it->first, new Vector<Element*>(*it->second));
|
HTMLLabelElement.cpp | 57 // Search children of the label element for a form element. 61 HTMLElement* element = static_cast<HTMLElement*>(node); local 62 if (element->isFormControlElement()) 63 return element; 70 Element* elt = document()->getElementById(controlId); 85 if (HTMLElement* element = correspondingControl()) 86 element->setActive(down, pause); 98 if (HTMLElement* element = correspondingControl()) 99 element->setHovered(over) [all...] |
HTMLSelectElement.h | 51 void add(HTMLElement* element, HTMLElement* before, ExceptionCode&); 64 virtual const Vector<Element*>& listItems() const { return m_data.listItems(this); }
|
HTMLViewSourceDocument.cpp | 155 m_current = static_cast<Element*>(m_current->parent()); 163 // Catch the href attribute in the base element. 176 m_current = static_cast<Element*>(m_current->parent()); 205 PassRefPtr<Element> HTMLViewSourceDocument::addSpanWithClassName(const String& className) 289 PassRefPtr<Element> HTMLViewSourceDocument::addLink(const String& url, bool isAnchor)
|
/external/webkit/WebCore/platform/chromium/ |
ClipboardChromium.cpp | 35 #include "Element.h" 249 static String imageToMarkup(const String& url, Element* element) 257 NamedNodeMap* attrs = element->attributes(); 276 static CachedImage* getCachedImage(Element* element) 278 // Attempt to pull CachedImage from element 279 ASSERT(element); 280 RenderObject* renderer = element->renderer(); 291 static void writeImageToDataObject(ChromiumDataObject* dataObject, Element* element [all...] |
/external/webkit/WebCore/rendering/ |
HitTestResult.cpp | 104 void HitTestResult::setURLElement(Element* n) 176 String title = static_cast<Element*>(titleNode)->title(); 261 Element* element = static_cast<Element*>(m_innerNonSharedNode.get()); local 262 urlString = element->getAttribute(element->imageSourceAttributeName());
|
RenderListBox.h | 2 * This file is part of the select element renderer in WebCore. 41 RenderListBox(Element*);
|
/external/webkit/WebCore/svg/ |
SVGDocument.cpp | 49 Element* elem = documentElement();
|
SVGTextPathElement.cpp | 116 Element* targetElement = ownerDocument()->getElementById(id);
|
/external/webkit/WebKit/android/ |
RenderSkinCombo.cpp | 30 #include "Element.h" 66 bool RenderSkinCombo::Draw(SkCanvas* canvas, Node* element, int x, int y, int width, int height) 71 State state = (element->isElementNode() && static_cast<Element*>(element)->isEnabledFormControl()) ? kNormal : kDisabled; 78 RenderStyle* style = element->renderStyle();
|
/external/webkit/WebKit/gtk/WebCoreSupport/ |
DragClientGtk.cpp | 21 #include "Element.h" 66 Element* targetElement = frame->document()->elementFromPoint(m_startPos.x(), m_startPos.y());
|
/frameworks/base/graphics/java/android/renderscript/ |
RenderScriptGL.java | 49 Element.initPredefined(this);
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
Parser.java | 70 names for element and attribute names will be available. 204 elements to be the root element. 232 transmit whitespace in element-only content via the SAX 252 declaration of document element name). The Object must implement 467 theStack = new Element(theSchema.getElementType("<root>"), defaultAttributes); 468 thePCDATA = new Element(theSchema.getElementType("<pcdata>"), defaultAttributes); 516 private Element theNewElement = null; 523 private Element theStack = null; 524 private Element theSaved = null; 525 private Element thePCDATA = null [all...] |