OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NodeList
(Results
76 - 100
of
817
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/third_party/WebKit/Source/core/events/
EventContext.h
76
PassRefPtr<
NodeList
> eventPath() const { return m_eventPath; }
78
void setEventPath(PassRefPtr<
NodeList
>
nodeList
) { m_eventPath =
nodeList
; }
91
RefPtr<
NodeList
> m_eventPath;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
StringArrayResourceLoader.java
4
import org.w3c.dom.
NodeList
;
31
NodeList
childNodes = (
NodeList
) itemXPath.evaluate(node, XPathConstants.NODESET);
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrsetvaluenomodificationallowederr.java
75
NodeList
genderList;
77
NodeList
genList;
79
NodeList
gList;
hc_nodeclonenodetrue.java
67
NodeList
elementList;
70
NodeList
clonedList;
73
NodeList
origList;
hc_noderemovechildnode.java
65
NodeList
elementList;
66
NodeList
emList;
68
NodeList
childList;
nodeclonenodetrue.java
67
NodeList
elementList;
69
NodeList
childList;
71
NodeList
clonedList;
documentgetelementsbytagnamelength.java
32
*
NodeList
of all the Elements with a given tagName.
36
* equal to "name". The method should return a
NodeList
65
NodeList
nameList;
elementgetelementsbytagname.java
34
* Create a
NodeList
of all the descendant elements
36
* The method should return a
NodeList
whose length is
66
NodeList
elementList;
elementgetelementsbytagnamenomatch.java
33
* Create a
NodeList
of all the descendant elements
35
* The method should return a
NodeList
whose length is
64
NodeList
elementList;
hc_documentgetelementsbytagnamelength.java
32
*
NodeList
of all the Elements with a given tagName.
36
* equal to "strong". The method should return a
NodeList
64
NodeList
nameList;
hc_elementgetelementsbytagname.java
34
* Create a
NodeList
of all the descendant elements
36
* The method should return a
NodeList
whose length is
65
NodeList
elementList;
hc_elementgetelementsbytagnamenomatch.java
33
* Create a
NodeList
of all the descendant elements
35
* The method should return a
NodeList
whose length is
63
NodeList
elementList;
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
removeNamedItemNS03.java
80
NodeList
elementList;
82
NodeList
nList;
84
NodeList
n2List;
setNamedItemNS04.java
80
NodeList
elementList;
82
NodeList
nList;
84
NodeList
n2List;
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;
documentgetelementsbytagnameNS05.java
34
* The method getElementsByTagNameNS returns a
NodeList
of all the Elements with
41
* should return a
nodeList
of 0 item. Check the length of the
nodeList
returned.
70
NodeList
childList;
/libcore/luni/src/test/java/tests/org/w3c/dom/
GetNamedItemNS.java
7
import org.w3c.dom.
NodeList
;
56
NodeList
elementList;
74
NodeList
elementList;
RemoveNamedItemNS.java
27
import org.w3c.dom.
NodeList
;
79
NodeList
elementList;
98
NodeList
elementList;
124
//
NodeList
elementList;
126
//
NodeList
nList;
128
//
NodeList
n2List;
ElementGetAttributeNS.java
29
import org.w3c.dom.
NodeList
;
74
//
NodeList
childList;
NamedNodeMapGetNamedItemNS.java
27
import org.w3c.dom.
NodeList
;
105
NodeList
elementList;
144
NodeList
elementList;
162
NodeList
elementList;
180
//
NodeList
elementList;
NodeHasAttributes.java
27
import org.w3c.dom.
NodeList
;
77
NodeList
elementList;
101
NodeList
elementList;
122
NodeList
elementList;
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minicompat.py
7
#
NodeList
-- lightest possible
NodeList
implementation
9
# EmptyNodeList -- lightest possible
NodeList
that is guaranteed to
39
__all__ = ["
NodeList
", "EmptyNodeList", "StringTypes", "defproperty"]
51
class
NodeList
(list):
66
doc="The number of nodes in the
NodeList
.")
79
NL =
NodeList
()
84
NL =
NodeList
()
99
doc="The number of nodes in the
NodeList
.")
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minicompat.py
7
#
NodeList
-- lightest possible
NodeList
implementation
9
# EmptyNodeList -- lightest possible
NodeList
that is guaranteed to
39
__all__ = ["
NodeList
", "EmptyNodeList", "StringTypes", "defproperty"]
51
class
NodeList
(list):
66
doc="The number of nodes in the
NodeList
.")
79
NL =
NodeList
()
84
NL =
NodeList
()
99
doc="The number of nodes in the
NodeList
.")
/external/chromium_org/third_party/WebKit/Source/core/dom/
StaticNodeList.h
32
#include "core/dom/
NodeList
.h"
41
class StaticNodeList FINAL : public
NodeList
{
45
RefPtr<StaticNodeList>
nodeList
= adoptRef(new StaticNodeList);
46
nodeList
->m_nodes.swap(nodes);
47
return
nodeList
.release();
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLOptionsCollection.h
48
void anonymousNamedGetter(const AtomicString& name, bool&, RefPtr<
NodeList
>&, bool&, RefPtr<Node>&);
Completed in 325 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>