HomeSort by relevance Sort by last modified time
    Searched defs:newElement (Results 1 - 25 of 46) sorted by null

1 2

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentcreateelement.java 65 Element newElement;
70 newElement = doc.createElement("address");
71 newElementName = newElement.getNodeName();
73 newElementType = (int) newElement.getNodeType();
75 newElementValue = newElement.getNodeValue();
hc_documentcreateelement.java 64 Element newElement;
69 newElement = doc.createElement("acronym");
70 newElementName = newElement.getNodeName();
72 newElementType = (int) newElement.getNodeType();
74 newElementValue = newElement.getNodeValue();
documentcreateelementdefaultattr.java 75 Element newElement;
81 newElement = doc.createElement("address");
82 defaultAttr = newElement.getAttributes();
elementinuseattributeerr.java 75 Element newElement;
82 newElement = doc.createElement("newElement");
83 appendedChild = testAddress.appendChild(newElement);
85 setAttr1 = newElement.setAttributeNode(newAttribute);
hc_elementinuseattributeerr.java 66 Element newElement;
74 newElement = doc.createElement("p");
75 appendedChild = testAddress.appendChild(newElement);
77 setAttr1 = newElement.setAttributeNode(newAttribute);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
createElementNS01.java 73 Element newElement;
79 newElement = doc.createElementNS(namespaceURI, malformedName);
createElementNS02.java 73 Element newElement;
79 newElement = doc.createElementNS(namespaceURI, qualifiedName);
createElementNS03.java 73 Element newElement;
111 newElement = doc.createElementNS(namespaceURI, qualifiedName);
createElementNS04.java 75 Element newElement;
81 newElement = doc.createElementNS(namespaceURI, qualifiedName);
createElementNS05.java 70 Element newElement;
73 newElement = doc.createElementNS(namespaceURI, qualifiedName);
74 elementName = newElement.getTagName();
createElementNS06.java 66 Element newElement;
73 newElement = doc.createElementNS(namespaceURI, "");
getElementsByTagNameNS02.java 77 Element newElement;
83 newElement = (Element) newList.item(3);
84 prefix = newElement.getPrefix();
86 lname = newElement.getLocalName();
getElementsByTagNameNS09.java 79 Element newElement;
87 newElement = (Element) newList.item(3);
88 prefix = newElement.getPrefix();
90 lname = newElement.getLocalName();
setAttributeNodeNS01.java 77 Element newElement;
88 newElement = doc.createElement("newElement");
89 appendedChild = testAddr.appendChild(newElement);
91 setAttr1 = newElement.setAttributeNodeNS(newAttr);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/
AttrsXmlParserManifestTest.java 82 DeclareStyleableInfo newElement = styleableList.get("AndroidManifestNewElement");
83 assertNotNull(newElement);
84 assertEquals("AndroidManifestNewElement", newElement.getStyleName());
86 Arrays.toString(newElement.getParents()));
  /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);
  /frameworks/base/tools/aapt/
XMLNode.h 48 sp<XMLNode> newElement(const String8& filename, const String16& ns, const String16& name) {
  /libcore/luni/src/test/java/tests/org/w3c/dom/
CreateElementNS.java 185 Element newElement;
188 newElement = doc.createElementNS(namespaceURI, qualifiedName);
189 elementName = newElement.getTagName();
SetAttributeNodeNS.java 86 Element newElement;
95 newElement = doc.createElement("newElement");
96 testAddr.appendChild(newElement);
98 newElement.setAttributeNodeNS(newAttr);
GetElementsByTagNameNS.java 83 Element newElement;
89 newElement = (Element) newList.item(3);
90 prefix = newElement.getPrefix();
92 lname = newElement.getLocalName();
187 Element newElement;
195 newElement = (Element) newList.item(3);
196 prefix = newElement.getPrefix();
198 lname = newElement.getLocalName();
  /external/webkit/Source/WebCore/dom/
XMLDocumentParserQt.cpp 341 static inline void handleElementNamespaces(Element* newElement, const QXmlStreamNamespaceDeclarations &ns,
349 newElement->setAttributeNS("http://www.w3.org/2000/xmlns/", namespaceQName, namespaceURI, ec, scriptingPermission);
355 static inline void handleElementAttributes(Element* newElement, const QXmlStreamAttributes &attrs, ExceptionCode& ec,
364 newElement->setAttributeNS(attrURI, attrQName, attrValue, ec, scriptingPermission);
495 RefPtr<Element> newElement = document()->createElement(qName, true);
496 if (!newElement) {
524 handleElementNamespaces(newElement.get(), m_stream.namespaceDeclarations(), ec, m_scriptingPermission);
530 handleElementAttributes(newElement.get(), m_stream.attributes(), ec, m_scriptingPermission);
536 ScriptElement* scriptElement = toScriptElement(newElement.get());
540 m_currentNode->deprecatedParserAddChild(newElement.get())
    [all...]
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...]
  /external/icu4c/common/
udata.cpp 329 DataCacheElement *newElement;
343 newElement = (DataCacheElement *)uprv_malloc(sizeof(DataCacheElement));
344 if (newElement == NULL) {
348 newElement->item = UDataMemory_createNewInstance(pErr);
350 uprv_free(newElement);
353 UDatamemory_assign(newElement->item, item);
357 newElement->name = (char *)uprv_malloc(nameLen+1);
358 if (newElement->name == NULL) {
360 uprv_free(newElement->item);
361 uprv_free(newElement);
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLTreeBuilder.cpp     [all...]
  /external/webkit/Source/WebKit/win/
DOMCoreClasses.cpp 472 IDOMElement* newElement = DOMElement::createInstance(static_cast<WebCore::Element*>(n));
473 if (newElement) {
474 hr = newElement->QueryInterface(IID_IDOMNode, (void**)&domNode);
475 newElement->Release();
    [all...]

Completed in 244 milliseconds

1 2