Searched refs:item (Results 26 - 50 of 590) sorted by relevance

1234567891011>>

/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Dnodeattributenodeattribute.java71 testAddr = (Element) elementList.item(0);
73 attrNode = addrAttr.item(0);
H A Dnodechildnodesempty.java73 employeeNode = elementList.item(1);
75 secondCNode = childList.item(1);
H A Dnodeclonefalsenocopytext.java73 employeeNode = elementList.item(1);
75 childNode = childList.item(3);
H A Dnodegetfirstchildnull.java72 employeeNode = elementList.item(0);
74 secondChildNode = employeeList.item(1);
H A Dnodegetlastchildnull.java72 employeeNode = elementList.item(0);
74 secondChildNode = employeeList.item(1);
H A Dnodehaschildnodesfalse.java73 child = elementList.item(1);
75 employeeNode = employeeIdList.item(1);
H A Dnodelistindexequalzero.java68 employeeNode = elementList.item(2);
70 child = employeeList.item(0);
H A Dnodelistindexgetlengthofemptylist.java73 employeeNode = elementList.item(2);
75 childNode = employeeList.item(1);
H A Dhc_nodeappendchildchildexists.java88 childNode = elementList.item(1);
90 newChild = childList.item(0);
93 memberNode = (Node) childList.item(indexN10085);
100 memberNode = (Node) childList.item(indexN1009C);
H A Dhc_nodeinsertbeforenewchildexists.java88 employeeNode = elementList.item(1);
90 refChild = childList.item(5);
91 newChild = childList.item(0);
94 child = (Node) childList.item(indexN1008C);
H A Dhc_nodereplacechildnewchildexists.java85 employeeNode = elementList.item(1);
87 newChild = childList.item(0);
88 oldChild = childList.item(5);
92 childNode = (Node) childList.item(indexN10094);
H A Dcdatasectionnormalize.java71 lChild = (Element) nameList.item(1);
74 cdataN = (CDATASection) childNodes.item(1);
78 cdataN = (CDATASection) childNodes.item(3);
H A Delementremoveattributenodenomodificationallowederr.java81 gender = genderList.item(2);
83 gen = genList.item(0);
92 genElement = (Element) gList.item(0);
H A Delementremoveattributenomodificationallowederr.java78 gender = genderList.item(2);
80 gen = genList.item(0);
89 genElement = (Element) gList.item(0);
H A Dhc_attrchildnodes1.java69 testNode = acronymList.item(3);
74 textNode = (Text) childNodes.item(0);
77 textNode = (Text) childNodes.item(1);
H A Dhc_nodereplacechild.java75 employeeNode = elementList.item(1);
77 oldChild = childList.item(0);
80 child = childList.item(0);
H A Dnodelistindexnotzero.java72 employeeNode = elementList.item(2);
77 child = employeeList.item(1);
79 child = employeeList.item(3);
H A Dnodelistreturnlastitem.java31 * Get this last child of the third employee using NodeList.item(NodeList.length - 1)
68 employeeNode = elementList.item(2);
73 child = employeeList.item(5);
77 child = employeeList.item(12);
H A Dnoderemovechildnode.java73 employeeNode = elementList.item(1);
75 oldChild = childList.item(0);
78 child = childList.item(0);
H A Dnodereplacechild.java75 employeeNode = elementList.item(1);
77 oldChild = childList.item(0);
80 child = childList.item(0);
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
H A Dnodehasattributes01.java69 element = (Element) elementList.item(0);
73 element = (Element) elementList.item(0);
H A DsetAttributeNS03.java83 gender = genderList.item(2);
85 gen = genList.item(0);
93 genElement = (Element) gList.item(0);
H A DsetAttributeNodeNS02.java90 gender = genderList.item(2);
92 gen = genList.item(0);
98 genElement = (Element) gList.item(0);
/libcore/luni/src/main/java/javax/xml/xpath/
H A DXPath.java39 * of a context item, an empty document node will be used for the context.
186 * <p>See <a href="#XPath-evaluation">Evaluation of XPath Expressions</a> for context item evaluation,
198 * <code>item</code>, an empty document will be used for the
204 * @param item The starting context (node or node list, for example).
213 public Object evaluate(String expression, Object item, QName returnType) argument
219 * <p>This method calls {@link #evaluate(String expression, Object item, QName returnType)} with a <code>returnType</code> of
222 * <p>See <a href="#XPath-evaluation">Evaluation of XPath Expressions</a> for context item evaluation,
226 * <code>item</code>, an empty document will be used for the
231 * @param item The starting context (node or node list, for example).
239 public String evaluate(String expression, Object item) argument
[all...]
/libcore/luni/src/main/java/org/w3c/dom/
H A DNamedNodeMap.java86 * Returns the <code>index</code>th item in the map. If <code>index</code>
93 public Node item(int index); method in interface:NamedNodeMap

Completed in 334 milliseconds

1234567891011>>