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

1 2 3 45 6 7 8 91011>>

  /external/webkit/WebCore/dom/
Position.h 31 #include "Node.h" // for position creation functions
41 class Node;
71 // For creating legacy editing positions: (Anchor type will be determined from editingIgnoresContent(node))
72 Position(PassRefPtr<Node> anchorNode, int offset);
75 Position(PassRefPtr<Node> anchorNode, AnchorType);
77 Position(PassRefPtr<Node> anchorNode, int offset, AnchorType);
85 Node* containerNode() const; // NULL for a before/after position anchored to a node with no parent
103 Node* computeNodeBeforePosition() const;
104 Node* computeNodeAfterPosition() const
111 Node* node() const { return m_anchorNode.get(); } function in class:WebCore::Position
    [all...]
Range.idl 26 readonly attribute Node startContainer
30 readonly attribute Node endContainer
36 readonly attribute Node commonAncestorContainer
39 [OldStyleObjC] void setStart(in Node refNode,
42 [OldStyleObjC] void setEnd(in Node refNode,
45 void setStartBefore(in Node refNode)
47 void setStartAfter(in Node refNode)
49 void setEndBefore(in Node refNode)
51 void setEndAfter(in Node refNode)
55 void selectNode(in Node refNode
    [all...]
Range.cpp 70 inline Range::Range(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset)
90 PassRefPtr<Range> Range::create(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset)
98 return adoptRef(new Range(ownerDocument, start.node(), start.deprecatedEditingOffset(), end.node(), end.deprecatedEditingOffset()));
111 Node* Range::startContainer(ExceptionCode& ec) const
131 Node* Range::endContainer(ExceptionCode& ec) const
151 Node* Range::commonAncestorContainer(ExceptionCode& ec) const
161 Node* Range::commonAncestorContainer(Node* containerA, Node* containerB
    [all...]
ClassNodeList.h 40 static PassRefPtr<ClassNodeList> create(PassRefPtr<Node> rootNode, const String& classNames, Caches* caches)
46 ClassNodeList(PassRefPtr<Node> rootNode, const String& classNames, Caches*);
NameNodeList.h 37 static PassRefPtr<NameNodeList> create(PassRefPtr<Node> rootNode, const String& name, Caches* caches)
43 NameNodeList(PassRefPtr<Node> rootNode, const String& name, Caches*);
NodeList.idl 29 Node item(in [IsIndex] unsigned long index);
Notation.idl 22 interface Notation : Node {
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 30 import org.w3c.dom.Node;
37 * DOM2DTM model. Basically, it creates a proxy node in DOM space to
49 * %REVIEW% An alternative solution would be to create the node _only_
80 public Node getParentNode() {return null;}
81 public Node getFirstChild() {return null;}
82 public Node getLastChild() {return null;}
83 public Node getPreviousSibling() {return null;}
84 public Node getNextSibling() {return null;}
89 public short getNodeType() {return Node.ATTRIBUTE_NODE;}
93 public Node insertBefore(Node a, Node b) {throw new DTMException(NOT_SUPPORTED_ERR);
    [all...]
  /external/webkit/WebCore/page/
DOMSelection.idl 35 readonly attribute Node anchorNode;
37 readonly attribute Node focusNode;
43 void collapse(in Node node, in long index)
49 boolean containsNode(in Node node, in boolean allowPartial);
50 void selectAllChildren(in Node node)
53 void extend(in Node node, in long offset
    [all...]
  /external/v8/src/
global-handles.cc 36 class GlobalHandles::Node : public Malloced {
47 Node() {
51 explicit Node(Object* object) {
57 ~Node() {
78 Node* next() { return next_; }
79 void set_next(Node* value) { next_ = value; }
80 Node** next_addr() { return &next_; }
82 // Accessors for next free node in the free list.
83 Node* next_free() {
87 void set_next_free(Node* value)
385 Node* node = *p; local
    [all...]
  /external/webkit/WebCore/bindings/js/
ScriptEventListener.h 44 class Node;
46 PassRefPtr<JSLazyEventListener> createAttributeEventListener(Node*, Attribute*);
ScriptState.h 40 class Node;
51 ScriptState* scriptStateFromNode(DOMWrapperWorld*, Node*);
  /external/webkit/WebCore/bindings/v8/
ScriptEventListener.h 43 class Node;
46 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Node*, Attribute*);
V8NodeFilterCondition.h 37 // NodeFilter is a JavaScript function that takes a Node as parameter and returns a short (ACCEPT, SKIP, REJECT) as the result.
40 class Node;
49 virtual short acceptNode(ScriptState*, Node*) const;
  /external/webkit/WebCore/editing/
DeleteSelectionCommand.h 65 virtual void removeNode(PassRefPtr<Node>);
86 RefPtr<Node> m_startBlock;
87 RefPtr<Node> m_endBlock;
90 RefPtr<Node> m_startRoot;
91 RefPtr<Node> m_endRoot;
92 RefPtr<Node> m_startTableRow;
93 RefPtr<Node> m_endTableRow;
94 RefPtr<Node> m_temporaryPlaceholder;
InsertLineBreakCommand.h 47 void insertNodeAfterPosition(Node*, const Position&);
48 void insertNodeBeforePosition(Node*, const Position&);
  /external/webkit/WebCore/html/
HTMLAllCollection.cpp 29 #include "Node.h"
33 PassRefPtr<HTMLAllCollection> HTMLAllCollection::create(PassRefPtr<Node> base)
38 HTMLAllCollection::HTMLAllCollection(PassRefPtr<Node> base)
HTMLFieldSetElement.h 37 class Node;
45 virtual bool checkDTD(const Node* newChild);
HTMLHeadElement.h 38 virtual bool childAllowed(Node* newChild);
39 virtual bool checkDTD(const Node* newChild);
  /external/webkit/WebCore/rendering/
HitTestResult.h 34 class Node;
45 Node* innerNode() const { return m_innerNode.get(); }
46 Node* innerNonSharedNode() const { return m_innerNonSharedNode.get(); }
55 void setInnerNode(Node*);
56 void setInnerNonSharedNode(Node*);
80 RefPtr<Node> m_innerNode;
81 RefPtr<Node> m_innerNonSharedNode;
90 String displayString(const String&, const Node*);
  /external/webkit/WebCore/svg/
SVGFontFaceSrcElement.h 34 virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
SVGFontFaceUriElement.h 41 virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
SVGTitleElement.h 36 virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
  /external/webkit/WebCore/xml/
XMLSerializer.cpp 29 String XMLSerializer::serializeToString(Node* node, ExceptionCode& ec)
31 if (!node)
34 if (!node->document()) {
37 // with it. It should be the only type of node where this is possible.
38 ASSERT(node->nodeType() == Node::DOCUMENT_TYPE_NODE);
44 return createMarkup(node);
XMLSerializer.h 30 class Node;
36 String serializeToString(Node*, ExceptionCode&);

Completed in 1947 milliseconds

1 2 3 45 6 7 8 91011>>