HomeSort by relevance Sort by last modified time
    Searched full:node (Results 151 - 175 of 4066) sorted by null

1 2 3 4 5 67 8 91011>>

  /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/webkit/WebCore/bindings/v8/custom/
V8NodeCustom.cpp 32 #include "Node.h"
61 INC_STATS("DOM.Node.addEventListener()");
62 Node* node = V8Node::toNative(args.Holder()); local
64 RefPtr<EventListener> listener = V8DOMWrapper::getEventListener(node, args[1], false, ListenerFindOrCreate);
68 node->addEventListener(type, listener, useCapture);
76 INC_STATS("DOM.Node.removeEventListener()");
77 Node* node = V8Node::toNative(args.Holder()); local
79 // It is possbile that the owner document of the node is detache
    [all...]
  /external/webkit/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...]
Node.h 80 class Node : public EventTarget, public TreeShared<Node>, public ScriptWrappable {
109 virtual ~Node();
111 // DOM methods & attributes for Node
118 Node* parentNode() const { return parent(); }
120 Node* previousSibling() const { return m_previous; }
121 Node* nextSibling() const { return m_next; }
123 Node* firstChild() const { return isContainerNode() ? containerFirstChild() : 0; }
124 Node* lastChild() const { return isContainerNode() ? containerLastChild() : 0; }
132 // These should all actually return a node, but this is only important for language bindings
    [all...]
  /external/webkit/WebCore/editing/
ApplyStyleCommand.h 72 bool nodeFullySelected(Node*, const Position& start, const Position& end) const;
73 bool nodeFullyUnselected(Node*, const Position& start, const Position& end) const;
74 PassRefPtr<CSSMutableStyleDeclaration> extractTextDecorationStyle(Node*);
75 PassRefPtr<CSSMutableStyleDeclaration> extractAndNegateTextDecorationStyle(Node*);
76 void applyTextDecorationStyle(Node*, CSSMutableStyleDeclaration *style);
77 void pushDownTextDecorationStyleAroundNode(Node*, bool forceNegate);
86 void addInlineStyleIfNeeded(CSSMutableStyleDeclaration*, Node* start, Node* end);
93 void cleanupUnstyledAppleStyleSpans(Node* dummySpanAncestor);
95 void surroundNodeRangeWithElement(Node* start, Node* end, PassRefPtr<Element>)
    [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...]
markup.cpp 70 static inline bool shouldSelfClose(const Node *node);
216 static String stringValueForRange(const Node* node, const Range* range)
219 return node->nodeValue();
221 String str = node->nodeValue();
223 if (node == range->endContainer(ec))
225 if (node == range->startContainer(ec))
230 static inline pair<const UChar*, size_t> ucharRange(const Node *node, const Range *range
    [all...]
  /external/libxml2/
debugXML.c 46 xmlNodePtr node; /* current node */ member in struct:_xmlDebugCtxt
54 static void xmlCtxtDumpNodeList(xmlDebugCtxtPtr ctxt, xmlNodePtr node);
66 ctxt->node = NULL;
83 * @node: the node
84 * @ns: the namespace node
86 * Check that a given namespace is in scope on a node.
90 * an ancestor node.
93 xmlNsCheckScope(xmlNodePtr node, xmlNsPtr ns
2681 xmlNodePtr node; local
    [all...]
  /external/webkit/WebCore/inspector/front-end/
utilities.js 61 Node.prototype.rangeOfWord = function(offset, stopCharacters, stayWithinNode, direction)
72 var node = this;
73 while (node) {
74 if (node === stayWithinNode) {
80 if (node.nodeType === Node.TEXT_NODE) {
81 var start = (node === this ? (offset - 1) : (node.nodeValue.length - 1));
83 if (stopCharacters.indexOf(node.nodeValue[i]) !== -1) {
84 startNode = node;
    [all...]
  /dalvik/libcore/xml/src/main/java/org/w3c/dom/
Node.java 16 * The <code>Node</code> interface is the primary datatype for the entire
17 * Document Object Model. It represents a single node in the document tree.
18 * While all objects implementing the <code>Node</code> interface expose
20 * <code>Node</code> interface may have children. For example,
24 * <code>attributes</code> are included as a mechanism to get at node
34 * node type as follows:
130 * of the text node</td>
136 public interface Node {
139 * The node is an <code>Element</code>.
143 * The node is an <code>Attr</code>
    [all...]
  /frameworks/base/media/libdrm/mobile2/src/util/domcore/
ElementImpl.cpp 57 NodeImpl* node = getFirstChild(); local
59 if (node == NULL || name == NULL || nodeList == NULL)
64 if (node->getNodeType() == ELEMENT_NODE) {
65 ElementImpl* elementNode = static_cast<ElementImpl*>(node);
67 /* if current is element node and tag name is equal to <code>name</code>,put it into nodeList */
68 nodeList->append(node);
71 * get all Elements node whose tage name is equal to name.
76 /* set current node's next sibling node as current node.*/
    [all...]
  /dalvik/libcore/xml/src/main/java/javax/xml/transform/dom/
DOMSource.java 24 import org.w3c.dom.Node;
42 * <p><code>Node</code> to serve as DOM source.</p>
44 private Node node; field in class:DOMSource
61 * no DOM source is set using {@link #setNode(Node node)} , then the
71 * Create a new input source with a DOM node. The operation
72 * will be applied to the subtree rooted at this node. In XSLT,
75 * from the root node also.
77 * @param n The DOM node that will contain the Source tree
    [all...]
  /build/tools/droiddoc/templates/assets/
android-developer-reference.js 98 var node = new Object();
99 node.children = Array();
100 node.children_data = children_data;
101 node.depth = mom.depth + 1;
103 node.li = document.createElement("li");
104 mom.get_children_ul().appendChild(node.li);
106 node.label_div = document.createElement("div");
107 node.label_div.className = "label";
109 $(node.label_div).addClass("api");
110 $(node.label_div).addClass("api-level-"+api_level)
    [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...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/
Axis.java 34 * The ancestor axis contains the ancestors of the context node;
35 * the ancestors of the context node consist of the parent of context
36 * node and the parent's parent and so on; thus, the ancestor axis will
37 * always include the root node, unless the context node is the root node.
42 * the ancestor-or-self axis contains the context node and the ancestors of
43 * the context node; thus, the ancestor axis will always include the
44 * root node.
49 * the attribute axis contains the attributes of the context node; the axi
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
DTMNamedNodeMap.java 27 import org.w3c.dom.Node;
47 /** The DTM for this node. */
57 * Create a getAttributes NamedNodeMap for a given DTM element node
93 * Retrieves a node specified by name.
94 * @param name The <code>nodeName</code> of a node to retrieve.
95 * @return A <code>Node</code> (of any type) with the specified
97 * any node in this map.
99 public Node getNamedItem(String name)
117 * @return The node at the <code>index</code>th position in the map, or
120 public Node item(int i
    [all...]
  /external/v8/benchmarks/
splay.js 53 string : 'String for key ' + key + ' in leaf node'
72 // Insert new node with a unique key.
135 * Pointer to the root node of the tree.
137 * @type {SplayTree.Node}
152 * Inserts a node into the tree with the specified key and value if
153 * the tree does not already contain a node with the specified key. If
161 this.root_ = new SplayTree.Node(key, value);
164 // Splay on the key to move the last node on the search path for
170 var node = new SplayTree.Node(key, value)
    [all...]
  /external/webkit/SunSpider/tests/v8-v4/
v8-splay.js 48 string : 'String for key ' + key + ' in leaf node'
67 // Insert new node with a unique key.
130 * Pointer to the root node of the tree.
132 * @type {SplayTree.Node}
147 * Inserts a node into the tree with the specified key and value if
148 * the tree does not already contain a node with the specified key. If
156 this.root_ = new SplayTree.Node(key, value);
159 // Splay on the key to move the last node on the search path for
165 var node = new SplayTree.Node(key, value)
    [all...]
  /frameworks/base/media/libstagefright/omx/
OMX.cpp 104 OMXNodeInstance *instance = mOwner->findInstance(msg.node);
106 LOGV("Would have dispatched a message to a node that's already gone.");
208 const char *name, const sp<IOMXObserver> &observer, node_id *node) {
211 *node = 0;
228 *node = makeNodeID(instance);
230 instance->setHandle(*node, handle);
238 status_t OMX::freeNode(node_id node) {
239 OMXNodeInstance *instance = findInstance(node);
250 node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param) {
251 return findInstance(node)->sendCommand(cmd, param)
386 node_id node = (node_id)++mNodeCounter; local
    [all...]
  /external/webkit/WebCore/xml/
XPathStep.cpp 59 // Evaluate predicates as part of node test if possible to avoid building unnecessary NodeSets.
61 // This optimization can be applied to predicates that are not context node list sensitive, or to first predicate that is only context position sensitive, e.g. foo[position() mod 2 = 0].
85 // Optimize the common case of "//" AKA /descendant-or-self::node()/child::NodeTest to /descendant::NodeTest.
114 void Step::evaluate(Node* context, NodeSet& nodes) const
121 // Check predicates that couldn't be merged into node test.
130 Node* node = nodes[j]; local
132 evaluationContext.node = node;
136 newNodes.append(node);
    [all...]
  /external/webkit/WebKit/chromium/src/
DOMUtilitiesPrivate.cpp 40 #include "Node.h"
49 HTMLNodeType* toHTMLElement(Node* node, const QualifiedName& name)
51 if (node->isHTMLElement()
52 && static_cast<HTMLElement*>(node)->hasTagName(name)) {
53 return static_cast<HTMLNodeType*>(node);
62 HTMLInputElement* toHTMLInputElement(Node* node)
64 return toHTMLElement<HTMLInputElement>(node, HTMLNames::inputTag);
67 HTMLLinkElement* toHTMLLinkElement(Node* node
    [all...]
  /dalvik/libcore/prefs/src/main/java/java/util/prefs/
NodeChangeListener.java 23 * This interface is used to handle preference node change events. The
34 * This method gets called whenever a child node is added to another node.
37 * the node change event.
42 * This method gets called whenever a child node is removed from another
43 * node.
46 * the node change event.
  /dalvik/libcore/xml/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...]
  /external/clearsilver/man/man3/
hdf_set_symlink.3 25 hdf -> the dataset node
27 src -> the source node name
29 dest -> the destination node name (from the top of the
36 "symlink". This means that the destination node does
38 node will cause the function to walk to the dest node,
41 to access any children of the linked node directly,
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
DOM2Helper.java 33 import org.w3c.dom.Node;
51 * Check node to see if it was created by a DOM implementation
56 * @param node The node to be tested.
58 * @throws TransformerException if the node is not one which this
60 * the node is compatable.
63 public void checkNode(Node node) throws TransformerException
66 // if(!(node instanceof org.apache.xerces.dom.NodeImpl))
67 // throw new TransformerException(XSLMessages.createXPATHMessage(XPATHErrorResources.ER_XERCES_CANNOT_HANDLE_NODES, new Object[]{((Object)node).getClass()})); //"DOM2Helper can not handle nodes of type
    [all...]

Completed in 507 milliseconds

1 2 3 4 5 67 8 91011>>