HomeSort by relevance Sort by last modified time
    Searched refs:cur_node (Results 1 - 8 of 8) 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/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...]
  /external/selinux/libsepol/src/
hierarchy.c 270 cond_list_t *cur_node; local
277 for (cur_node = cond_list; cur_node; cur_node = cur_node->next) {
282 if (expand_cond_av_list(args->p, cur_node->true_list,
285 if (expand_cond_av_list(args->p, cur_node->false_list,
334 cond_list_t *cur_node; local
340 for (cur_node = cond_list; cur_node; cur_node = cur_node->next)
    [all...]
expand.c 2802 cond_node_t *cur_node; local
    [all...]
  /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/v8/src/heap/
spaces.cc 2252 FreeListNode* cur_node = *cur; local
    [all...]
  /external/libxml2/
xmlreader.c 1702 xmlNodePtr node, cur_node; local
    [all...]

Completed in 677 milliseconds