/external/v8/src/ |
global-handles.h | 138 // Internal node structure, one for each global handle. 139 class Node; 150 static Node* head_; 151 static Node* head() { return head_; } 152 static void set_head(Node* value) { head_ = value; } 155 static Node* first_free_; 156 static Node* first_free() { return first_free_; } 157 static void set_first_free(Node* value) { first_free_ = value; } 161 // |first_deallocated| points to last deallocated node before 167 // node node ... node nod [all...] |
/external/webkit/JavaScriptCore/API/tests/ |
NodeList.h | 29 #include "Node.h" 33 Node* parentNode; 36 extern NodeList* NodeList_new(Node* parentNode); 38 extern Node* NodeList_item(NodeList*, unsigned);
|
/external/webkit/WebCore/dom/ |
NodeFilter.cpp | 28 #include "Node.h" 32 short NodeFilter::acceptNode(ScriptState* state, Node* node) const 35 return m_condition ? m_condition->acceptNode(state, node) : static_cast<short>(FILTER_ACCEPT);
|
NodeIterator.idl | 27 readonly attribute Node root; 31 readonly attribute Node referenceNode; 34 [Custom] Node nextNode() 36 [Custom] Node previousNode()
|
NodeFilter.h | 48 * They are the same as the set of possible types for Node, and 50 * to the value of NodeType for the equivalent node type. 73 short acceptNode(ScriptState*, Node*) const; 78 short acceptNode(Node* node) const { return acceptNode(scriptStateFromNode(mainThreadNormalWorld(), node), node); }
|
/external/webkit/WebCore/html/ |
HTMLTableRowElement.cpp | 47 bool HTMLTableRowElement::checkDTD(const Node* newChild) 55 ContainerNode* HTMLTableRowElement::addChild(PassRefPtr<Node> child) 71 Node *table = parentNode(); 86 for (Node *row = head->firstChild(); row; row = row->nextSibling()) { 94 for (Node *node = table->firstChild(); node; node = node->nextSibling()) { 95 if (node->hasTagName(tbodyTag)) [all...] |
HTMLLegendElement.cpp | 79 Node *fieldset = parentNode(); 87 Node *node = fieldset; 88 while ((node = node->traverseNextNode(fieldset))) { 89 if (node->isHTMLElement()) { 90 HTMLElement *element = static_cast<HTMLElement *>(node);
|
/external/webkit/WebKit/android/nav/ |
CacheBuilder.cpp | 98 static bool hasEventListener(Node* node, const AtomicString& eventType) { 99 if (!node->isElementNode()) 101 Element* element = static_cast<Element*>(node); 345 Node* node = doc; local 346 Node* focus = doc->focusedNode(); 349 if ((atLeastOne |= isFocusable(node)) != false) 351 } while ((node = node->traverseNextNode()) != NULL) 947 Node* node = parent; local 2430 Node* node = area->document(); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/resources/ |
ResourcesEditor.java | 34 import org.w3c.dom.Node; 47 /** Root node of the UI element hierarchy */ 59 * Returns the root node of the UI element hierarchy, which 60 * here is the "resources" node. 110 * Processes the new XML Model, which XML root node is given. 125 Node node = (Node) xpath.evaluate("/" + resources_desc.getXmlName(), //$NON-NLS-1$ local 127 XPathConstants.NODE); 128 assert node != null && node.getNodeName().equals(resources_desc.getXmlName()) [all...] |
/external/webkit/WebCore/editing/ |
TextIterator.cpp | 152 static inline Node* parentCrossingShadowBoundaries(Node* node) 154 if (Node* parent = node->parentNode()) 156 return node->shadowParentNode(); 161 static unsigned depthCrossingShadowBoundaries(Node* node) 164 for (Node* parent = parentCrossingShadowBoundaries(node); parent; parent = parentCrossingShadowBoundaries(parent) 927 Node* TextIterator::node() const function in class:WebCore::TextIterator [all...] |
VisiblePosition.cpp | 51 VisiblePosition::VisiblePosition(Node *node, int offset, EAffinity affinity) 54 init(Position(node, offset), affinity); 109 if (!p.node()) 114 for (RenderObject* r = p.node()->renderer(); r; r = r->parent()) { 224 p = Position(renderer->node(), offset); 251 if (!p.node()) 256 for (RenderObject* r = p.node()->renderer(); r; r = r->parent()) { 367 p = Position(renderer->node(), offset); 396 Node* highestRoot = highestEditableRoot(deepEquivalent()) 461 Node* node = position.node(); local 519 Node* node = pos.node(); local 536 Node* node = m_deepPosition.node(); local [all...] |
IndentOutdentCommand.cpp | 60 static bool isListOrIndentBlockquote(const Node* node) 62 return node && (node->hasTagName(ulTag) || node->hasTagName(olTag) || node->hasTagName(blockquoteTag)); 73 Node* lastNodeInSelectedParagraph = endOfCurrentParagraph.deepEquivalent().node(); 108 Node* enclosingCell = 0; 112 Node* nodeToSplitTo [all...] |
InsertListCommand.cpp | 47 HTMLElement* InsertListCommand::fixOrphanedListChild(Node* node) 50 insertNodeBefore(listElement, node); 51 removeNode(node); 52 appendNode(node, listElement); 73 Node* startList = enclosingList(startOfSelection.deepEquivalent().node()); 74 Node* endList = enclosingList(endOfSelection.deepEquivalent().node()); 92 if (!startOfLastParagraph.deepEquivalent().node()->inDocument() [all...] |
MoveSelectionCommand.cpp | 35 : CompositeEditCommand(position.node()->document()), m_fragment(fragment), m_position(position), m_smartMove(smartMove) 50 Node *positionNode = m_position.node(); 54 if (selectionEnd.node() == positionNode && selectionEndOffset < positionOffset) { 57 if (selectionStart.node() == positionNode) { 65 // If the node for the destination has been removed as a result of the deletion, 69 if (!pos.node()->inDocument())
|
/dalvik/libcore/xml/src/main/java/org/apache/xpath/objects/ |
XNodeSet.java | 101 * Construct a XNodeSet object for one node. 103 * @param n Node to add to the new XNodeSet object 142 * Get numeric value of the string conversion from a single node. 144 * @param n Node to convert 146 * @return numeric value of the string conversion from a single node. 158 * next node in the NodeSetDTM, or NAN if no node was found 163 int node = item(0); local 164 return (node != DTM.NULL) ? getNumberFromNode(node) : Double.NaN 176 int node = nextNode(); local 239 int node = item(0); local 255 int node = item(0); local 279 int node = item(0); local 568 int node; local 587 int node; local 613 int node; local [all...] |
/dalvik/libcore/xml/src/main/java/org/w3c/dom/ |
EntityReference.java | 24 * <code>EntityReference</code> node that represents a reference to a known 26 * <code>EntityReference</code> node is a copy of the <code>Entity</code> 27 * node subtree. However, the latter may not be true when an entity contains 30 * the <code>EntityReference</code> node may be bound to different namespace 31 * URIs. When an <code>EntityReference</code> node represents a reference to 32 * an unknown entity, the node has no children and its replacement value, 42 public interface EntityReference extends Node {
|
/external/opencore/nodes/pvdownloadmanagernode/include/ |
pvmf_downloadmanager_defs.h | 26 //This node uses the extended events reported by the download and parser nodes. 27 //See pvmfftdmnode_events.h for download node events. 28 //See pvmf_mp4ffparser_events.h for parser node events. 35 // The download node reports the following PVMF Info events 36 // in addition to the node-specific events: 46 // PVMFInfoEndOfData: End of track detected by parser node. 54 //None. Port requests must match the format used by the Mp4 Parser node.
|
/external/webkit/WebCore/css/ |
CSSComputedStyleDeclaration.h | 25 #include "Node.h" 36 friend PassRefPtr<CSSComputedStyleDeclaration> computedStyle(PassRefPtr<Node>); 63 CSSComputedStyleDeclaration(PassRefPtr<Node>); 72 RefPtr<Node> m_node; 75 inline PassRefPtr<CSSComputedStyleDeclaration> computedStyle(PassRefPtr<Node> node) 77 return adoptRef(new CSSComputedStyleDeclaration(node));
|
/external/webkit/WebCore/inspector/front-end/ |
DOMSyntaxHighlighter.js | 45 syntaxHighlightNode: function(node) 48 var lines = node.textContent.split("\n"); 49 node.removeChildren(); 62 node.appendChild(document.createTextNode(plainText)); 65 node.appendChild(this.createSpan(token, tokenType)); 73 node.appendChild(document.createTextNode(plainText)); 76 node.appendChild(document.createElement("br"));
|
/external/webkit/WebCore/platform/graphics/android/ |
PlatformGraphicsContext.cpp | 27 #include "Node.h" 51 void PlatformGraphicsContext::storeButtonInfo(Node* node, const IntRect& r) 55 // Check to see if we already have a Container for this node. If so, update 60 if (ptr->matches(node)) { 66 // We did not have a Container representing this node, so create a new one. 67 Container container(node, r);
|
/external/webkit/WebCore/xml/ |
XSLTProcessor.h | 28 #include "Node.h" 49 bool transformToString(Node* source, String& resultMIMEType, String& resultString, String& resultEncoding); 50 PassRefPtr<Document> createDocumentFromSource(const String& source, const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, Frame* frame); 53 void importStylesheet(PassRefPtr<Node> style) { m_stylesheetRootNode = style; } 54 PassRefPtr<DocumentFragment> transformToFragment(Node* source, Document* ouputDoc); 55 PassRefPtr<Document> transformToDocument(Node* source); 78 RefPtr<Node> m_stylesheetRootNode;
|
/external/webkit/WebKit/chromium/src/ |
WebEventListenerPrivate.cpp | 48 EventListenerWrapper* WebEventListenerPrivate::createEventListenerWrapper(const WebString& eventType, bool useCapture, Node* node)
51 WebEventListenerPrivate::ListenerInfo listenerInfo(eventType, useCapture, listenerWrapper, node);
56 EventListenerWrapper* WebEventListenerPrivate::getEventListenerWrapper(const WebString& eventType, bool useCapture, Node* node)
60 if (iter->node == node)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/resources/descriptors/ |
ItemElementDescriptor.java | 34 * @param xml_name The XML element node name. Case sensitive. 40 * @param mandatory Whether this node must always exist (even for empty models). A mandatory 41 * UI node is never deleted and it may lack an actual XML node attached. A non-mandatory 42 * UI node MUST have an XML node attached and it will cease to exist when the XML node
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ |
PropertiesTableModel.java | 29 public PropertiesTableModel(ViewNode node) { 30 properties = node.properties; 31 loadPrivateProperties(node); 34 private void loadPrivateProperties(ViewNode node) { 35 int x = node.left; 36 int y = node.top; 37 ViewNode p = node.parent;
|
/dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_nodeinsertbeforenewchildexists.java | 35 * Insert a node Element ("em") that is already 36 * present in the tree. The existing node should be 37 * removed first and the new one inserted. The node is 68 Node employeeNode; 70 Node refChild; 71 Node newChild; 72 Node child; 74 Node insertedNode; 89 childList = ((Element) /*Node */employeeNode).getElementsByTagName("*"); 94 child = (Node) childList.item(indexN1008C) [all...] |