| /external/tinyxml/ |
| xmltest.cpp | 149 TiXmlNode* node = 0; local 161 node = doc.FirstChild( "ToDo" ); 162 assert( node ); 163 todoElement = node->ToElement(); 168 node = todoElement->FirstChildElement(); // This skips the "PDA" comment. 169 assert( node ); 170 itemElement = node->ToElement(); 222 // And add the node to the existing list after the first child. 223 node = todoElement->FirstChild( "Item" ); 224 assert( node ); 882 TiXmlNode* node = docH.Child( 2 ).Node(); local [all...] |
| /external/v8/src/ |
| codegen.cc | 301 Declaration* node = declarations->at(i); local 302 Variable* var = node->proxy()->var(); 309 VisitDeclaration(node); 322 Declaration* node = declarations->at(i); local 323 Variable* var = node->proxy()->var(); 330 if (node->fun() == NULL) { 339 Compiler::BuildBoilerplate(node->fun(), script(), this); 401 bool CodeGenerator::CheckForInlineRuntimeCall(CallRuntime* node) { 402 ZoneList<Expression*>* args = node->arguments(); 403 Handle<String> name = node->name() [all...] |
| global-handles.cc | 36 class GlobalHandles::Node : public Malloced { 47 Node() { 51 explicit Node(Object* object) { 57 ~Node() { 78 Node* next() { return next_; } 79 void set_next(Node* value) { next_ = value; } 80 Node** next_addr() { return &next_; } 82 // Accessors for next free node in the free list. 83 Node* next_free() { 87 void set_next_free(Node* value) 385 Node* node = *p; local [all...] |
| /external/webkit/WebCore/css/ |
| CSSComputedStyleDeclaration.cpp | 510 CSSComputedStyleDeclaration::CSSComputedStyleDeclaration(PassRefPtr<Node> n) 549 Node* node = m_node.get(); local 550 if (!node) 553 node->document()->updateLayoutIgnorePendingStylesheets(); 555 RefPtr<RenderStyle> style = node->computedStyle(); 662 Node* node = m_node.get(); local 663 if (!node) 668 node->document()->updateLayoutIgnorePendingStylesheets() 1511 Node* node = m_node.get(); local [all...] |
| /external/webkit/WebCore/dom/ |
| ContainerNode.cpp | 46 static void dispatchChildInsertionEvents(Node*); 47 static void dispatchChildRemovalEvents(Node*); 49 typedef Vector<std::pair<NodeCallback, RefPtr<Node> > > NodeCallbackQueue; 57 removeAllChildrenInContainer<Node, ContainerNode>(this); 65 bool ContainerNode::insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode& ec, bool shouldLazyAttach) 67 // Check that this node is not "floating". 73 // insertBefore(node, 0) is equivalent to appendChild(node) 82 // NOT_FOUND_ERR: Raised if refChild is not a child of this node 572 Node* node = pair.second.get(); local [all...] |
| /external/webkit/WebCore/inspector/ |
| InspectorBackend.cpp | 288 // FIXME: explicitly pass injectedScriptId along with node id to the frontend. 340 Node* node = nodeForId(nodeId); local 341 if (!node) 343 String markup = createMarkup(node); 353 Node* node = nodeForId(nodeId); 354 if (!node) { 360 Node* parentNode = node->parentNode() [all...] |
| /external/webkit/WebCore/rendering/ |
| RenderTheme.cpp | 672 Node* node = o->node(); local 673 if (!node) 676 Frame* frame = node->document()->frame(); 689 if (!o->node() || !o->node()->isElementNode()) 692 InputElement* inputElement = toInputElement(static_cast<Element*>(o->node())); 701 if (!o->node() || !o->node()->isElementNode() 713 Node* node = o->node(); local 721 Node* node = o->node(); local 738 Node* node = o->node(); local [all...] |
| /external/webkit/WebCore/svg/ |
| SVGUseElement.cpp | 289 Node* parentNode = shadowRoot->parentNode(); 379 static bool isDisallowedElement(Node* element) 394 static bool subtreeContainsDisallowedElement(Node* start) 399 for (Node* cur = start->firstChild(); cur; cur = cur->nextSibling()) { 441 Node* parent = parentNode(); 466 // Build instance tree. Create root SVGElementInstance object for the first sub-tree node. 554 static void updateFromElementCallback(Node* node) 556 if (RenderObject* renderer = node->renderer()) 574 static bool isDirectReference(Node* n 681 Node* node = subtree->firstChild(); local 896 Node* node = target->firstChild(); local [all...] |
| /external/webkit/WebKit/wx/WebKitSupport/ |
| EditorClientWx.cpp | 225 bool EditorClientWx::shouldInsertNode(Node*, Range*, 375 Node* node = event->target()->toNode(); local 376 ASSERT(node); 377 Frame* frame = node->document()->frame();
|
| /frameworks/base/libs/binder/ |
| MemoryDealer.cpp | 48 template <typename NODE> 51 NODE* mFirst; 52 NODE* mLast; 57 NODE const* head() const { return mFirst; } 58 NODE* head() { return mFirst; } 59 NODE const* tail() const { return mLast; } 60 NODE* tail() { return mLast; } 62 void insertAfter(NODE* node, NODE* newNode) 273 chunk_t* node = new chunk_t(0, mHeapSize \/ kMemoryAlign); local [all...] |
| /frameworks/base/media/libstagefright/omx/ |
| OMX.cpp | 108 LOGV("Would have dispatched a message to a node that's already gone."); 213 const char *name, const sp<IOMXObserver> &observer, node_id *node) { 216 *node = 0; 233 *node = makeNodeID(instance); 234 mDispatchers.add(*node, new CallbackDispatcher(instance)); 236 instance->setHandle(*node, handle); 244 status_t OMX::freeNode(node_id node) { 245 OMXNodeInstance *instance = findInstance(node); 257 index = mDispatchers.indexOfKey(node); 266 node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param) 402 node_id node = (node_id)++mNodeCounter; local [all...] |
| /frameworks/base/tools/localize/ |
| XLIFFFile.cpp | 108 XMLNode* node = source->Clone(); local 109 node->SetPrettyRecursive(XMLNode::EXACT); 111 sourceConfig, id, index, node, CURRENT_VERSION, 118 XMLNode* node = target->Clone(); local 119 node->SetPrettyRecursive(XMLNode::EXACT); 121 targetConfig, id, index, node, CURRENT_VERSION, 131 XMLNode* node = altSource->Clone(); local 132 node->SetPrettyRecursive(XMLNode::EXACT); 134 originalFile, sourceConfig, id, index, node, OLD_VERSION, 141 XMLNode* node = altTarget->Clone() local 425 XMLNode* node = XMLNode::NewElement(str.pos, XLIFF_XMLNS, name, attrs, XMLNode::EXACT); local [all...] |
| XMLHandler.cpp | 211 XMLNode* node = new XMLNode(); local 212 node->m_type = ELEMENT; 213 node->m_pretty = pretty; 214 node->m_pos = pos; 215 node->m_ns = ns; 216 node->m_name = name; 217 node->m_attrs = attrs; 218 return node; 224 XMLNode* node = new XMLNode(); local 225 node->m_type = TEXT [all...] |
| /libcore/luni/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...] |
| 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...] |
| /libcore/luni/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...] |
| /packages/apps/Mms/src/com/android/mms/ui/ |
| SlideshowActivity.java | 32 import org.w3c.dom.Node; 90 Node layout = children.item(0); 106 Node layoutChild = layoutChildren.item(i); 117 Node node = map.item(j); local 118 if (node == null) { 121 String attrName = node.getNodeName(); 129 if (node instanceof AttrImpl) { 130 value = ((AttrImpl)node).getValue();
|
| /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/pat_trie_/ |
| pat_trie_.hpp | 130 typedef typename Node_And_It_Traits::node node; typedef in class:__gnu_pbds::detail::PB_DS_CLASS_NAME 131 typedef typename Allocator::template rebind<node>::other::const_pointer const_node_pointer; 133 typedef typename Allocator::template rebind<node>::other::pointer node_pointer;
|
| /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/ |
| typelist.h | 56 struct node struct in namespace:typelist 250 typedef typename append<Hd, node<rest_type> >::type::root type; 357 typedef append<Hd_Typelist, node<rest_type> > append_type; 421 typedef node<typename append_type::type> type; 432 typedef node<typename append_type::type> type; 456 typedef node<typename filter_type::type> type; 478 typedef node<typename transform_type::type> type; 489 typedef node<flatten_type> type; 499 typedef node<chain<first_type, null_type> > type; 505 typedef node<_GLIBCXX_TYPELIST_CHAIN1(T1)> type [all...] |
| /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
| tipc.h | 48 __u32 node; member in struct:tipc_portid 64 unsigned int node) 66 return (zone << 24) | (cluster << 12) | node;
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/ |
| device.h | 136 struct list_head node; member in struct:class_device 155 struct list_head node; member in struct:class_interface 200 struct list_head node; member in struct:device
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/mmc/ |
| card.h | 54 struct list_head node; member in struct:mmc_card 87 #define mmc_list_to_card(l) container_of(l, struct mmc_card, node)
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/ |
| device.h | 136 struct list_head node; member in struct:class_device 155 struct list_head node; member in struct:class_interface 200 struct list_head node; member in struct:device
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/mmc/ |
| card.h | 54 struct list_head node; member in struct:mmc_card 87 #define mmc_list_to_card(l) container_of(l, struct mmc_card, node)
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/ |
| device.h | 136 struct list_head node; member in struct:class_device 155 struct list_head node; member in struct:class_interface 200 struct list_head node; member in struct:device
|