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

<<11121314151617181920>>

  /dalvik/libcore/xml/src/main/java/javax/xml/transform/dom/
DOMLocator.java 24 import org.w3c.dom.Node;
28 * Indicates the position of a node in a source DOM, intended
33 * to indicate the source node that originated a result node.
38 * Return the node where the event occurred.
40 * @return The node that is the location for the event.
42 public Node getOriginatingNode();
  /external/webkit/WebCore/bindings/js/
JSNodeIteratorCustom.cpp 24 #include "Node.h"
43 RefPtr<Node> node = impl()->nextNode(exec, ec); local
52 return toJS(exec, node.get());
58 RefPtr<Node> node = impl()->previousNode(exec, ec); local
67 return toJS(exec, node.get());
  /external/webkit/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->hasAttributes() && node->attributes()->id() == id)
50 return node;
  /external/webkit/WebCore/dom/
StaticNodeList.cpp 41 Node* StaticNodeList::item(unsigned index) const
48 Node* StaticNodeList::itemWithName(const AtomicString& elementId) const
52 Node* node = m_nodes[i].get(); local
53 if (node->isElementNode() && static_cast<Element*>(node)->getIDAttribute() == elementId)
54 return node;
Traversal.cpp 28 #include "Node.h"
33 Traversal::Traversal(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr<NodeFilter> nodeFilter, bool expandEntityReferences)
41 short Traversal::acceptNode(ScriptState* state, Node* node) const
45 // The bit twiddling here is done to map DOM node types, which are given as integers from
47 if (!(((1 << (node->nodeType() - 1)) & m_whatToShow)))
51 return m_filter->acceptNode(state, node);
  /external/webkit/WebCore/editing/
RemoveNodeCommand.h 35 static PassRefPtr<RemoveNodeCommand> create(PassRefPtr<Node> node)
37 return adoptRef(new RemoveNodeCommand(node));
41 RemoveNodeCommand(PassRefPtr<Node>);
46 RefPtr<Node> m_node;
47 RefPtr<Node> m_parent;
48 RefPtr<Node> m_refChild;
BreakBlockquoteCommand.cpp 65 // be in the first node that we need to move (there are a few exceptions to this, see below).
70 for (Node *node = pos.node()->parentNode(); node; node = node->parentNode()) {
71 if (isMailBlockquote(node))
72 topBlockquote = static_cast<Element*>(node);
106 while (isFirstVisiblePositionInNode(VisiblePosition(pos), nearestMailBlockquote(pos.node())))
    [all...]
ReplaceNodeWithSpanCommand.cpp 45 ReplaceNodeWithSpanCommand::ReplaceNodeWithSpanCommand(PassRefPtr<Node> node)
46 : CompositeEditCommand(node->document())
47 , m_node(node)
52 static void swapInNodePreservingAttributesAndChildren(Node* newNode, Node* nodeToReplace)
56 Node* parentNode = nodeToReplace->parentNode();
60 Node* nextChild;
61 for (Node* child = nodeToReplace->firstChild(); child; child = nextChild) {
  /external/freetype/include/freetype/
ftlist.h 84 /* Find the list node for a given listed object. */
91 /* List node. NULL if it wasn't found. */
108 /* node :: The node to append. */
112 FT_ListNode node );
125 /* node :: The node to insert. */
129 FT_ListNode node );
138 /* Remove a node from a list. This function doesn't check whether */
139 /* the node is in the list! *
    [all...]
  /external/opencore/engines/author/src/single_core/
pvaenodefactoryutility.h 20 * PVAuthorEngine Node Factory Utility for single core builds
81 PVMFNodeInterface* node = NULL; local
85 node = PVMFOMXEncNodeFactory::CreatePVMFOMXEncNode();
89 node = PVMFOMXEncNodeFactory::CreatePVMFOMXEncNode();
95 node = PVMFVideoEncNodeFactory::CreateVideoEncNode();
99 node = PvmfAmrEncNodeFactory::Create();
103 node = PVMFAvcEncNodeFactory::CreateAvcEncNode();
106 return node;
111 PVMFNodeInterface* node = NULL; local
114 node = PVMp4FFComposerNodeFactory::CreateMp4FFComposer()
    [all...]
  /external/webkit/WebCore/accessibility/
AccessibilityMediaControls.cpp 56 ASSERT(renderer->node() && renderer->node()->isMediaControlElement());
58 Node* node = renderer->node(); local
61 if (node->hasTagName(inputTag))
62 controlType = static_cast<MediaControlInputElement*>(node)->displayType();
64 controlType = static_cast<MediaControlElement*>(node)->displayType();
91 if (!renderer() || !renderer()->node())
94 Node* node = renderer()->node()
    [all...]
AccessibilityRenderObject.cpp 252 if (!m_renderer->node() || !m_renderer->node()->isHTMLElement())
257 InputElement* inputElement = toInputElement(static_cast<Element*>(m_renderer->node()));
272 if (m_renderer && m_renderer->node() && m_renderer->node()->hasTagName(inputTag)) {
273 HTMLInputElement* input = static_cast<HTMLInputElement*>(m_renderer->node());
282 if (m_renderer && m_renderer->node() && m_renderer->node()->hasTagName(inputTag)) {
283 HTMLInputElement* input = static_cast<HTMLInputElement*>(m_renderer->node());
335 Node* node = m_renderer->node()
550 Node* node = m_renderer->node(); local
632 Node* node = m_renderer->node(); local
978 Node* node = m_renderer->node(); local
1125 Node* node = m_renderer->node(); local
1655 Node* node = m_renderer->node(); local
1707 Node* node = m_renderer->node(); local
2666 Node* node = m_renderer->node(); local
2774 Node* node = m_renderer->node(); local
    [all...]
  /external/oprofile/libdb/
odb.h 25 /** the type of index (node number), list are implemented through index */
27 /** the type store node number */
32 /* there is (bucket factor * nr node) entry in hash table, this can seem
41 /** a db hash node */
49 * properly the data base, following this header is the node array then
50 * the hash table (when growing we avoid to copy node array)
53 odb_node_nr_t size; /**< in node nr (power of two) */
54 odb_node_nr_t current_size; /**< nr used node + 1, node 0 unused */
71 * the node array: (descr->size * sizeof(odb_node_t) entrie
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 63 * interior node deletion (to support remove(Object)). For
74 * - There is exactly one (last) Node with a null next reference,
75 * which is CASed when enqueueing. This last Node can be
81 * reference of a Node to null atomically removes it from the
84 * head to advance. A dequeued Node may remain in use
89 * from a predecessor dequeued Node. That would cause two problems:
92 * a Node was tenured while live, which generational GCs have a
97 * linking a Node that has just been dequeued to itself. Such a
109 * CASing a Node's item reference to null atomically removes the
117 * When constructing a Node (before enqueuing it) we avoid payin
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/
NodeSetDTM.java 31 import org.w3c.dom.Node;
145 Node node; local
148 while (null != (node = iterator.nextNode()))
150 int handle = xctxt.getDTMHandleFromNode(node);
170 Node node = nodeList.item(i); local
171 int handle = xctxt.getDTMHandleFromNode(node);
179 * Create a NodeSetDTM which contains the given Node.
181 * @param node Single node to be added to the new set
709 int node; local
    [all...]
  /external/libxml2/
xlink.c 110 * @doc: the document containing the node
111 * @node: the node pointer itself
113 * Check whether the given node carries the attributes needed
119 * Returns the xlinkType of the node (XLINK_TYPE_NONE if there is no
123 xlinkIsLink (xmlDocPtr doc, xmlNodePtr node) {
127 if (node == NULL) return(XLINK_TYPE_NONE);
128 if (doc == NULL) doc = node->doc;
133 } else if ((node->ns != NULL) &&
134 (xmlStrEqual(node->ns->href, XHTML_NAMESPACE)))
    [all...]
  /external/webkit/WebCore/rendering/
RenderTextControlMultiLine.cpp 37 RenderTextControlMultiLine::RenderTextControlMultiLine(Node* node, bool placeholderVisible)
38 : RenderTextControl(node, placeholderVisible)
44 if (node())
45 static_cast<HTMLTextAreaElement*>(node())->rendererWillBeDestroyed();
51 HTMLTextAreaElement* textArea = static_cast<HTMLTextAreaElement*>(node());
55 if (!node()->focused())
58 node()->dispatchEvent(Event::create(eventNames().inputEvent, true, false));
72 if (result.innerNode() == node() || resultIsTextValueOrPlaceholder)
85 int factor = static_cast<HTMLTextAreaElement*>(node())->cols()
    [all...]
  /external/webkit/WebCore/xml/
XPathNodeSet.h 34 #include "Node.h"
46 Node* operator[](unsigned i) const { return m_nodes.at(i).get(); }
52 void append(Node* node) { m_nodes.append(node); }
53 void append(PassRefPtr<Node> node) { m_nodes.append(node); }
56 // Returns the set's first node in document order, or 0 if the set is empty.
57 Node* firstNode() const
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiModelTreeContentProvider.java 46 * Returns all the UI node children of the given element or null if not the right kind
50 UiElementNode node = (UiElementNode) parentElement; local
51 return node.getUiChildren().toArray();
57 * Returns the parent of a given UI node or null if it's a root node or it's not the
58 * right kind of node. */
61 UiElementNode node = (UiElementNode) element; local
62 return node.getUiParent();
68 * Returns true if the UI node has any UI children nodes. */
71 UiElementNode node = (UiElementNode) element local
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
ElemLiteralResult.java 40 import org.w3c.dom.Node;
116 * The created element node will have the attribute nodes
117 * that were present on the element node in the stylesheet tree,
157 * A text node is preserved if an ancestor element of the text node
185 * @param namespaceURI Namespace URI of attribute node to get
186 * @param localName Local part of qualified name of attribute node to get
215 * @param namespaceURI Namespace URI of attribute node to get
216 * @param localName Local part of qualified name of attribute node to get
544 * @see org.w3c.dom.Node
    [all...]
  /external/webkit/WebCore/inspector/front-end/
ElementsTreeOutline.js 84 // node as the one passed in.
124 var node = this.rootDOMNode.firstChild;
125 while (node) {
126 treeElement = new WebInspector.ElementsTreeElement(node);
129 node = node.nextSibling;
147 findTreeElement: function(node)
149 var treeElement = TreeOutline.prototype.findTreeElement.call(this, node, isAncestorNode, parentNode);
150 if (!treeElement && node.nodeType === Node.TEXT_NODE)
    [all...]
  /external/skia/include/views/
SkViewInflate.h 36 SkView* inflate(const SkDOM& dom, const SkDOM::Node* node, SkView* root = NULL);
53 virtual SkView* createView(const SkDOM& dom, const SkDOM::Node* node);
54 /** Base implementation calls view->inflate(dom, node). Subclasses may override this
58 virtual void inflateView(SkView* view, const SkDOM& dom, const SkDOM::Node* node);
75 void rInflate(const SkDOM& dom, const SkDOM::Node* node, SkView* parent);
  /external/skia/src/ports/
SkXMLParser_tinyxml.cpp 39 const TiXmlNode* node = elem->FirstChild(); local
40 while (node)
42 if (node->ToElement())
43 walk_elem(parser, node->ToElement());
44 else if (node->ToText())
45 parser->text(node->Value(), strlen(node->Value()));
46 node = node->NextSibling();
  /external/webkit/WebCore/html/
HTMLOptGroupElement.h 38 virtual bool checkDTD(const Node*);
48 virtual bool insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode&, bool shouldLazyAttach = false);
49 virtual bool replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode&, bool shouldLazyAttach = false);
50 virtual bool removeChild(Node* child, ExceptionCode&);
51 virtual bool appendChild(PassRefPtr<Node> newChild, ExceptionCode&, bool shouldLazyAttach = false);
53 virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
  /external/webkit/WebKit/chromium/src/
DOMUtilitiesPrivate.h 40 class Node;
48 // If node is an HTML node with a tag name of name it is casted and returned.
49 // If node is not an HTML node or the tag name is not name, 0 is returned.
50 WebCore::HTMLInputElement* toHTMLInputElement(WebCore::Node*);
51 WebCore::HTMLLinkElement* toHTMLLinkElement(WebCore::Node*);
52 WebCore::HTMLMetaElement* toHTMLMetaElement(WebCore::Node*);
53 WebCore::HTMLOptionElement* toHTMLOptionElement(WebCore::Node*);

Completed in 288 milliseconds

<<11121314151617181920>>