HomeSort by relevance Sort by last modified time
    Searched refs:cur_node (Results 1 - 16 of 16) sorted by null

  /external/libxml2/doc/examples/
tree1.c 33 xmlNode *cur_node = NULL; local
35 for (cur_node = a_node; cur_node; cur_node = cur_node->next) {
36 if (cur_node->type == XML_ELEMENT_NODE) {
37 printf("node type: Element, name: %s\n", cur_node->name);
40 print_element_names(cur_node->children);
  /external/v8/src/
locked-queue-inl.h 34 Node* cur_node = head_; local
35 while (cur_node != nullptr) {
36 old_node = cur_node;
37 cur_node = cur_node->next.Value();
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_deadlock_detector.h 206 bool onLockBefore(DeadlockDetectorTLS<BV> *dtls, uptr cur_node) {
208 uptr cur_idx = nodeToIndex(cur_node);
216 // Add cur_node to the set of locks held currently by dtls.
217 void onLockAfter(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) {
219 uptr cur_idx = nodeToIndex(cur_node);
224 // Returns true if all edges from the currently held locks to cur_node exist.
225 bool hasAllEdges(DeadlockDetectorTLS<BV> *dtls, uptr cur_node) {
228 if (cur_node && local_epoch == current_epoch_ &&
229 local_epoch == nodeToEpoch(cur_node)) {
230 uptr cur_idx = nodeToIndexUnchecked(cur_node);
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
mcparse.y 39 static mc_node *cur_node = NULL;
77 cur_node = mc_add_node ();
78 cur_node->user_text = $1;
178 cur_node = mc_add_node ();
179 cur_node->symbol = mc_last_symbol;
180 cur_node->facility = mc_cur_facility;
181 cur_node->severity = mc_cur_severity;
182 cur_node->id = ($1 & 0xffffUL);
183 cur_node->vid = ($1 & 0xffffUL) | mc_sefa_val;
269 h = mc_add_node_lang (cur_node, $1, cur_node->vid)
    [all...]
  /external/ltp/utils/ffsb-6.0-rc2/
rbt.c 284 rb_node *cur_node; local
304 cur_node = tree->root;
309 while (cur_node) {
313 comp_result = COMP_NODES(object, cur_node->object);
321 if (!(cur_node->left)) {
325 cur_node->left = new_node;
326 new_node->parent = cur_node;
327 cur_node = NULL; /* Terminate the while loop */
330 cur_node = cur_node->left
627 rb_node *cur_node = tree->root; local
    [all...]
  /external/syslinux/core/lwip/src/core/snmp/
mib_structs.c 741 struct nse cur_node; local
753 cur_node.r_ptr = an->nptr[j];
754 cur_node.r_id = an->objid[j];
755 cur_node.r_nl = 0;
759 cur_node.r_ptr = NULL;
761 push_node(&cur_node);
859 struct nse cur_node; local
869 cur_node.r_ptr = jn->nptr;
870 cur_node.r_id = jn->objid;
871 cur_node.r_nl = 0
984 struct nse cur_node; local
    [all...]
  /system/libufdt/
ufdt_convert.c 239 struct ufdt_node *cur_node = it; local
241 cur_node->sibling = NULL;
243 if (tag_of(cur_node) == FDT_BEGIN_NODE) {
244 target_node = ufdt_node_get_subnode_by_name(node_a, name_of(cur_node));
246 target_node = ufdt_node_get_property_by_name(node_a, name_of(cur_node));
249 err = ufdt_node_add_child(node_a, cur_node);
251 err = merge_ufdt_into(target_node, cur_node);
252 dto_free(cur_node);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
pulldom.py 244 token, cur_node = event
245 if cur_node is node:
248 parents[-1].appendChild(cur_node)
250 parents.append(cur_node)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
pulldom.py 244 token, cur_node = event
245 if cur_node is node:
248 parents[-1].appendChild(cur_node)
250 parents.append(cur_node)
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/
pulldom.py 244 token, cur_node = event
245 if cur_node is node:
248 parents[-1].appendChild(cur_node)
250 parents.append(cur_node)
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/
pulldom.py 244 token, cur_node = event
245 if cur_node is node:
248 parents[-1].appendChild(cur_node)
250 parents.append(cur_node)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
pulldom.py 244 token, cur_node = event
245 if cur_node is node:
248 parents[-1].appendChild(cur_node)
250 parents.append(cur_node)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
pulldom.py 244 token, cur_node = event
245 if cur_node is node:
248 parents[-1].appendChild(cur_node)
250 parents.append(cur_node)
  /external/selinux/libsepol/src/
expand.c 2851 cond_node_t *cur_node; local
    [all...]
  /external/v8/src/heap/
spaces.cc     [all...]
  /external/libxml2/
xmlreader.c 1702 xmlNodePtr node, cur_node; local
    [all...]

Completed in 613 milliseconds