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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/JavaScriptCore/API/tests/
Node.h 29 typedef struct __Node Node;
33 Node* node; member in struct:__NodeLink
43 extern Node* Node_new(void);
44 extern void Node_ref(Node* node);
45 extern void Node_deref(Node* node);
46 extern void Node_appendChild(Node* node, Node* child)
    [all...]
NodeList.h 29 #include "Node.h"
33 Node* parentNode;
36 extern NodeList* NodeList_new(Node* parentNode);
38 extern Node* NodeList_item(NodeList*, unsigned);
  /external/webkit/WebCore/dom/
EntityReference.idl 22 interface EntityReference : Node {
TreeWalker.h 39 static PassRefPtr<TreeWalker> create(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr<NodeFilter> filter, bool expandEntityReferences)
44 Node* currentNode() const { return m_current.get(); }
45 void setCurrentNode(PassRefPtr<Node>, ExceptionCode&);
47 Node* parentNode(ScriptState*);
48 Node* firstChild(ScriptState*);
49 Node* lastChild(ScriptState*);
50 Node* previousSibling(ScriptState*);
51 Node* nextSibling(ScriptState*);
52 Node* previousNode(ScriptState*);
53 Node* nextNode(ScriptState*)
    [all...]
NodeList.h 32 class Node;
40 virtual Node* item(unsigned index) const = 0;
41 virtual Node* itemWithName(const AtomicString&) const = 0;
NamedNodeMap.idl 29 Node getNamedItem(in DOMString name);
31 Node setNamedItem(in Node node)
34 Node removeNamedItem(in DOMString name)
37 Node item(in unsigned long index);
44 [OldStyleObjC] Node getNamedItemNS(in [ConvertNullToNullString] DOMString namespaceURI,
49 Node setNamedItemNS(in Node node)
    [all...]
TreeWalker.idl 27 readonly attribute Node root;
31 attribute Node currentNode
34 [Custom] Node parentNode();
35 [Custom] Node firstChild();
36 [Custom] Node lastChild();
37 [Custom] Node previousSibling();
38 [Custom] Node nextSibling();
39 [Custom] Node previousNode();
40 [Custom] Node nextNode();
DynamicNodeList.h 36 class Node;
45 Node* lastItem;
59 virtual Node* item(unsigned index) const;
60 virtual Node* itemWithName(const AtomicString&) const;
66 DynamicNodeList(PassRefPtr<Node> rootNode);
67 DynamicNodeList(PassRefPtr<Node> rootNode, Caches*);
71 RefPtr<Node> m_rootNode;
76 Node* itemForwardsFromCurrent(Node* start, unsigned offset, int remainingOffset) const;
77 Node* itemBackwardsFromCurrent(Node* start, unsigned offset, int remainingOffset) const
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
NamedNodeMap.java 29 * Retrieves a node specified by name.
30 * @param name The <code>nodeName</code> of a node to retrieve.
31 * @return A <code>Node</code> (of any type) with the specified
33 * any node in this map.
35 public Node getNamedItem(String name);
38 * Adds a node using its <code>nodeName</code> attribute. If a node with
40 * one. Replacing a node by itself has no effect.
42 * which the node must be stored under, multiple nodes of certain types
46 * @param arg A node to store in this map. The node will later b
    [all...]
DocumentFragment.java 21 * which can hold such fragments and it is quite natural to use a Node for
28 * of another <code>Node</code> -- may take <code>DocumentFragment</code>
30 * <code>DocumentFragment</code> being moved to the child list of this node.
31 * <p>The children of a <code>DocumentFragment</code> node are zero or more
37 * child and that child node could be a <code>Text</code> node. Such a
41 * <code>Document</code> (or indeed any other <code>Node</code> that may
44 * <code>Node</code>. This makes the <code>DocumentFragment</code> very
47 * the user can use the standard methods from the <code>Node</code>
48 * interface, such as <code>Node.insertBefore</code> an
    [all...]
EntityReference.java 24 * <code>EntityReference</code> node that represents a reference to a known
26 * <code>EntityReference</code> node is a copy of the <code>Entity</code>
27 * node subtree. However, the latter may not be true when an entity contains
30 * the <code>EntityReference</code> node may be bound to different namespace
31 * URIs. When an <code>EntityReference</code> node represents a reference to
32 * an unknown entity, the node has no children and its replacement value,
42 public interface EntityReference extends Node {
  /external/webkit/WebCore/xml/
XPathUtil.h 36 class Node;
41 /* @return whether the given node is the root node */
42 bool isRootDomNode(Node*);
44 /* @return the 'string-value' of the given node as specified by http://www.w3.org/TR/xpath */
45 String stringValue(Node*);
47 /* @return whether the given node is a valid context node */
48 bool isValidContextNode(Node*);
XPathUtil.cpp 37 bool isRootDomNode(Node* node)
39 return node && !node->parentNode();
42 String stringValue(Node* node)
44 switch (node->nodeType()) {
45 case Node::ATTRIBUTE_NODE:
46 case Node::PROCESSING_INSTRUCTION_NODE:
47 case Node::COMMENT_NODE
    [all...]
  /external/skia/include/xml/
SkDOM.h 33 typedef SkDOMNode Node;
38 const Node* build(const char doc[], size_t len);
39 const Node* copy(const SkDOM& dom, const Node* node);
41 const Node* getRootNode() const;
47 Type getType(const Node*) const;
49 const char* getName(const Node*) const;
50 const Node* getFirstChild(const Node*, const char elem[] = NULL) const
    [all...]
  /external/webkit/WebCore/editing/
htmlediting.h 39 class Node;
50 // Node
53 // Functions returning Node
55 Node* highestAncestor(Node*);
56 Node* highestEditableRoot(const Position&);
57 Node* highestEnclosingNodeOfType(const Position&, bool (*nodeIsOfType)(const Node*));
58 Node* lowestEditableAncestor(Node*);
    [all...]
ModifySelectionListLevel.h 40 void appendSiblingNodeRange(Node* startNode, Node* endNode, Element* newParent);
41 void insertSiblingNodeRangeBefore(Node* startNode, Node* endNode, Node* refNode);
42 void insertSiblingNodeRangeAfter(Node* startNode, Node* endNode, Node* refNode);
52 static PassRefPtr<Node> increaseSelectionListLevel(Document*);
53 static PassRefPtr<Node> increaseSelectionListLevelOrdered(Document*)
    [all...]
RemoveNodeCommand.h 35 static PassRefPtr<RemoveNodeCommand> create(PassRefPtr<Node> node)
37 return adoptRef(new RemoveNodeCommand(node));
41 RemoveNodeCommand(PassRefPtr<Node>);
46 RefPtr<Node> m_node;
47 RefPtr<Node> m_parent;
48 RefPtr<Node> m_refChild;
InsertNodeBeforeCommand.h 35 static PassRefPtr<InsertNodeBeforeCommand> create(PassRefPtr<Node> childToInsert, PassRefPtr<Node> childToInsertBefore)
41 InsertNodeBeforeCommand(PassRefPtr<Node> childToInsert, PassRefPtr<Node> childToInsertBefore);
46 RefPtr<Node> m_insertChild;
47 RefPtr<Node> m_refChild;
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
Node.java 1 /* Generated By:JJTree: Do not edit this line. Node.java */
9 public interface Node {
11 /** This method is called after the node has been made the current
12 node. It indicates that child nodes can now be added to it. */
19 /** This pair of methods are used to inform the node of its
21 public void jjtSetParent(Node n);
22 public Node jjtGetParent();
24 /** This method tells the node to add its argument to the node's
26 public void jjtAddChild(Node n, int i)
    [all...]
  /external/webkit/WebCore/html/
HTMLAllCollection.h 35 static PassRefPtr<HTMLAllCollection> create(PassRefPtr<Node>);
39 HTMLAllCollection(PassRefPtr<Node>);
  /external/webkit/WebCore/page/
HaltablePlugin.h 31 class Node;
39 virtual Node* node() const = 0;
PluginHalterClient.h 31 class Node;
38 virtual bool shouldHaltPlugin(Node*, bool isWindowed, const String& pluginName) const = 0;
  /libcore/luni/src/main/java/org/apache/xml/utils/
NodeConsumer.java 23 import org.w3c.dom.Node;
35 * Set the node that is originating the SAX event.
37 * @param n Reference to node that originated the current event.
39 public void setOriginatingNode(Node n);
  /external/skia/include/utils/
SkParsePaint.h 31 void SkPaint_Inflate(SkPaint*, const SkDOM&, const SkDOM::Node*);
  /external/webkit/WebCore/bindings/v8/custom/
V8NamedNodesCollection.h 34 #include "Node.h"
43 explicit V8NamedNodesCollection(const Vector<RefPtr<Node> >& nodes)
46 virtual Node* item(unsigned) const;
47 virtual Node* itemWithName(const AtomicString&) const;
50 Vector<RefPtr<Node> > m_nodes;

Completed in 835 milliseconds

1 2 3 4 5 6 7 8 91011>>