HomeSort by relevance Sort by last modified time
    Searched refs:newElement (Results 26 - 49 of 49) sorted by null

12

  /libcore/luni/src/test/java/tests/org/w3c/dom/
CreateElementNS.java 185 Element newElement;
188 newElement = doc.createElementNS(namespaceURI, qualifiedName);
189 elementName = newElement.getTagName();
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_elementinuseattributeerr.js 95 var newElement;
108 newElement = doc.createElement("p");
109 appendedChild = testAddress.appendChild(newElement);
111 setAttr1 = newElement.setAttributeNode(newAttribute);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_elementinuseattributeerr.js 95 var newElement;
108 newElement = doc.createElement("p");
109 appendedChild = testAddress.appendChild(newElement);
111 setAttr1 = newElement.setAttributeNode(newAttribute);
  /external/webkit/Source/WebCore/html/parser/
HTMLFormattingElementList.h 114 void swapTo(Element* oldElement, Element* newElement, const Bookmark&);
HTMLTreeBuilder.cpp     [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodereplacechild30.js 94 var newElement;
111 newElement = doc.createElementNS("http://www.w3.org/1999/xhtml","xhtml:body");
113 appendedChild = parent.appendChild(newElement);
124 replaced = parent.replaceChild(newElement,oldChild);
128 replaced = parent.replaceChild(oldChild,newElement);
nodereplacechild39.js 92 var newElement;
106 newElement = doc.createElementNS(rootNS,rootName);
111 retNode = doc.replaceChild(newElement,newComment);
nodecomparedocumentposition07.js 79 newElement, and the newElement is contained and follows the document.
nodegetbaseuri06.js 92 var newElement;
100 newElement = doc.createElementNS("http://www.w3.org/1999/xhtml","br");
  /external/webkit/Source/WebCore/dom/
xml_expat_tokenizer.cpp 394 static inline void handleElementNamespaces(Element *newElement, const String &uri, const String &prefix, ExceptionCode &exceptioncode)
402 newElement->setAttributeNS(String("http://www.w3.org/2000/xmlns/"), namespaceQName, uri, exceptioncode);
405 static inline void handleElementAttributes(Element *newElement, const XML_Char **atts, ExceptionCode &exceptioncode)
412 newElement->setAttributeNS(attrURI, attrQName, attrValue, exceptioncode);
444 RefPtr<Element> newElement = m_doc->createElementNS(uri, qName, ec);
445 if (!newElement) {
450 handleElementNamespaces(newElement.get(), uri, prefix, ec);
456 handleElementAttributes(newElement.get(), atts, ec);
462 if (newElement->hasTagName(scriptTag))
463 static_cast<HTMLScriptElement*>(newElement.get())->setCreatedByParser(true)
    [all...]
XMLDocumentParserLibxml2.cpp 706 static inline void handleElementNamespaces(Element* newElement, const xmlChar** libxmlNamespaces, int nb_namespaces, ExceptionCode& ec, FragmentScriptingPermission scriptingPermission)
714 newElement->setAttributeNS(XMLNSNames::xmlnsNamespaceURI, namespaceQName, namespaceURI, ec, scriptingPermission);
729 static inline void handleElementAttributes(Element* newElement, const xmlChar** libxmlAttributes, int nb_attributes, ExceptionCode& ec, FragmentScriptingPermission scriptingPermission)
739 newElement->setAttributeNS(attrURI, attrQName, attrValue, ec, scriptingPermission);
800 RefPtr<Element> newElement = document()->createElement(qName, true);
801 if (!newElement) {
807 handleElementNamespaces(newElement.get(), libxmlNamespaces, nb_namespaces, ec, m_scriptingPermission);
813 handleElementAttributes(newElement.get(), libxmlAttributes, nb_attributes, ec, m_scriptingPermission);
819 newElement->beginParsingChildren();
821 ScriptElement* scriptElement = toScriptElement(newElement.get())
    [all...]
Document.cpp 816 RefPtr<Element> newElement = createElementNS(oldElement->namespaceURI(), oldElement->tagQName().toString(), ec);
826 newElement->setAttribute(attr->name(), attr->value().impl(), ec);
832 newElement->copyNonAttributeProperties(oldElement);
839 newElement->appendChild(newChild.release(), ec);
845 return newElement.release();
    [all...]
  /external/webkit/Source/WebCore/editing/
DeleteButtonController.cpp 176 HTMLElement* newElement = enclosingDeletableElement(m_frame->selection()->selection());
177 if (oldElement == newElement)
181 if (newElement)
182 show(newElement);
  /external/webkit/LayoutTests/dom/html/level2/core/
createElementNS06.js 92 var newElement;
104 newElement = doc.createElementNS(namespaceURI,"");
  /external/webkit/LayoutTests/dom/xhtml/level2/core/
createElementNS06.js 92 var newElement;
104 newElement = doc.createElementNS(namespaceURI,"");
  /external/v8/src/
json.js 36 var newElement = Revive(val, $String(i), reviver);
37 val[i] = newElement;
42 var newElement = Revive(val, p, reviver);
43 if (IS_UNDEFINED(newElement)) {
46 val[p] = newElement;
  /external/webkit/Source/WebCore/inspector/front-end/
ElementsTreeOutline.js 500 var newElement = new WebInspector.ElementsTreeElement(child, closingTag);
501 newElement.selectable = this.treeOutline.selectEnabled;
502 this.insertChild(newElement, index);
503 return newElement;
558 var newElement = treeElement.insertChildElement(child, treeChildIndex);
560 elementToSelect = newElement;
    [all...]
  /frameworks/base/tools/aapt/
XMLNode.h 48 sp<XMLNode> newElement(const String8& filename, const String16& ns, const String16& name) {
XMLNode.cpp     [all...]
Resource.cpp 706 vers = XMLNode::newElement(root->getFilename(), String16(), String16("uses-sdk"));
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 1311 if (typeof tag == 'string') return document.newElement(tag, props);
1401 newElement: function(tag, props){
    [all...]
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 1613 milliseconds

12