HomeSort by relevance Sort by last modified time
    Searched refs:Node (Results 176 - 200 of 2295) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/Source/WebCore/dom/
DocumentType.cpp 32 : Node(document, CreateOther)
49 Node::NodeType DocumentType::nodeType() const
54 PassRefPtr<Node> DocumentType::cloneNode(bool /*deep*/)
61 // Our document node can be null if we were created by a DOMImplementation. We use the parent() instead.
68 Node::insertedIntoDocument();
75 Node::removedFromDocument();
Node.cpp 26 #include "Node.h"
133 bool Node::isSupported(const String& feature, const String& version)
139 static HashSet<Node*> liveNodeSet;
142 void Node::dumpStatistics()
169 for (HashSet<Node*>::iterator it = liveNodeSet.begin(); it != liveNodeSet.end(); ++it) {
170 Node* node = *it; local
172 if (node->hasRareData())
175 switch (node->nodeType()) {
180 Element* element = static_cast<Element*>(node);
685 RefPtr<Node> node = this; local
1435 Node *node = previousNodeConsideringAtomicNodes(); local
1446 Node *node = nextNodeConsideringAtomicNodes(); local
2374 const Node* node = this; local
    [all...]
  /external/webkit/Source/WebCore/editing/
TextIterator.h 98 Node* node() const;
108 bool shouldEmitSpaceBeforeAndAfterNode(Node*);
116 void emitCharacter(UChar, Node* textNode, Node* offsetBaseNode, int textStartOffset, int textEndOffset);
117 void emitText(Node* textNode, RenderObject* renderObject, int textStartOffset, int textEndOffset);
118 void emitText(Node* textNode, int textStartOffset, int textEndOffset);
122 Node* m_node;
129 Node* m_startContainer;
131 Node* m_endContainer
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebDOMEventListenerPrivate.h 39 class Node;
53 const WebString& eventType, bool useCapture, WebCore::Node*);
55 // Gets the ListenerEventWrapper for a specific node.
58 const WebString& eventType, bool useCapture, WebCore::Node*);
69 WebCore::Node* node)
73 , node(node)
80 WebCore::Node* node; member in struct:WebKit::WebDOMEventListenerPrivate::ListenerInfo
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 74 * interior node deletion (to support remove(Object)). For
85 * - There is exactly one (last) Node with a null next reference,
86 * which is CASed when enqueueing. This last Node can be
92 * reference of a Node to null atomically removes it from the
95 * head to advance. A dequeued Node may remain in use
100 * from a predecessor dequeued Node. That would cause two problems:
103 * a Node was tenured while live, which generational GCs have a
108 * linking a Node that has just been dequeued to itself. Such a
116 * to be two or more steps away from the first/last node.
121 * CASing a Node's item reference to null atomically removes th
    [all...]
  /external/webkit/Source/WebCore/page/
SpatialNavigation.h 27 #include "Node.h"
116 FocusCandidate(Node* n, FocusDirection);
126 Node* visibleNode;
127 Node* focusableNode;
128 Node* enclosingScrollableBox;
138 bool hasOffscreenRect(Node*, FocusDirection direction = FocusDirectionNone);
140 bool scrollInDirection(Node* container, FocusDirection);
141 bool canScrollInDirection(const Node* container, FocusDirection);
146 Node* scrollableEnclosingBoxOrParentFrameForNodeInDirection(FocusDirection, Node*);
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/
SimpleNode.java 5 public class SimpleNode extends org.apache.james.mime4j.field.address.parser.BaseNode implements Node {
6 protected Node parent;
7 protected Node[] children;
26 public void jjtSetParent(Node n) { parent = n; }
27 public Node jjtGetParent() { return parent; }
29 public void jjtAddChild(Node n, int i) {
31 children = new Node[i + 1];
33 Node c[] = new Node[i + 1];
40 public Node jjtGetChild(int i)
    [all...]
  /external/v8/src/
splay-tree.h 68 // true if a node was inserted, otherwise false. If found the locator
73 // otherwise false. If the node is found the locator is enabled and
91 // Move the node from one key to another.
94 // Remove the node with the given key from the tree.
99 // Perform the splay operation for the given key. Moves the node with
100 // the given key to the top of the tree. If no node has the given
101 // key, the last node on the search path is moved to the top of the
105 class Node {
107 Node(const Key& key, const Value& value)
122 Node* left() { return left_;
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
TextImpl.java 20 import org.w3c.dom.Node;
46 return Node.TEXT_NODE;
54 Node refNode = getNextSibling();
89 Node parent = getParentNode();
95 // ...except the current node if we have content for it
102 Node toRemove = n; // because removeChild() detaches siblings
112 * Returns the first text or CDATA node in the current sequence of text and
117 for (Node p = getPreviousSibling(); p != null; p = p.getPreviousSibling()) {
119 if (nodeType == Node.TEXT_NODE || nodeType == Node.CDATA_SECTION_NODE)
    [all...]
InnerNodeImpl.java 24 import org.w3c.dom.Node;
37 * <p>This class represents a Node that has a parent Node as well as
51 public Node appendChild(Node newChild) throws DOMException {
58 for (NodeImpl node : children) {
59 list.add(node);
65 public Node getFirstChild() {
69 public Node getLastChild() {
73 public Node getNextSibling()
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/
NodeImpl.java 26 import org.w3c.dom.Node;
36 public abstract class NodeImpl implements Node, EventTarget {
37 private Node mParentNode;
38 private final Vector<Node> mChildNodes = new Vector<Node>();
51 * Node Interface Methods
54 public Node appendChild(Node newChild) throws DOMException {
61 public Node cloneNode(boolean deep) {
75 public Node getFirstChild()
    [all...]
  /external/doclava/src/com/google/doclava/
NavTree.java 27 List<Node> children = new ArrayList<Node>();
31 Node node = new Node("Reference", dir + "packages.html", children, null); local
35 // if you want a root node
37 node.render(buf);
40 // if you don't want a root node
41 node.renderChildren(buf);
49 private static Node makePackageNode(PackageInfo pkg)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPPrefixResolver.java 22 import org.w3c.dom.Node;
77 * Given a prefix and a Context Node, get the corresponding namespace.
79 * is an attribute node.
81 * @param namespaceContext Node from which to start searching for a
87 org.w3c.dom.Node namespaceContext) {
88 Node parent = namespaceContext;
97 && (((type = parent.getNodeType()) == Node.ELEMENT_NODE)
98 || (type == Node.ENTITY_REFERENCE_NODE))) {
100 if (type == Node.ELEMENT_NODE) {
104 Node attr = nnm.item(i)
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSNodeCustom.cpp 62 #include "Node.h"
83 static bool isObservable(JSNode* jsNode, Node* node, DOMWrapperWorld* world)
85 // Certain conditions implicitly make existence of a JS DOM node wrapper observable
92 if (!node->parentNode())
95 // If a node is in the document, and its wrapper has custom properties,
96 // the wrapper is observable because future access to the node through the
101 // If a node is in the document, and has event listeners, its wrapper is
103 if (node->hasEventListeners())
106 // If a node owns another object with a wrapper with custom properties
242 Node* node = m_impl.get(); local
    [all...]
JSNodeCustom.h 39 inline JSC::WeakHandleOwner* wrapperOwner(DOMWrapperWorld*, Node*)
45 inline void* wrapperContext(DOMWrapperWorld* world, Node*)
50 inline JSDOMWrapper* getInlineCachedWrapper(DOMWrapperWorld* world, Node* node)
54 return node->wrapper();
57 inline bool setInlineCachedWrapper(DOMWrapperWorld* world, Node* node, JSDOMWrapper* wrapper)
61 ASSERT(!node->wrapper());
62 node->setWrapper(*world->globalData(), wrapper, wrapperOwner(world, node), wrapperContext(world, node))
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodeinsertbeforedocfragment.java 69 Node employeeNode;
71 Node refChild;
73 Node newChild1;
74 Node newChild2;
75 Node child;
77 Node appendedChild;
78 Node insertedNode;
nodeinsertbeforedocfragment.java 69 Node employeeNode;
71 Node refChild;
73 Node newChild1;
74 Node newChild2;
75 Node child;
77 Node appendedChild;
78 Node insertedNode;
  /libcore/luni/src/main/java/org/w3c/dom/
Document.java 22 * to create these objects. The <code>Node</code> objects created have a
27 public interface Document extends Node {
35 * <br>This provides direct access to the <code>DocumentType</code> node,
36 * child node of this <code>Document</code>. This node can be set at
38 * nodes manipulation methods, such as <code>Node.insertBefore</code>,
39 * or <code>Node.replaceChild</code>. Note, however, that while some
58 * node that is the document element of the document.
95 * Creates a <code>Text</code> node given the specified string.
96 * @param data The data for the node
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachinePassRegistry.h 46 /// MachinePassRegistryNode - Machine pass node stored in registration list.
105 void Add(MachinePassRegistryNode *Node);
109 void Remove(MachinePassRegistryNode *Node);
130 for (RegistryClass *Node = RegistryClass::getList();
131 Node; Node = Node->getNext()) {
132 this->addLiteralOption(Node->getName(),
133 (typename RegistryClass::FunctionPassCtor)Node->getCtor(),
134 Node->getDescription())
    [all...]
  /external/llvm/include/llvm/Support/
GraphWriter.h 63 // Writes the edge labels of the node to O and returns true if there are any
65 bool getEdgeSourceLabels(raw_ostream &O, NodeType *Node) {
66 child_iterator EI = GTraits::child_begin(Node);
67 child_iterator EE = GTraits::child_end(Node);
71 std::string label = DTraits.getEdgeSourceLabel(Node, EI);
143 bool isNodeHidden(NodeType &Node) {
144 return isNodeHidden(&Node);
147 bool isNodeHidden(NodeType *const *Node) {
148 return isNodeHidden(*Node);
151 bool isNodeHidden(NodeType *Node) {
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
FormManagerAndroid.h 48 class Node;
54 using WebCore::Node;
108 // Fills the form represented by |form|. |node| is the input element that
110 bool FillForm(const webkit_glue::FormData& form, Node* node);
112 // Previews the form represented by |form|. |node| is the input element
114 bool PreviewForm(const webkit_glue::FormData& form, Node* node);
116 // Clears the values of all input elements in the form that contains |node|.
118 bool ClearFormWithNode(Node* node)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformState.java 29 import org.w3c.dom.Node;
68 * This method retrieves the current context node
71 * @return the current context node in the source tree.
73 Node getCurrentNode();
104 * Retrieves the node in the source tree that matched
107 * @return the node in the source tree that matched
110 Node getMatchedNode();
113 * Get the current context node list.
115 * @return the current context node list.
  /external/clang/lib/Index/
DeclReferenceMap.cpp 29 void VisitDeclRefExpr(DeclRefExpr *Node);
30 void VisitMemberExpr(MemberExpr *Node);
31 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *Node);
43 void RefMapper::VisitDeclRefExpr(DeclRefExpr *Node) {
44 NamedDecl *PrimD = cast<NamedDecl>(Node->getDecl()->getCanonicalDecl());
45 Map.insert(std::make_pair(PrimD, ASTLocation(CurrentDecl, Node)));
48 void RefMapper::VisitMemberExpr(MemberExpr *Node) {
49 NamedDecl *PrimD = cast<NamedDecl>(Node->getMemberDecl()->getCanonicalDecl());
50 Map.insert(std::make_pair(PrimD, ASTLocation(CurrentDecl, Node)));
53 void RefMapper::VisitObjCIvarRefExpr(ObjCIvarRefExpr *Node) {
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ANoopCommand.java 3 package com.google.clearsilver.jsilver.syntax.node;
34 void removeChild(@SuppressWarnings("unused") Node child)
41 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
ANoopExpression.java 3 package com.google.clearsilver.jsilver.syntax.node;
34 void removeChild(@SuppressWarnings("unused") Node child)
41 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)

Completed in 891 milliseconds

1 2 3 4 5 6 78 91011>>