HomeSort by relevance Sort by last modified time
    Searched defs:node (Results 51 - 75 of 515) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/WebCore/bindings/js/
JSClipboardCustom.cpp 38 #include "Node.h"
125 // See if they passed us a node
126 Node* node = toNode(args.at(0)); local
127 if (!node)
131 if (!node->isElementNode())
134 if (static_cast<Element*>(node)->hasLocalName(imgTag) && !node->inDocument())
135 clipboard->setDragImage(static_cast<HTMLImageElement*>(node)->cachedImage(), IntPoint(x, y));
137 clipboard->setDragImageElement(node, IntPoint(x, y))
    [all...]
JSHTMLAllCollectionCustom.cpp 35 #include "Node.h"
45 Vector<RefPtr<Node> > namedItems;
90 Node* node = collection->namedItem(pstr); local
91 while (node) {
93 return toJS(exec, jsCollection->globalObject(), node);
94 node = collection->nextNamedItem(pstr);
110 Vector<RefPtr<Node> > namedItems;
JSXSLTProcessorCustom.cpp 40 #include "Node.h"
53 JSNode* node = static_cast<JSNode*>(asObject(nodeVal)); local
54 impl()->importStylesheet(node->impl());
66 WebCore::Node* node = static_cast<JSNode*>(asObject(nodeVal))->impl(); local
68 return toJS(exec, impl()->transformToFragment(node, doc).get());
78 JSNode* node = static_cast<JSNode*>(asObject(nodeVal)); local
79 RefPtr<Document> resultDocument = impl()->transformToDocument(node->impl());
  /external/webkit/WebCore/bindings/v8/custom/
V8ClipboardCustom.cpp 38 #include "Node.h"
126 Node* node = 0; local
128 node = V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0]));
130 if (!node || !node->isElementNode())
133 if (static_cast<Element*>(node)->hasLocalName(HTMLNames::imgTag) && !node->inDocument())
134 clipboard->setDragImage(static_cast<HTMLImageElement*>(node)->cachedImage(), IntPoint(x, y));
136 clipboard->setDragImageElement(node, IntPoint(x, y))
    [all...]
V8HTMLAllCollectionCustom.cpp 46 Vector<RefPtr<Node> > namedItems;
71 RefPtr<Node> result = collection->item(index->Uint32Value());
131 Node* node = imp->namedItem(name); local
132 while (node) {
134 return toV8(node);
136 node = imp->nextNamedItem(name);
V8HTMLCollectionCustom.cpp 46 Vector<RefPtr<Node> > namedItems;
71 RefPtr<Node> result = collection->item(index->Uint32Value());
131 Node* node = imp->namedItem(name); local
132 while (node) {
134 return toV8(node);
136 node = imp->nextNamedItem(name);
V8XSLTProcessorCustom.cpp 36 #include "Node.h"
64 Node* node = V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])); local
65 imp->importStylesheet(node);
78 Node* source = V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0]));
94 Node* source = V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0]));
  /external/webkit/WebCore/dom/
NodeIterator.h 39 static PassRefPtr<NodeIterator> create(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr<NodeFilter> filter, bool expandEntityReferences)
45 PassRefPtr<Node> nextNode(ScriptState*, ExceptionCode&);
46 PassRefPtr<Node> previousNode(ScriptState*, ExceptionCode&);
49 Node* referenceNode() const { return m_referenceNode.node.get(); }
52 // This function is called before any node is removed from the document tree.
53 void nodeWillBeRemoved(Node*);
57 PassRefPtr<Node> nextNode(ExceptionCode& ec) { return nextNode(scriptStateFromNode(mainThreadNormalWorld(), referenceNode()), ec); }
58 PassRefPtr<Node> previousNode(ExceptionCode& ec) { return previousNode(scriptStateFromNode(mainThreadNormalWorld(), referenceNode()), ec); }
61 NodeIterator(PassRefPtr<Node>, unsigned whatToShow, PassRefPtr<NodeFilter>, bool expandEntityReferences)
64 RefPtr<Node> node; member in struct:WebCore::NodeIterator::NodePointer
    [all...]
TreeWalker.cpp 36 TreeWalker::TreeWalker(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr<NodeFilter> filter, bool expandEntityReferences)
42 void TreeWalker::setCurrentNode(PassRefPtr<Node> node, ExceptionCode& ec)
44 if (!node) {
48 m_current = node;
51 inline Node* TreeWalker::setCurrent(PassRefPtr<Node> node)
53 m_current = node;
57 Node* TreeWalker::parentNode(ScriptState* state
59 RefPtr<Node> node = m_current; local
141 RefPtr<Node> node = m_current; local
177 RefPtr<Node> node = m_current; local
213 RefPtr<Node> node = m_current; local
252 RefPtr<Node> node = m_current; local
    [all...]
  /external/webkit/WebCore/inspector/front-end/
TextPrompt.js 272 var node = selectionRange.startContainer; variable
273 if (node !== this.element && !node.isDescendant(this.element))
276 if (node.nodeType === Node.TEXT_NODE && selectionRange.startOffset < node.nodeValue.length)
280 while (node) {
281 if (node.nodeType === Node.TEXT_NODE && node.nodeValue.length)
    [all...]
  /external/webkit/WebCore/platform/
DeprecatedPtrListImpl.h 113 DeprecatedListNode *node; member in class:WebCore::DeprecatedPtrListImplIterator
  /external/webkit/WebKit/chromium/src/
WebEventListenerPrivate.h 39 class Node;
55 const WebString& eventType, bool useCapture, Node* node);
57 // Gets the ListenerEventWrapper for a specific node.
60 const WebString& eventType, bool useCapture, Node* node);
71 Node* node)
75 , node(node)
82 Node* node; member in struct:WebKit::WebEventListenerPrivate::ListenerInfo
    [all...]
  /libcore/luni/src/main/java/java/util/prefs/
PreferenceChangeEvent.java 43 private final Preferences node; field in class:PreferenceChangeEvent
63 node = p;
94 return node;
  /libcore/luni/src/main/java/javax/xml/transform/dom/
DOMResult.java 23 import org.w3c.dom.Node;
28 * <p>If no output DOM source is set, the transformation will create a Document node as the holder for the result of the transformation,
45 * <p><code>node</code>,
57 * <p>Use a DOM node to create a new output target.</p>
59 * <p>In practice, the node should be
60 * a {@link org.w3c.dom.Document} node,
61 * a {@link org.w3c.dom.DocumentFragment} node, or
62 * a {@link org.w3c.dom.Element} node.
63 * In other words, a node that accepts children.</p>
69 * @param node The DOM node that will contain the result tree
337 private Node node = null; field in class:DOMResult
    [all...]
DOMSource.java 23 import org.w3c.dom.Node;
41 * <p><code>Node</code> to serve as DOM source.</p>
43 private Node node; field in class:DOMSource
60 * no DOM source is set using {@link #setNode(Node node)} , then the
70 * Create a new input source with a DOM node. The operation
71 * will be applied to the subtree rooted at this node. In XSLT,
74 * from the root node also.
76 * @param n The DOM node that will contain the Source tree
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
DTMAxisIterNodeList.java 27 import org.w3c.dom.Node;
100 * @return The node at the <code>index</code>th position in the
104 public Node item(int index) {
106 int node; local
110 node = m_cachedNodes.elementAt(index);
111 return m_dtm.getNode(node);
113 while (((node = m_iter.next()) != DTMAxisIterator.END)
115 m_cachedNodes.addElement(node);
118 if (node == DTMAxisIterator.END) {
121 return m_dtm.getNode(node);
134 int node; local
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/functions/
FuncNormalizeSpace.java 72 int node = getArg0AsNode(xctxt); local
73 if(DTM.NULL != node)
75 DTM dtm = xctxt.getDTM(node);
76 dtm.dispatchCharactersEvents(node, handler, true);
  /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...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/bin_search_tree_/
traits.hpp 60 class Node,
74 typedef Node node; typedef in struct:__gnu_pbds::detail::bin_search_tree_traits
79 node>::other::pointer,
92 node>::other::pointer,
105 node>::other::pointer,
118 node>::other::pointer,
130 Node,
138 Node,
168 class Node,
188 typedef Node node; typedef in struct:__gnu_pbds::detail::bin_search_tree_traits
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/parts/
UiElementTreeEditPartFactory.java 39 UiElementNode node = (UiElementNode) model; local
40 if (node.getDescriptor().hasChildren()) {
41 return new UiLayoutTreeEditPart(node);
43 return new UiViewTreeEditPart(node);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
ViewsTreeModel.java 45 ViewNode node = (ViewNode) child; local
46 return node.children == null || node.children.size() == 0;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiActions.java 29 import org.w3c.dom.Node;
34 * Performs basic actions on an XML tree: add node, remove node, move up/down.
51 * Utility method to select an outline item based on its model node
53 * @param uiNode The node to select. Can be null (in which case nothing should happen)
72 * Displays a selection dialog that lets the user select which kind of node
78 // If the root node is a document with already a root, use it as the root node
105 * If a sibling is given and that sibling has the same parent, the new node is added
106 * right after that sibling. Otherwise the new node is added at the end of the paren
199 final UiElementNode node = last_node = nodes.get(i); local
280 final UiElementNode node = last_node = nodes.get(i); local
    [all...]
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/xml/
XmlDocumentBuilder.java 31 import org.w3c.dom.Node;
46 * trees to indicate the start and end line numbers of each node.
50 * Name of the node user data containing the start line number of the node.
52 * @see Node#getUserData(String)
57 * Name of the node user data containing the end line number of the node.
59 * @see Node#getUserData(String)
129 "http://apache.org/xml/features/dom/defer-node-expansion";
131 "http://apache.org/xml/properties/dom/current-element-node";
157 Node node = null; local
183 Node node = mStack.removeLast(); local
    [all...]
  /external/bluetooth/glib/gio/fen/
fen-data.h 28 #include "fen-node.h"
36 #define FN_NODE(fp) (((fdata*)(fp))->node)
48 node_t* node; member in struct:__anon1817
66 fdata* fdata_new (node_t* node, gboolean is_mondir);
82 gboolean pre_del_cb (node_t* node, gpointer user_data);
  /external/qemu/
aio.c 38 QLIST_ENTRY(AioHandler) node;
43 AioHandler *node; local
45 QLIST_FOREACH(node, &aio_handlers, node) {
46 if (node->fd == fd)
47 if (!node->deleted)
48 return node;
60 AioHandler *node; local
62 node = find_aio_handler(fd);
66 if (node) {
100 AioHandler *node; local
126 AioHandler *node; local
    [all...]

Completed in 2129 milliseconds

1 23 4 5 6 7 8 91011>>