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

1 2

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
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);
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();
nodelistindexgetlengthofemptylist.java 68 Node childNode;
75 childNode = employeeList.item(1);
76 textNode = childNode.getFirstChild();
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_nodechildnodes.java 67 Node childNode;
86 childNode = (Node) childNodes.item(indexN1006C);
87 nodeType = (int) childNode.getNodeType();
88 childName = childNode.getNodeName();
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();
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();
nodechildnodes.java 62 Node childNode;
80 childNode = (Node) childNodes.item(indexN1006C);
81 childType = (int) childNode.getNodeType();
84 childName = childNode.getNodeName();
nodereplacechildnewchildexists.java 71 Node childNode;
118 childNode = (Node) childList.item(indexN100DE);
119 childName = childNode.getNodeName();
  /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();
  /external/chromium_org/gpu/tools/compositor_model_bench/
render_tree.cc 359 DictionaryValue* childNode;
360 children->GetDictionary(i, &childNode);
361 RenderNode* child = InterpretNode(childNode);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNode.h 97 Node* childNode(unsigned index) const;
223 inline Node* Node::childNode(unsigned index) const
227 return toContainerNode(this)->childNode(index);
ContainerNode.cpp 973 Node *ContainerNode::childNode(unsigned index) const
    [all...]
  /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))
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...]
  /frameworks/uiautomator/src/com/android/uiautomator/core/
AccessibilityNodeInfoDumper.java 176 AccessibilityNodeInfo childNode = node.getChild(x);
178 if (!safeCharSeqToString(childNode.getContentDescription()).isEmpty()
179 || !safeCharSeqToString(childNode.getText()).isEmpty())
182 if (childNafCheck(childNode))
QueryController.java 325 AccessibilityNodeInfo childNode = fromNode.getChild(i);
326 if (childNode == null) {
335 if (!childNode.isVisibleToUser()) {
338 String.format("Skipping invisible child: %s", childNode.toString()));
341 AccessibilityNodeInfo retNode = findNodeRegularRecursive(subSelector, childNode, i);
455 AccessibilityNodeInfo childNode = fromNode.getChild(i);
456 if (childNode == null) {
465 if (!childNode.isVisibleToUser()) {
468 String.format("Skipping invisible child: %s", childNode.toString()));
472 subSelector, childNode, i, originalPattern)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
Builder.java 60 ASTaddress childNode = (ASTaddress) node.jjtGetChild(i);
61 Address address = buildAddress(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/chromium_org/third_party/WebKit/Source/core/rendering/
RenderNamedFlowThread.cpp 147 Node* childNode = newChild->node();
150 if (!childNode)
153 ASSERT(childNode->isElementNode());
155 RenderObject* beforeChild = nextRendererForNode(childNode);

Completed in 2342 milliseconds

1 2