HomeSort by: relevance | last modified time | path
    Searched refs:descendants (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/utils/analyzer/
SATestUtils.py 96 descendants = list(process.children(recursive=True))
97 descendants.append(process)
99 for subprocess in descendants:
  /src/external/gpl3/gcc/dist/gcc/
vtable-verify.h 71 'children' means immediate descendants in the class hierarchy;
88 sbitmap descendants; /* Bitmap representing all this node's member in struct:vtv_graph_node
89 descendants in the graph. */
  /src/external/gpl3/gcc.old/dist/gcc/
vtable-verify.h 71 'children' means immediate descendants in the class hierarchy;
88 sbitmap descendants; /* Bitmap representing all this node's member in struct:vtv_graph_node
89 descendants in the graph. */
  /src/external/gpl3/binutils/dist/gprofng/src/
PathTree.cc 52 #define NUM_DESCENDANTS(nd) ((nd)->descendants ? (nd)->descendants->size() : 0)
53 #define IS_LEAF(nd) ((nd)->descendants == NULL)
151 // For each node free its descendants vector
156 if (node->descendants)
157 delete node->descendants;
352 node->descendants = leaf ? (Vector<NodeIdx>*)NULL : new Vector<NodeIdx>(2);
462 node->descendants->append (dsc_idx);
517 NodeIdx dsc_idx = node->descendants->fetch (index);
534 node->descendants->insert (left, dsc_idx)
    [all...]
PathTree.h 93 descendants = NULL;
99 Vector<NodeIdx> *descendants; member in struct:PathTree::Node
  /src/external/gpl3/binutils.old/dist/gprofng/src/
PathTree.cc 52 #define NUM_DESCENDANTS(nd) ((nd)->descendants ? (nd)->descendants->size() : 0)
53 #define IS_LEAF(nd) ((nd)->descendants == NULL)
151 // For each node free its descendants vector
156 if (node->descendants)
157 delete node->descendants;
352 node->descendants = leaf ? (Vector<NodeIdx>*)NULL : new Vector<NodeIdx>(2);
462 node->descendants->append (dsc_idx);
517 NodeIdx dsc_idx = node->descendants->fetch (index);
534 node->descendants->insert (left, dsc_idx)
    [all...]
PathTree.h 93 descendants = NULL;
99 Vector<NodeIdx> *descendants; member in struct:PathTree::Node
  /src/external/gpl3/gcc/dist/gcc/cp/
vtable-class-hierarchy.cc 373 classes that are descendants in the graph of the current node.
374 Initially the descendants bitmap is only set for immediate
375 descendants. This function traverses the class hierarchy graph,
376 bottom up, filling in the transitive closures for the descendants
415 temp_node->descendants = sbitmap_alloc (num_vtable_map_nodes);
416 bitmap_clear (temp_node->descendants);
417 bitmap_set_bit (temp_node->descendants, temp_node->class_uid);
419 bitmap_ior (temp_node->descendants, temp_node->descendants,
420 temp_node->children[i]->descendants);
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
vtable-class-hierarchy.cc 373 classes that are descendants in the graph of the current node.
374 Initially the descendants bitmap is only set for immediate
375 descendants. This function traverses the class hierarchy graph,
376 bottom up, filling in the transitive closures for the descendants
415 temp_node->descendants = sbitmap_alloc (num_vtable_map_nodes);
416 bitmap_clear (temp_node->descendants);
417 bitmap_set_bit (temp_node->descendants, temp_node->class_uid);
419 bitmap_ior (temp_node->descendants, temp_node->descendants,
420 temp_node->children[i]->descendants);
    [all...]

Completed in 38 milliseconds