OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NodeList
(Results
1 - 25
of
817
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/packages/apps/Mms/src/org/w3c/dom/smil/
ElementTimeContainer.java
15
import org.w3c.dom.
NodeList
;
23
* A
NodeList
that contains all timed childrens of this node. If there are
24
* no timed children, the <code>
Nodelist
</code> is empty. An iterator
28
public
NodeList
getTimeChildren();
36
public
NodeList
getActiveChildrenAt(float instant);
SMILLayoutElement.java
14
* 2) ADD public
NodeList
getRegions();
19
import org.w3c.dom.
NodeList
;
46
public
NodeList
getRegions();
ElementExclusiveTimeContainer.java
16
import org.w3c.dom.
NodeList
;
38
public
NodeList
getPausedElements();
/external/chromium_org/third_party/WebKit/Source/core/dom/
NodeList.h
35
class
NodeList
: public ScriptWrappable, public RefCounted<
NodeList
> {
37
virtual ~
NodeList
() { }
39
// DOM methods & attributes for
NodeList
49
NodeList
()
WebKitNamedFlow.idl
39
NodeList
getRegionsByContent(Node contentNode);
40
NodeList
getRegions();
41
NodeList
getContent();
MutationRecord.h
42
class
NodeList
;
47
static PassRefPtr<MutationRecord> createChildList(PassRefPtr<Node> target, PassRefPtr<
NodeList
> added, PassRefPtr<
NodeList
> removed, PassRefPtr<Node> previousSibling, PassRefPtr<Node> nextSibling);
62
virtual
NodeList
* addedNodes() = 0;
63
virtual
NodeList
* removedNodes() = 0;
MutationRecord.cpp
36
#include "core/dom/
NodeList
.h"
47
ChildListRecord(PassRefPtr<Node> target, PassRefPtr<
NodeList
> added, PassRefPtr<
NodeList
> removed, PassRefPtr<Node> previousSibling, PassRefPtr<Node> nextSibling)
59
virtual
NodeList
* addedNodes() OVERRIDE { return m_addedNodes.get(); }
60
virtual
NodeList
* removedNodes() OVERRIDE { return m_removedNodes.get(); }
65
RefPtr<
NodeList
> m_addedNodes;
66
RefPtr<
NodeList
> m_removedNodes;
82
virtual
NodeList
* addedNodes() OVERRIDE { return lazilyInitializeEmptyNodeList(m_addedNodes); }
83
virtual
NodeList
* removedNodes() OVERRIDE { return lazilyInitializeEmptyNodeList(m_removedNodes); }
85
static
NodeList
* lazilyInitializeEmptyNodeList(RefPtr<NodeList>& nodeList
[
all
...]
NamedFlow.h
44
class
NodeList
;
58
PassRefPtr<
NodeList
> getRegionsByContent(Node*);
59
PassRefPtr<
NodeList
> getRegions();
60
PassRefPtr<
NodeList
> getContent();
DocumentFragment.idl
26
[RaisesException]
NodeList
querySelectorAll(DOMString selectors);
NamedNodesCollection.h
35
#include "core/dom/
NodeList
.h"
42
class NamedNodesCollection FINAL : public
NodeList
{
44
static PassRefPtr<
NodeList
> create(const Vector<RefPtr<Node> >& nodes)
NodeList.idl
24
] interface
NodeList
{
/libcore/luni/src/main/java/org/w3c/dom/
NodeList.java
16
* The <code>
NodeList
</code> interface provides the abstraction of an ordered
18
* is implemented. <code>
NodeList
</code> objects in the DOM are live.
19
* <p>The items in the <code>
NodeList
</code> are accessible via an integral
23
public interface
NodeList
{
30
* <code>
NodeList
</code>, or <code>null</code> if that is not a valid
/external/chromium_org/third_party/WebKit/Source/web/
WebNodeList.cpp
35
#include "core/dom/
NodeList
.h"
51
NodeList
* p = const_cast<
NodeList
*>(other.m_private);
57
WebNodeList::WebNodeList(const PassRefPtr<
NodeList
>& col)
58
: m_private(static_cast<
NodeList
*>(col.leakRef()))
62
void WebNodeList::assign(
NodeList
* p)
/external/chromium_org/third_party/WebKit/public/web/
WebNodeList.h
36
namespace WebCore { class
NodeList
; }
64
WebNodeList(const WTF::PassRefPtr<WebCore::
NodeList
>&);
68
void assign(WebCore::
NodeList
*);
69
WebCore::
NodeList
* m_private;
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAllCollection.h
39
void anonymousNamedGetter(const AtomicString& name, bool&, RefPtr<
NodeList
>&, bool&, RefPtr<Node>&);
40
PassRefPtr<
NodeList
> tags(const String&);
RadioNodeList.idl
28
] interface RadioNodeList :
NodeList
{
HTMLProgressElement.idl
24
readonly attribute
NodeList
labels;
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
HTMLContentElement.idl
31
NodeList
getDistributedNodes();
HTMLShadowElement.idl
34
[RuntimeEnabled=ShadowDOM]
NodeList
getDistributedNodes();
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeListBase.java
26
*
NodeList
interface wrapped around a DTM Iterator. The author
27
* considers this something of an abominations, since
NodeList
was not
34
*
NodeList
operating over the same document. In particular:
46
* promise to implement the DOM
NodeList
's "live view" response to
54
public class DTMNodeListBase implements org.w3c.dom.
NodeList
{
59
// org.w3c.dom.
NodeList
API follows
67
* <code>
NodeList
</code>, or <code>null</code> if that is not a valid
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8NodeListCustom.cpp
38
#include "core/dom/
NodeList
.h"
46
NodeList
* impl = static_cast<
NodeList
*>(object);
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodechildnodesempty.java
31
* The "getChildNodes()" method returns a
NodeList
33
* are not any children, this is a
NodeList
that does not
37
*
NodeList
returned should not have any nodes.
65
NodeList
elementList;
67
NodeList
childList;
70
NodeList
childNodesList;
nodelistindexgetlengthofemptylist.java
65
NodeList
elementList;
67
NodeList
employeeList;
70
NodeList
textList;
/libcore/luni/src/main/java/java/util/prefs/
NodeSet.java
6
import org.w3c.dom.
NodeList
;
8
class NodeSet implements
NodeList
{
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeListImpl.java
22
import org.w3c.dom.
NodeList
;
34
public class NodeListImpl implements
NodeList
{
Completed in 4108 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>