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

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebCore/dom/
RangeBoundaryPoint.h 29 #include "Node.h"
36 explicit RangeBoundaryPoint(PassRefPtr<Node> container);
40 Node* container() const;
42 Node* childBefore() const;
46 void set(PassRefPtr<Node> container, int offset, Node* childBefore);
49 void setToBeforeChild(Node*);
50 void setToStartOfNode(PassRefPtr<Node>);
51 void setToEndOfNode(PassRefPtr<Node>);
60 RefPtr<Node> m_containerNode
    [all...]
EventDispatcher.h 39 class Node;
51 static bool dispatchEvent(Node*, const EventDispatchMediator&);
52 static void dispatchScopedEvent(Node*, PassRefPtr<Event>);
54 static void dispatchSimulatedClick(Node*, PassRefPtr<Event> underlyingEvent, bool sendMouseEvents, bool showPressedLook);
58 Node* node() const;
61 EventDispatcher(Node*);
63 PassRefPtr<EventTarget> adjustToShadowBoundaries(PassRefPtr<Node> relatedTarget, const Vector<Node*> relatedTargetAncestors);
69 RefPtr<Node> m_node
75 inline Node* EventDispatcher::node() const function in class:WebCore::EventDispatcher
    [all...]
Position.h 42 class Node;
67 // For creating legacy editing positions: (Anchor type will be determined from editingIgnoresContent(node))
68 Position(PassRefPtr<Node> anchorNode, int offset);
71 Position(PassRefPtr<Node> anchorNode, AnchorType);
73 Position(PassRefPtr<Node> anchorNode, int offset, AnchorType);
81 Node* containerNode() const; // NULL for a before/after position anchored to a node with no parent
101 Node* computeNodeBeforePosition() const;
102 Node* computeNodeAfterPosition() const;
104 Node* anchorNode() const { return m_anchorNode.get();
    [all...]
Range.cpp 71 inline Range::Range(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset)
91 PassRefPtr<Range> Range::create(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset)
122 Node* Range::startContainer(ExceptionCode& ec) const
142 Node* Range::endContainer(ExceptionCode& ec) const
162 Node* Range::commonAncestorContainer(ExceptionCode& ec) const
172 Node* Range::commonAncestorContainer(Node* containerA, Node* containerB
    [all...]
DocumentMarkerController.h 38 class Node;
49 void addMarker(Node*, DocumentMarker);
50 void copyMarkers(Node* srcNode, unsigned startOffset, int length, Node* dstNode, int delta);
58 void removeMarkers(Node*, unsigned startOffset, int length, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers(), RemovePartiallyOverlappingMarkerOrNot = DoNotRemovePartiallyOverlappingMarker);
61 void removeMarkers(Node*, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers());
63 void setRenderedRectForMarker(Node*, const DocumentMarker&, const IntRect&);
65 void shiftMarkers(Node*, unsigned startOffset, int delta);
67 void setMarkersActive(Node*, unsigned startOffset, unsigned endOffset, bool);
70 Vector<DocumentMarker> markersForNode(Node*);
    [all...]
NodeWithIndex.h 29 #include "Node.h"
33 // For use when you want to get the index for a node repeatedly and
37 NodeWithIndex(Node* node)
38 : m_node(node)
41 ASSERT(node);
44 Node* node() const { return m_node; } function in class:WebCore::NodeWithIndex
57 Node* m_node;
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
Node.java 3 package com.google.clearsilver.jsilver.syntax.node;
8 public abstract class Node implements Switchable, Cloneable
10 private Node parent;
15 public Node parent()
20 void parent(@SuppressWarnings("hiding") Node parent)
25 abstract void removeChild(Node child);
26 abstract void replaceChild(Node oldChild, Node newChild);
28 public void replaceBy(Node node)
    [all...]
Token.java 3 package com.google.clearsilver.jsilver.syntax.node;
6 public abstract class Token extends Node
49 void removeChild(@SuppressWarnings("unused") Node child)
55 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
  /external/llvm/include/llvm/Support/
DOTGraphTraits.h 62 /// isNodeHidden - If the function returns true, the given node is not
64 static bool isNodeHidden(const void *Node) {
68 /// getNodeLabel - Given a node and a pointer to the top level graph, return
69 /// the label to print in the node.
71 std::string getNodeLabel(const void *Node, const GraphType& Graph) {
75 /// hasNodeAddressLabel - If this method returns true, the address of the node
76 /// is added to the label of the node.
78 static bool hasNodeAddressLabel(const void *Node, const GraphType& Graph) {
82 /// If you want to specify custom node attributes, this is the place to do so
85 static std::string getNodeAttributes(const void *Node,
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorBrowserDebuggerAgent.h 52 class Node;
74 void willInsertDOMNode(Node*, Node* parent);
75 void didInsertDOMNode(Node*);
76 void willRemoveDOMNode(Node*);
77 void didRemoveDOMNode(Node*);
90 void descriptionForDOMEvent(Node* target, int breakpointType, bool insertion, InspectorObject* description);
91 void updateSubtreeBreakpoints(Node*, uint32_t rootMask, bool set);
92 bool hasBreakpoint(Node*, int type);
102 HashMap<Node*, uint32_t> m_domBreakpoints
    [all...]
InspectorDOMAgent.h 66 class Node;
76 EventListenerInfo(Node* node, const AtomicString& eventType, const EventListenerVector& eventListenerVector)
77 : node(node)
83 Node* node; member in struct:WebCore::EventListenerInfo
95 virtual void didRemoveDOMNode(Node*) = 0;
137 Node* highlightedNode() const { return m_highlightedNode.get(); }
146 void didInsertDOMNode(Node*);
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/
NodeListImpl.java 22 import org.w3c.dom.Node;
26 private ArrayList<Node> mSearchNodes;
27 private ArrayList<Node> mStaticNodes;
28 private Node mRootNode;
38 * children of a root node with a given tag name.
39 * @param rootNode The root <code>Node</code> of the search.
45 public NodeListImpl(Node rootNode, String tagName, boolean deepSearch) {
52 * Constructs a NodeList for a given static node list.
53 * @param nodes The static node list.
55 public NodeListImpl(ArrayList<Node> nodes)
73 Node node = null; local
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
XmlParserUtils.java 19 import org.w3c.dom.Node;
30 public static Node getFirstChild(Node node, String xmlLocalName) {
32 String nsUri = node.getNamespaceURI();
33 for(Node child = node.getFirstChild(); child != null; child = child.getNextSibling()) {
34 if (child.getNodeType() == Node.ELEMENT_NODE &&
50 * Note: use {@link #getOptionalXmlString(Node, String)} if you need to know when the
53 * @param node The XML <em>parent</em> node to parse.
    [all...]
  /external/llvm/include/llvm/ADT/
Trie.h 36 class Node {
40 typedef std::vector<Node*> NodeVectorType;
54 bool operator() (Node* N1, Node* N2) {
57 bool operator() (Node* N, char Id) {
67 Node(const Node&);
68 Node& operator=(const Node&);
70 inline void addEdge(Node* N)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
CachedXPathAPI.java 30 import org.w3c.dom.Node;
111 * Use an XPath string to select a single node. XPath namespace
112 * prefixes are resolved from the context node, which may not
115 * @param contextNode The node to start searching from.
117 * @return The first node found that matches the XPath, or null.
121 public Node selectSingleNode(Node contextNode, String str)
128 * Use an XPath string to select a single node.
131 * @param contextNode The node to start searching from.
133 * @param namespaceNode The node from which prefixes in the XPath will be resolved to namespaces
    [all...]
XPathAPI.java 30 import org.w3c.dom.Node;
56 * Use an XPath string to select a single node. XPath namespace
57 * prefixes are resolved from the context node, which may not
60 * @param contextNode The node to start searching from.
62 * @return The first node found that matches the XPath, or null.
66 public static Node selectSingleNode(Node contextNode, String str)
73 * Use an XPath string to select a single node.
76 * @param contextNode The node to start searching from.
78 * @param namespaceNode The node from which prefixes in the XPath will be resolved to namespaces
    [all...]
  /external/webkit/Source/WebCore/editing/
CompositeEditCommand.h 52 void appendNode(PassRefPtr<Node>, PassRefPtr<ContainerNode> parent);
62 void insertNodeAfter(PassRefPtr<Node>, PassRefPtr<Node> refChild);
63 void insertNodeAt(PassRefPtr<Node>, const Position&);
64 void insertNodeAtTabSpanPosition(PassRefPtr<Node>, const Position&);
65 void insertNodeBefore(PassRefPtr<Node>, PassRefPtr<Node> refChild);
79 void removeChildrenInRange(PassRefPtr<Node>, unsigned from, unsigned to);
80 virtual void removeNode(PassRefPtr<Node>);
82 void removeNodePreservingChildren(PassRefPtr<Node>);
    [all...]
ModifySelectionListLevel.cpp 49 static bool getStartEndListChildren(const VisibleSelection& selection, Node*& start, Node*& end)
55 Node* startListChild = enclosingListChild(selection.start().anchorNode());
60 Node* endListChild = selection.isRange() ? enclosingListChild(selection.end().anchorNode()) : startListChild;
82 if (r && isListElement(r->node()))
83 endListChild = r->node();
91 void ModifySelectionListLevelCommand::insertSiblingNodeRangeBefore(Node* startNode, Node* endNode, Node* refNode)
93 Node* node = startNode local
108 Node* node = startNode; local
124 Node* node = startNode; local
    [all...]
SplitElementCommand.h 35 static PassRefPtr<SplitElementCommand> create(PassRefPtr<Element> element, PassRefPtr<Node> splitPointChild)
41 SplitElementCommand(PassRefPtr<Element>, PassRefPtr<Node> splitPointChild);
50 RefPtr<Node> m_atChild;
  /external/chromium/chrome/browser/sync/glue/
model_associator.h 56 // underlying node type in the browser. We collect these into a templatized
59 // This template is appropriate for data types where a Node* makes sense for
62 template <class Node, class IDType>
67 // Returns sync_api::kInvalidId if the sync node is not found for the given
71 // Returns the chrome node for the given sync id.
72 // Returns NULL if no node is found for the given sync id.
73 virtual const Node* GetChromeNodeFromSyncId(int64 sync_id) = 0;
75 // Initializes the given sync node from the given chrome node id.
76 // Returns false if no sync node was found for the given chrome node id o
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8NamedNodesCollection.cpp 38 Node* V8NamedNodesCollection::item(unsigned index) const
45 Node* V8NamedNodesCollection::itemWithName(const AtomicString& id) const
48 Node* node = m_nodes[i].get(); local
49 if (node->hasID() && static_cast<Element*>(node)->getIdAttribute() == id)
50 return node;
  /external/webkit/Source/WebCore/platform/text/
SuffixTree.h 58 Node* current = &m_root;
69 class Node {
71 Node(bool isLeaf = false)
78 ~Node()
81 Node* child = m_children.at(i);
87 Node*& at(int codeWord) { return m_children.at(codeWord); }
90 typedef Vector<Node*, Codebook::codeSize> ChildrenVector;
99 Node* current = &m_root;
103 Node*& child = current->at(Codebook::codeWord(text[base + offset]));
105 child = base + offset + 1 == limit ? &m_leaf : new Node();
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebDOMEventListener.h 37 namespace WebCore { class Node; }
58 EventListenerWrapper* createEventListenerWrapper(const WebString& eventType, bool useCapture, WebCore::Node* node);
59 EventListenerWrapper* getEventListenerWrapper(const WebString& eventType, bool useCapture, WebCore::Node* node);
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/
JJTAddressListParserState.java 6 private java.util.Stack<Node> nodes;
14 nodes = new java.util.Stack<Node>();
20 /* Determines whether the current node was actually closed and
22 node scope. */
27 /* Call this to reinitialize the node stack. It is called
36 /* Returns the root node of the AST. It only makes sense to call
38 Node rootNode() {
42 /* Pushes a node on to the stack. */
43 void pushNode(Node n) {
48 /* Returns the node on the top of the stack, and remove it from th
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DOM2Helper.java 23 import org.w3c.dom.Node;
34 * dropped method isNodeAfter(Node node1, Node node2)
38 * dropped method checkNode(Node)
41 * dropped method getParentOfNode(Node node)
59 * Returns the local name of the given node, as defined by the
62 * parsing the node name.
64 * @param n Node to be examined
66 * @return String containing the local name, or null if the node
    [all...]

Completed in 528 milliseconds

1 2 3 45 6 7 8 91011>>