OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nodelist
(Results
101 - 125
of
1064
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/third_party/WebKit/Source/core/dom/
MutationRecord.cpp
36
#include "core/dom/
NodeList
.h"
103
static StaticNodeList* lazilyInitializeEmptyNodeList(RefPtrWillBeMember<StaticNodeList>&
nodeList
)
105
if (!
nodeList
)
106
nodeList
= StaticNodeList::createEmpty();
107
return
nodeList
.get();
/libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapGetNamedItemNS.java
27
import org.w3c.dom.
NodeList
;
105
NodeList
elementList;
144
NodeList
elementList;
162
NodeList
elementList;
180
//
NodeList
elementList;
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/sampleProjects/
AndroidManifestWriter.java
25
import org.w3c.dom.
NodeList
;
69
NodeList
nodeList
= mDoc.getElementsByTagName(AndroidManifest.NODE_USES_SDK);
70
if (
nodeList
.getLength() > 0) {
71
usesSdkElement = (Element)
nodeList
.item(0);
/external/apache-xml/src/main/java/org/apache/xpath/
CachedXPathAPI.java
31
import org.w3c.dom.
NodeList
;
151
* Use an XPath string to select a
nodelist
.
167
* Use an XPath string to select a
nodelist
.
190
* Use an XPath string to select a
nodelist
.
199
public
NodeList
selectNodeList(Node contextNode, String str)
206
* Use an XPath string to select a
nodelist
.
216
public
NodeList
selectNodeList(
224
// Return a
NodeList
.
225
return list.
nodelist
();
233
* @return An XObject, which can be used to obtain a string, number,
nodelist
, etc, should never be null
[
all
...]
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentgetelementsbytagnamevalue.java
32
*
NodeList
of all the Elements with a given tagName
37
* equal to "name". The method should return a
NodeList
67
NodeList
nameList;
elementgetelementsbytagnamespecialvalue.java
34
* Create a
NodeList
of all the descendant elements
65
NodeList
elementList;
67
NodeList
lastempList;
elementretrievetagname.java
31
* The "getElementsByTagName()" method returns a
NodeList
35
* a
NodeList
of "position" elements. Retrieve the second
65
NodeList
elementList;
hc_documentgetelementsbytagnamevalue.java
32
*
NodeList
of all the Elements with a given tagName
37
* equal to "strong". The method should return a
NodeList
66
NodeList
nameList;
hc_elementgetelementsbytagnamespecialvalue.java
34
* Create a
NodeList
of all the descendant elements
64
NodeList
elementList;
66
NodeList
lastempList;
hc_elementretrievetagname.java
31
* The "getElementsByTagName()" method returns a
NodeList
35
* a
NodeList
of "code" elements. Retrieve the second
64
NodeList
elementList;
hc_nodeclonenodefalse.java
37
* length of the
NodeList
are checked. The "getNodeName()"
66
NodeList
elementList;
70
NodeList
cloneChildren;
hc_nodeclonenodetrue.java
67
NodeList
elementList;
70
NodeList
clonedList;
73
NodeList
origList;
hc_noderemovechildnode.java
65
NodeList
elementList;
66
NodeList
emList;
68
NodeList
childList;
nodechildnodesappendchild.java
31
* Add an element and check that the previously retrieved childNodes
NodeList
61
NodeList
elementList;
63
NodeList
childList;
nodeclonenodefalse.java
37
* length of the
NodeList
are checked. The "getNodeName()"
67
NodeList
elementList;
71
NodeList
cloneChildren;
nodeclonenodetrue.java
67
NodeList
elementList;
69
NodeList
childList;
71
NodeList
clonedList;
nodelistindexgetlengthofemptylist.java
65
NodeList
elementList;
67
NodeList
employeeList;
70
NodeList
textList;
nodelistreturnfirstitem.java
31
* Get the first child of the third employee using
NodeList
.item(0)
60
NodeList
elementList;
62
NodeList
employeeList;
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentgetelementsbytagnameNS01.java
34
* The method getElementsByTagNameNS returns a
NodeList
of all the Elements with
39
* namespaceURI=* and localName=*. This should return a
nodeList
of 1 item.
73
NodeList
childList;
documentgetelementsbytagnameNS03.java
34
* The method getElementsByTagNameNS returns a
NodeList
of all the Elements with
39
* namespaceURI=** and localName=**. This should return a
nodeList
of 0 items.
68
NodeList
childList;
documentgetelementsbytagnameNS04.java
34
* The method getElementsByTagNameNS returns a
NodeList
of all the Elements with
39
* namespaceURI="null" and localName="0". This should return a
nodeList
of 0 items.
75
NodeList
childList;
documentimportnode12.java
76
NodeList
childList;
79
NodeList
addressElemChildren;
80
NodeList
importedChildren;
elementgetelementsbytagnamens02.java
47
* The method getElementsByTagNameNS returns a
NodeList
of all the Elements with a given local
51
* localName '*'. Verify if this returns a
nodeList
of 0 elements.
87
NodeList
elementList;
elementgetelementsbytagnamens05.java
47
* Returns a
NodeList
of all the Elements with a given local name and namespace URI in the
52
* Verify if this returns a
nodeList
of 1 elements.
88
NodeList
elementList;
getElementsByTagNameNS02.java
35
* Document should return a new
NodeList
of all Elements with a given
41
* Method should return a new
NodeList
containing five Elements.
76
NodeList
newList;
Completed in 1047 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>