HomeSort by relevance Sort by last modified time
    Searched refs:attrNode (Results 1 - 25 of 25) sorted by null

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_elementnormalize2.java 67 Attr attrNode;
74 attrNode = element.getAttributeNode("title");
75 retval = attrNode.appendChild(emptyText);
77 attrNode = element.getAttributeNode("title");
78 firstChild = attrNode.getFirstChild();
hc_nodeattributenodeattribute.java 66 Node attrNode;
72 attrNode = addrAttr.item(0);
73 attrList = attrNode.getAttributes();
nodeattributenodeattribute.java 67 Node attrNode;
73 attrNode = addrAttr.item(0);
74 attrList = attrNode.getAttributes();
attrremovechild1.java 62 Node attrNode;
70 attrNode = entElement.getAttributeNode("domestic");
71 textNode = (Text) attrNode.getFirstChild();
77 removedNode = attrNode.removeChild(textNode);
attrreplacechild1.java 62 Node attrNode;
71 attrNode = entElement.getAttributeNode("domestic");
72 textNode = (Text) attrNode.getFirstChild();
79 removedNode = attrNode.replaceChild(newChild, textNode);
attrsetvaluenomodificationallowederrEE.java 72 Node attrNode;
86 attrNode = attrList.getNamedItem("domestic");
91 ((Attr) /*Node */attrNode).setValue("newvalue");
101 attrNode.setNodeValue("newvalue2");
elementremoveattributenodenomodificationallowederrEE.java 74 Attr attrNode;
87 attrNode = (Attr) attrList.getNamedItem("domestic");
88 assertNotNull("attrNodeNotNull", attrNode);
93 removedAttr = entElement.removeAttributeNode(attrNode);
attrsetvaluenomodificationallowederr.java 82 Attr attrNode;
95 attrNode = (Attr) attrList.getNamedItem("domestic");
96 assertNotNull("attrNotNull", attrNode);
101 attrNode.setValue("newvalue");
111 attrNode.setNodeValue("newvalue2");
elementremoveattributenodenomodificationallowederr.java 77 Attr attrNode;
95 attrNode = (Attr) attrList.getNamedItem("domestic");
100 removedAttr = genElement.removeAttributeNode(attrNode);
hc_nodeelementnodeattributes.java 64 Node attrNode;
82 attrNode = (Node) addrAttr.item(indexN10070);
83 attrName = attrNode.getNodeName();
nodeelementnodeattributes.java 69 Node attrNode;
82 attrNode = (Node) addrAttr.item(indexN1005C);
83 attrName = attrNode.getNodeName();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementsetattributenodens01.java 79 Attr attrNode;
93 attrNode = element.getAttributeNodeNS("http://www.w3.org/DOM/Test/att1", "att");
94 attrName = attrNode.getNodeName();
95 attrNS = attrNode.getNamespaceURI();
documentimportnode14.java 81 Attr attrNode;
91 attrNode = ((Element) /*Node */imported).getAttributeNodeNS(nullNS, "defaultAttr");
92 assertNull("defaultAttrNotImported", attrNode);
  /external/chromium/chrome/browser/resources/shared/js/
parse_html_subset.js 48 function assertAttribute(attrNode, node) {
49 var n = attrNode.nodeName;
50 var v = attrNode.nodeValue;
  /packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java 45 Attr attrNode = getAttributeNode(name);
47 if (attrNode != null) {
48 attrValue = attrNode.getValue();
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementSetAttributeNodeNS.java 81 Attr attrNode;
98 attrNode = element.getAttributeNodeNS(
100 attrName = attrNode.getNodeName();
101 attrNS = attrNode.getNamespaceURI();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttrsXmlParser.java 418 private AttributeInfo parseAttr(Node attrNode, Node lastComment) {
420 Node nameNode = attrNode.getAttributes().getNamedItem("name"); //$NON-NLS-1$
428 info = parseAttributeTypes(attrNode, name);
502 private AttributeInfo parseAttributeTypes(Node attrNode, String name) {
507 Node attrFormat = attrNode.getAttributes().getNamedItem("format"); //$NON-NLS-1$
530 enumValues = parseEnumFlagValues(attrNode, "enum", name); //$NON-NLS-1$
543 flagValues = parseEnumFlagValues(attrNode, "flag", name); //$NON-NLS-1$
570 * If "attrNode" is null, look for any <attr> that has the given attrNode
576 * @param attrNode The <attr> XML nod
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp 334 RefPtr<Attr> attrNode = attrIfExists(attribute->name());
335 if (attrNode)
336 detachAttrNodeAtIndex(attrNode.get(), index);
338 attrNode = Attr::create(document(), attribute->name(), attribute->value());
341 return attrNode.release();
877 if (RefPtr<Attr> attrNode = inSynchronizationOfLazyAttribute ? 0 : attrIfExists(name))
878 attrNode->setValue(newValue);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 385 for (UiAttributeNode attrNode : currentUiNode.getAllUiAttributes()) {
386 if (attrNode.getDescriptor().getXmlLocalName().equals(attrName)) {
387 currAttrNode = attrNode;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java     [all...]
  /external/chromium_org/remoting/webapp/
format_iq.js 37 var attrNode = node.attributes[i];
38 var attr = attrNode.nodeName;
  /cts/suite/cts/deviceTests/browserbench/assets/octane/js/
jquery.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
jquery-1.6.4.js     [all...]
  /external/chromium_org/third_party/libxml/src/
xmlschemas.c     [all...]
  /external/libxml2/
xmlschemas.c     [all...]

Completed in 747 milliseconds