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

1 2

  /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/webkit/WebCore/dom/
PositionIterator.h 48 , m_nodeAfterPositionInAnchor(m_anchorNode->childNode(pos.deprecatedEditingOffset()))
ContainerNode.h 61 Node* childNode(unsigned index) const;
119 return static_cast<const ContainerNode*>(this)->childNode(index);
RangeBoundaryPoint.h 115 ASSERT(childBefore == (offset ? container->childNode(offset - 1) : 0));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
IViewRule.java 100 * @param childNode The child node that was selected. Never null.
104 INode childNode);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/
android.widget.RelativeLayout.groovy 30 void onChildSelected(IGraphics gc, INode parentNode, INode childNode) {
31 super.onChildSelected(gc, parentNode, childNode);
52 def a = childNode.getStringAttr(ANDROID_URI, "layout_${it}");
136 def childNode = null;
167 childNode = child;
173 if (childNode != null && childNode != data.child) {
174 data.child = childNode;
179 def result = computeChildDropZones(childNode);
186 } else if (childNode == null)
    [all...]
BaseView.groovy 92 void onChildSelected(IGraphics gc, INode parentNode, INode childNode) {
94 Rect rc = childNode.getBounds();
BaseLayout.groovy 276 INode childNode = newNode.appendChild(fqcn);
278 addAttributes(childNode, element, idMap, null /* closure */);
279 addInnerElements(childNode, element, idMap);
  /libcore/luni/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);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ExpandableDictionary.java 151 Node childNode = null;
154 childNode = children.data[i];
155 if (childNode.code == c) {
161 childNode = new Node();
162 childNode.code = c;
163 childNode.parent = parentNode;
164 children.add(childNode);
168 childNode.terminal = true;
169 childNode.frequency = Math.max(frequency, childNode.frequency)
    [all...]
  /external/chromium/third_party/icu/source/i18n/
plurrule.cpp 627 childNode=NULL;
632 if ( other.childNode == NULL ) {
633 this->childNode = NULL;
636 this->childNode = new AndConstraint(*(other.childNode));
647 if (childNode!=NULL) {
648 delete childNode;
664 curOrConstraint->childNode = new AndConstraint();
666 return curOrConstraint->childNode;
676 AndConstraint* andRule = orRule->childNode;
    [all...]
  /external/icu4c/i18n/
plurrule.cpp 627 childNode=NULL;
632 if ( other.childNode == NULL ) {
633 this->childNode = NULL;
636 this->childNode = new AndConstraint(*(other.childNode));
647 if (childNode!=NULL) {
648 delete childNode;
664 curOrConstraint->childNode = new AndConstraint();
666 return curOrConstraint->childNode;
676 AndConstraint* andRule = orRule->childNode;
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
Builder.java 61 ASTaddress childNode = (ASTaddress) node.jjtGetChild(i);
62 Address address = buildAddress(childNode);

Completed in 517 milliseconds

1 2