/external/webkit/WebCore/dom/ |
Position.h | 31 #include "Node.h" // for position creation functions 41 class Node; 71 // For creating legacy editing positions: (Anchor type will be determined from editingIgnoresContent(node)) 72 Position(PassRefPtr<Node> anchorNode, int offset); 75 Position(PassRefPtr<Node> anchorNode, AnchorType); 77 Position(PassRefPtr<Node> anchorNode, int offset, AnchorType); 85 Node* containerNode() const; // NULL for a before/after position anchored to a node with no parent 103 Node* computeNodeBeforePosition() const; 104 Node* computeNodeAfterPosition() const 111 Node* node() const { return m_anchorNode.get(); } function in class:WebCore::Position [all...] |
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.idl | 27 readonly attribute Node root; 31 attribute Node currentNode 34 [Custom] Node parentNode(); 35 [Custom] Node firstChild(); 36 [Custom] Node lastChild(); 37 [Custom] Node previousSibling(); 38 [Custom] Node nextSibling(); 39 [Custom] Node previousNode(); 40 [Custom] Node nextNode();
|
DynamicNodeList.h | 36 class Node; 45 Node* lastItem; 59 virtual Node* item(unsigned index) const; 60 virtual Node* itemWithName(const AtomicString&) const; 66 DynamicNodeList(PassRefPtr<Node> rootNode); 67 DynamicNodeList(PassRefPtr<Node> rootNode, Caches*); 71 RefPtr<Node> m_rootNode; 76 Node* itemForwardsFromCurrent(Node* start, unsigned offset, int remainingOffset) const; 77 Node* itemBackwardsFromCurrent(Node* start, unsigned offset, int remainingOffset) const [all...] |
/frameworks/base/awt/javax/imageio/metadata/ |
IIOInvalidTreeException.java | 20 import org.w3c.dom.Node; 32 * The offending node. 34 protected Node offendingNode = null; 38 * message and specified offending Node. 43 * the offending node. 45 public IIOInvalidTreeException(String message, Node offendingNode) { 52 * message and specified offending Node. 59 * the offending node. 61 public IIOInvalidTreeException(String message, Throwable cause, Node offendingNode) { 67 * Gets the offending node [all...] |
/external/webkit/WebCore/page/ |
FocusController.cpp | 61 // If we have a focused node we should dispatch blur on it before we blur the window. 62 // If we have a focused node we should dispatch focus on it after we focus the window. 125 static Node* deepFocusableNode(FocusDirection direction, Node* node, KeyboardEvent* event) 127 // The node we found might be a HTMLFrameOwnerElement, so descend down the frame tree until we find either: 128 // 1) a focusable node, or 130 while (node && node->isFrameOwnerElement()) { 131 HTMLFrameOwnerElement* owner = static_cast<HTMLFrameOwnerElement*>(node); 169 Node* node = (direction == FocusDirectionForward) local [all...] |
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
tree.h | 176 /* Returns nonzero iff NODE is an expression of some kind. */ 178 #define EXPR_P(NODE) IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (NODE))) 180 /* Number of argument-words in each kind of tree-node. */ 266 /* In an OMP_CLAUSE node. */ 335 /* A tree node can represent a data type, a variable, an expression 336 or a statement. Each node has a TREE_CODE which says what kind of 344 As for the contents of a tree node: there are some fields 346 fields as well. The fields of a node are never accessed directly, 349 /* Every kind of tree node starts with this structure [all...] |
/bionic/libc/kernel/common/asm-generic/ |
topology.h | 19 #define parent_node(node) (0) 22 #define node_to_cpumask(node) (cpu_online_map) 25 #define node_to_first_cpu(node) (0) 28 #define pcibus_to_node(node) (-1)
|
/external/clearsilver/man/man3/ |
hdf_get_value.3 | 14 hdf_get_value - Return the value of a node in the data set 25 hdf -> the dataset node to start from 29 defval -> the default value to return if the node doesn't 36 defval if the node doesn't exist
|
hdf_obj_top.3 | 14 hdf_obj_top - Return the pointer to the top dataset node 25 hdf -> the hdf dataset node 29 pointer to the top of the dataset, the node which was 32 nodes are tied garbage colletion wise to the top node of
|
/external/oprofile/libdb/ |
db_insert.c | 24 odb_node_t * node; local 38 node = &data->node_base[new_node]; 39 node->value = value; 40 node->key = key; 43 node->next = data->hash_base[index]; 62 odb_node_t * node; local 68 node = &data->node_base[index]; 69 if (node->key == key) { 70 if (node->value + offset != 0) { 71 node->value += offset [all...] |
/external/webkit/WebCore/manual-tests/ |
svg-node-count-vs-scroll.xhtml | 6 <title>SVG Scrolling Performance depends on #node is Safari?</title> 19 var node = document.createElementNS(SVG_NS, 'rect'); 20 node.setAttribute('x', i); 21 node.setAttribute('y', i); 22 node.setAttribute('width', 1); 23 node.setAttribute('height', i); 24 node.setAttribute('fill', 'red'); 26 svgRoot.appendChild(node); 39 <h1>SVG Scrolling Performance depends on #node is Safari?</h1>
|
/ndk/build/platforms/android-3/arch-arm/usr/include/asm-generic/ |
topology.h | 19 #define parent_node(node) (0) 22 #define node_to_cpumask(node) (cpu_online_map) 25 #define node_to_first_cpu(node) (0) 28 #define pcibus_to_node(node) (-1)
|
/ndk/build/platforms/android-4/arch-arm/usr/include/asm-generic/ |
topology.h | 19 #define parent_node(node) (0) 22 #define node_to_cpumask(node) (cpu_online_map) 25 #define node_to_first_cpu(node) (0) 28 #define pcibus_to_node(node) (-1)
|
/ndk/build/platforms/android-5/arch-arm/usr/include/asm-generic/ |
topology.h | 19 #define parent_node(node) (0) 22 #define node_to_cpumask(node) (cpu_online_map) 25 #define node_to_first_cpu(node) (0) 28 #define pcibus_to_node(node) (-1)
|
/ndk/build/platforms/android-5/arch-x86/usr/include/asm-generic/ |
topology.h | 19 #define parent_node(node) (0) 22 #define node_to_cpumask(node) (cpu_online_map) 25 #define node_to_first_cpu(node) (0) 28 #define pcibus_to_node(node) (-1)
|
/ndk/build/platforms/android-8/arch-arm/usr/include/asm-generic/ |
topology.h | 19 #define parent_node(node) (0) 22 #define node_to_cpumask(node) (cpu_online_map) 25 #define node_to_first_cpu(node) (0) 28 #define pcibus_to_node(node) (-1)
|
/ndk/build/platforms/android-8/arch-x86/usr/include/asm-generic/ |
topology.h | 19 #define parent_node(node) (0) 22 #define node_to_cpumask(node) (cpu_online_map) 25 #define node_to_first_cpu(node) (0) 28 #define pcibus_to_node(node) (-1)
|
/dalvik/libcore/xml/src/test/java/tests/xml/ |
NodeTest.java | 23 import org.w3c.dom.Node; 34 @TestTargetClass(Node.class) 38 * For bug 779: Node#getNextSibling throws IndexOutOfBoundsException. 45 Node root = document.getDocumentElement(); 57 for (Node node : flattenSubtree(documentElement)) { 58 if (node.getNodeType() == Node.ELEMENT_NODE 59 || node.getNodeType() == Node.DOCUMENT_NODE) [all...] |
/external/bluetooth/glib/gio/xdgmime/ |
xdgmimeglob.c | 173 XdgGlobHashNode *node; local 181 node = _xdg_glob_hash_node_new (); 182 node->character = character; 183 node->next = glob_hash_node; 184 glob_hash_node = node; 188 node = glob_hash_node; 198 node = prev_node->next; 200 while (node != NULL) 202 if (character < node->character) 204 node = _xdg_glob_hash_node_new () 283 XdgGlobHashNode *node; local 308 XdgGlobHashNode *node; local [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xpath/ |
NodeSet.java | 29 import org.w3c.dom.Node; 126 * Create a NodeSet which contains the given Node. 128 * @param node Single node to be added to the new set. 130 public NodeSet(Node node) 135 addNode(node); 139 * @return The root node of the Iterator, as specified when it was created. 142 public Node getRoot() 176 * This attribute determines which node types are presented via th 526 Node node = nodelist.item(i); local 550 Node node; local 580 Node node = nodelist.item(testIndex); local 1205 Node node = m_map[i]; local 1304 Node node = m_map[i]; local 1333 Node node = m_map[i]; local 1361 Node node = m_map[i]; local [all...] |
/cts/tools/host/src/com/android/cts/ |
XMLResourceHandler.java | 31 import org.w3c.dom.Node; 39 protected String getElementContent(Node elem) { 44 * Get string from DOM node by attribute name. 46 * @param elem a node from DOM tree. 48 * @return string value of the attribute name from the DOM node. 50 static public String getStringAttributeValue(Node elem, String attrName) { 51 Node node = elem.getAttributes().getNamedItem(attrName); local 52 if (node == null) { 55 return node.getNodeValue().trim() [all...] |
/dalvik/libcore/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...] |
/external/webkit/JavaScriptCore/API/tests/ |
JSNode.c | 31 #include "Node.h" 46 JSStringRef message = JSStringCreateWithUTF8CString("TypeError: first argument to appendChild must be a node"); 50 Node* node = JSObjectGetPrivate(thisObject); local 51 Node* child = JSObjectGetPrivate(JSValueToObject(context, arguments[0], NULL)); 53 Node_appendChild(node, child); 67 Node* node = JSObjectGetPrivate(thisObject); local 68 Node* child = JSObjectGetPrivate(JSValueToObject(context, arguments[0], exception)); 70 Node_removeChild(node, child) 86 Node* node = JSObjectGetPrivate(thisObject); local 111 Node* node = JSObjectGetPrivate(object); local 127 Node* node = JSObjectGetPrivate(thisObject); local 152 Node* node = JSObjectGetPrivate(object); local 160 Node* node = JSObjectGetPrivate(object); local [all...] |
/external/webkit/WebCore/svg/ |
SVGGlyphMap.h | 54 RefPtr<GlyphMapNode> node; local 57 node = currentLayer->get(curChar); 58 if (!node) { 59 node = GlyphMapNode::create(); 60 currentLayer->set(curChar, node); 62 currentLayer = &node->children; 65 if (node) { 66 node->glyphs.append(glyph); 67 node->glyphs.last().priority = m_currentPriority++; 68 node->glyphs.last().nameLength = len 84 RefPtr<GlyphMapNode> node = currentLayer->get(curChar); local [all...] |