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

1 2 3

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodeappendchildchildexists.java 67 Node childNode;
77 childNode = elementList.item(1);
78 newChild = childNode.getFirstChild();
80 appendedChild = childNode.appendChild(newChild);
81 fchild = childNode.getFirstChild();
83 lchild = childNode.getLastChild();
nodecommentnodeattributes.java 67 Node childNode;
73 childNode = (Node) childList.item(indexN10043);
74 nodeType = (int) childNode.getNodeType();
77 attrList = childNode.getAttributes();
81 childNode = doc.createComment("This is a comment");
82 attrList = childNode.getAttributes();
hc_nodeclonefalsenocopytext.java 67 Node childNode;
74 childNode = childList.item(3);
75 clonedNode = childNode.cloneNode(false);
hc_nodeclonetruecopytext.java 66 Node childNode;
72 childNode = elementList.item(1);
73 clonedNode = childNode.cloneNode(true);
nodeclonefalsenocopytext.java 68 Node childNode;
75 childNode = childList.item(3);
76 clonedNode = childNode.cloneNode(false);
nodeclonetruecopytext.java 64 Node childNode;
70 childNode = elementList.item(1);
71 clonedNode = childNode.cloneNode(true);
nodelistindexgetlengthofemptylist.java 68 Node childNode;
75 childNode = employeeList.item(1);
76 textNode = childNode.getFirstChild();
hc_nodechildnodes.java 67 Node childNode;
86 childNode = (Node) childNodes.item(indexN1006C);
87 nodeType = (int) childNode.getNodeType();
88 childName = childNode.getNodeName();
nodechildnodes.java 62 Node childNode;
80 childNode = (Node) childNodes.item(indexN1006C);
81 childType = (int) childNode.getNodeType();
84 childName = childNode.getNodeName();
hc_nodeappendchildchildexists.java 68 Node childNode;
88 childNode = elementList.item(1);
89 childList = ((Element) /*Node */childNode).getElementsByTagName("*");
91 appendedChild = childNode.appendChild(newChild);
98 childList = childNode.getChildNodes();
hc_nodechildnodesappendchild.java 74 Node childNode;
96 childNode = (Node) childList.item(indexN10087);
97 childName = childNode.getNodeName();
98 childType = (int) childNode.getNodeType();
hc_nodereplacechildnewchildexists.java 71 Node childNode;
92 childNode = (Node) childList.item(indexN10094);
93 childName = childNode.getNodeName();
94 nodeType = (int) childNode.getNodeType();
nodereplacechildnewchildexists.java 71 Node childNode;
118 childNode = (Node) childList.item(indexN100DE);
119 childName = childNode.getNodeName();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
DOMStorageItemsView.js 98 var childNode = children[i];
99 if (childNode.data.key === storageData.key) {
100 rootNode.removeChild(childNode);
126 var childNode = new WebInspector.DataGridNode({key: storageData.key, value: storageData.value}, false);
127 rootNode.insertChild(childNode, children.length - 1);
146 var childNode = children[i];
147 if (childNode.data.key === storageData.key) {
149 rootNode.removeChild(childNode);
153 if (childNode.data.value !== storageData.value) {
154 childNode.data.value = storageData.value
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
RelativeLayoutRule.java 93 public List<String> getSelectionHint(@NonNull INode parentNode, @NonNull INode childNode) {
95 addAttr(ATTR_LAYOUT_ABOVE, childNode, infos);
96 addAttr(ATTR_LAYOUT_BELOW, childNode, infos);
97 addAttr(ATTR_LAYOUT_TO_LEFT_OF, childNode, infos);
98 addAttr(ATTR_LAYOUT_TO_RIGHT_OF, childNode, infos);
99 addAttr(ATTR_LAYOUT_ALIGN_BASELINE, childNode, infos);
100 addAttr(ATTR_LAYOUT_ALIGN_TOP, childNode, infos);
101 addAttr(ATTR_LAYOUT_ALIGN_BOTTOM, childNode, infos);
102 addAttr(ATTR_LAYOUT_ALIGN_LEFT, childNode, infos);
103 addAttr(ATTR_LAYOUT_ALIGN_RIGHT, childNode, infos)
    [all...]
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
QueryController.java 327 AccessibilityNodeInfo childNode = fromNode.getChild(i);
328 if (childNode == null) {
337 if (!childNode.isVisibleToUser()) {
340 String.format("Skipping invisible child: %s", childNode.toString()));
343 AccessibilityNodeInfo retNode = findNodeRegularRecursive(subSelector, childNode, i);
457 AccessibilityNodeInfo childNode = fromNode.getChild(i);
458 if (childNode == null) {
467 if (!childNode.isVisibleToUser()) {
470 String.format("Skipping invisible child: %s", childNode.toString()));
474 subSelector, childNode, i, originalPattern)
    [all...]
AccessibilityNodeInfoDumper.java 198 AccessibilityNodeInfo childNode = node.getChild(x);
200 if (childNode == null) {
205 if (!safeCharSeqToString(childNode.getContentDescription()).isEmpty()
206 || !safeCharSeqToString(childNode.getText()).isEmpty())
209 if (childNafCheck(childNode))
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
PluralResourceLoader.java 41 Node childNode = childNodes.item(j);
42 String value = childNode.getTextContent();
43 String quantity = childNode.getAttributes().getNamedItem("quantity").getTextContent();
StringArrayResourceLoader.java 34 Node childNode = childNodes.item(j);
36 String value = childNode.getTextContent();
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
ColladaParser.java 243 Node childNode = node.getFirstChild();
244 while (childNode != null) {
245 if (childNode.getNodeType() == Node.ELEMENT_NODE) {
246 Element field = (Element)childNode;
272 childNode = childNode.getNextSibling();
490 Node childNode = scene.getFirstChild();
491 while (childNode != null) {
492 if (childNode.getNodeType() == Node.ELEMENT_NODE) {
494 getNode((Element)childNode, null, indent);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMBuilder.java 481 Node childNode;
482 childNode = m_currentNode != null ? m_currentNode.getLastChild(): null;
483 if( childNode != null && childNode.getNodeType() == Node.TEXT_NODE ){
484 ((Text)childNode).appendData(s);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CanvasReplayStateView.js 364 var childNode = this._createDataGridNode(descriptor);
365 parent.appendChild(childNode);
366 var oldChildrenItem = oldChildren[childNode.name] || {};
368 if (!oldChildNode || oldChildNode.element.textContent !== childNode.element.textContent)
369 nodesToHighlight.push(childNode);
370 appendResourceStateDescriptors.call(this, descriptor.values, childNode, oldChildrenItem.children);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ParseRDF.java 910 XMPNode childNode = addChildNode(xmp, xmpParent, xmlNode, "", isTopLevel);
915 childNode.setValue(valueNode != null ? valueNode.getNodeValue() : "");
919 childNode.getOptions().setURI(true);
924 childNode.getOptions().setStruct(true);
947 addQualifierNode(childNode, "rdf:resource", attribute.getNodeValue());
954 childNode, attribute.getNodeName(), attribute.getNodeValue());
958 addQualifierNode (childNode, XML_LANG, attribute.getNodeValue());
962 addChildNode (xmp, childNode, attribute, attribute.getNodeValue(), false);
    [all...]
XMPNormalizer.java 413 * @param childNode the node to be moved
417 private static void transplantArrayItemAlias(Iterator propertyIt, XMPNode childNode,
422 if (childNode.getOptions().getHasLanguage())
429 childNode.addQualifier(langQual);
433 childNode.setName(XMPConst.ARRAY_ITEM_NAME);
434 baseArray.addChild(childNode);
  /external/chromium_org/third_party/icu/source/i18n/
plurrule.cpp 626 childNode=NULL;
631 if ( other.childNode == NULL ) {
632 this->childNode = NULL;
635 this->childNode = new AndConstraint(*(other.childNode));
646 if (childNode!=NULL) {
647 delete childNode;
663 curOrConstraint->childNode = new AndConstraint();
665 return curOrConstraint->childNode;
675 AndConstraint* andRule = orRule->childNode;
    [all...]

Completed in 413 milliseconds

1 2 3