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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/kernel/common/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
attribute_container.h 21 struct list_head node; member in struct:attribute_container
  /development/ndk/platforms/android-3/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
attribute_container.h 21 struct list_head node; member in struct:attribute_container
  /external/v8/test/cctest/
test-ast.cc 42 AstNode* node = new EmptyStatement(); local
43 list->Add(node);
45 CHECK_EQ(node, list->at(0));
46 CHECK_EQ(node, list->last());
50 list->Add(node);
  /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;
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  /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;
  /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());
JSTreeWalkerCustom.cpp 24 #include "Node.h"
42 Node* node = impl()->parentNode(exec); local
45 return toJS(exec, node);
50 Node* node = impl()->firstChild(exec); local
53 return toJS(exec, node);
58 Node* node = impl()->lastChild(exec); local
61 return toJS(exec, node);
66 Node* node = impl()->nextSibling(exec); local
74 Node* node = impl()->previousSibling(exec); local
82 Node* node = impl()->previousNode(exec); local
90 Node* node = impl()->nextNode(exec); local
    [all...]
  /external/webkit/WebCore/css/
SVGCSSComputedStyleDeclaration.cpp 51 Node* node = m_node.get(); local
52 if (!node)
57 node->document()->updateLayout();
59 RenderStyle* style = node->computedStyle();
  /external/webkit/WebCore/page/
MouseEventWithHitTestResults.cpp 24 #include "Node.h"
36 Node* MouseEventWithHitTestResults::targetNode() const
38 Node* node = m_hitTestResult.innerNode(); local
39 if (!node)
41 if (node->inDocument())
42 return node;
44 Element* element = node->parentElement();
48 return node;
  /external/clearsilver/util/test/
hash_test.c 11 NE_HASHNODE *node; local
16 ne_warn("Node %d", x);
17 for (node = hash->nodes[x]; node; node = node->next)
19 ne_warn(" %s = %s [%8x | %d]", node->key, node->value, node->hashv, node->hashv & (hash->size - 1))
    [all...]
  /external/e2fsprogs/lib/uuid/
uuidP.h 55 uint8_t node[6]; member in struct:uuid
  /external/kernel-headers/original/linux/
attribute_container.h 18 struct list_head node; member in struct:attribute_container
node.h 2 * include/linux/node.h - generic node definition
5 * basic 'struct node' here, which can be embedded in per-arch
8 * Basic handling of the devices is done in drivers/base/node.c
11 * Nodes are exported via driverfs in the class/node/devices/
14 * Per-node interfaces can be implemented using a struct device_interface.
25 struct node { struct
29 extern struct node node_devices[];
31 extern int register_node(struct node *, int, struct node *);
    [all...]
  /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/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/JavaScriptCore/API/tests/
Node.c 26 #include "Node.h"
30 Node* Node_new(void)
32 Node* node = (Node*)malloc(sizeof(Node)); local
33 node->refCount = 0;
34 node->nodeType = "Node";
35 node->childNodesTail = NULL
    [all...]
Node.h 29 typedef struct __Node Node;
33 Node* node; member in struct:__NodeLink
43 extern Node* Node_new(void);
44 extern void Node_ref(Node* node);
45 extern void Node_deref(Node* node);
46 extern void Node_appendChild(Node* node, Node* child)
    [all...]

Completed in 1092 milliseconds

1 2 3 4 5 6 7 8 91011>>