HomeSort by relevance Sort by last modified time
    Searched refs:childNode (Results 26 - 50 of 89) sorted by null

12 3 4

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodereplacechildnewchildexists.java 71 Node childNode;
118 childNode = (Node) childList.item(indexN100DE);
119 childName = childNode.getNodeName();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ExpandableDictionary.java 217 Node childNode = null;
221 childNode = node;
226 if (childNode == null) {
227 childNode = new Node();
228 childNode.mCode = c;
229 childNode.mParent = parentNode;
230 childNode.mShortcutOnly = isShortcutOnly;
231 children.add(childNode);
235 childNode.mTerminal = true;
237 if (null == childNode.mShortcutTargets)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
StringArrayResourceLoader.java 34 Node childNode = childNodes.item(j);
36 String value = childNode.getTextContent();
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodeappendchildchildexists.js 97 var childNode;
122 childNode = elementList.item(1);
123 childList = childNode.getElementsByTagName("*");
125 appendedChild = childNode.appendChild(newChild);
134 childList = childNode.childNodes;
hc_nodechildnodes.js 96 var childNode;
121 childNode = childNodes.item(indexN1006C);
122 nodeType = childNode.nodeType;
124 childName = childNode.nodeName;
hc_nodereplacechildnewchildexists.js 100 var childNode;
126 childNode = childList.item(indexN10094);
127 childName = childNode.nodeName;
129 nodeType = childNode.nodeType;
hc_nodeclonefalsenocopytext.js 96 var childNode;
109 childNode = childList.item(3);
110 clonedNode = childNode.cloneNode(false);
hc_nodeclonetruecopytext.js 95 var childNode;
106 childNode = elementList.item(1);
107 clonedNode = childNode.cloneNode(true);
hc_nodechildnodesappendchild.js 103 var childNode;
131 childNode = childList.item(indexN10087);
132 childName = childNode.nodeName;
134 childType = childNode.nodeType;
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodeappendchildchildexists.js 97 var childNode;
122 childNode = elementList.item(1);
123 childList = childNode.getElementsByTagName("*");
125 appendedChild = childNode.appendChild(newChild);
134 childList = childNode.childNodes;
hc_nodechildnodes.js 96 var childNode;
121 childNode = childNodes.item(indexN1006C);
122 nodeType = childNode.nodeType;
124 childName = childNode.nodeName;
hc_nodereplacechildnewchildexists.js 100 var childNode;
126 childNode = childList.item(indexN10094);
127 childName = childNode.nodeName;
129 nodeType = childNode.nodeType;
hc_nodeclonefalsenocopytext.js 96 var childNode;
109 childNode = childList.item(3);
110 clonedNode = childNode.cloneNode(false);
hc_nodeclonetruecopytext.js 95 var childNode;
106 childNode = elementList.item(1);
107 clonedNode = childNode.cloneNode(true);
hc_nodechildnodesappendchild.js 103 var childNode;
131 childNode = childList.item(indexN10087);
132 childName = childNode.nodeName;
134 childType = childNode.nodeType;
  /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/webkit/LayoutTests/dom/xhtml/level3/core/
datatypenormalization13.js 103 var childNode;
130 childNode = element.firstChild;
132 assertNotNull("childNodeNotNull",childNode);
133 childValue = childNode.nodeValue;
datatypenormalization14.js 102 var childNode;
129 childNode = element.firstChild;
131 assertNotNull("childNodeNotNull",childNode);
132 childValue = childNode.nodeValue;
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
AccessibilityNodeInfoDumper.java 198 AccessibilityNodeInfo childNode = node.getChild(x);
200 if (!safeCharSeqToString(childNode.getContentDescription()).isEmpty()
201 || !safeCharSeqToString(childNode.getText()).isEmpty())
204 if (childNafCheck(childNode))
  /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/llvm/lib/Analysis/
PathNumbering.cpp 429 BallLarusNode* childNode;
432 childNode = succNode;
434 childNode = addNode(succBB);
435 inDag[succBB] = childNode;
437 addEdge(currentNode, childNode, duplicateCount);
438 dfsStack.push(childNode);
  /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);
XMPNodeUtils.java 168 XMPNode childNode = parent.findChildByName(childName);
170 if (childNode == null && createNodes)
173 childNode = new XMPNode(childName, options);
174 childNode.setImplicit(true);
175 parent.addChild(childNode);
178 assert childNode != null || !createNodes;
180 return childNode;
  /external/webkit/Source/WebCore/inspector/front-end/
DetailedHeapshotGridNodes.js 291 _childHashForNode: function(childNode)
293 return childNode._referenceType + "#" + childNode._referenceName;
378 _childHashForNode: function(childNode)
380 return childNode._referenceType + "#" + childNode._referenceName;
465 _childHashForNode: function(childNode)
467 return childNode.snapshotNodeId;
588 _childHashForNode: function(childNode)
590 return childNode.snapshotNodeId
    [all...]

Completed in 427 milliseconds

12 3 4