Lines Matching refs:children_
228 cl->children_ = NULL; in rmc_newclass()
323 cl->next_ = parent->children_; in rmc_newclass()
324 parent->children_ = cl; in rmc_newclass()
496 if ((t = p->children_) == NULL) { in rmc_depth_recompute()
520 if (cl->children_ == NULL) { in rmc_depth_recompute()
522 } else if ((t = cl->children_) != NULL) { in rmc_depth_recompute()
524 if (t->children_ != NULL) in rmc_depth_recompute()
549 ASSERT(cl->children_ == NULL); in rmc_delete_class()
568 head = cl->parent_->children_; in rmc_delete_class()
572 cl->parent_->children_ = NULL; in rmc_delete_class()
577 cl->parent_->children_ = cl->next_; in rmc_delete_class()
854 if (cl->children_ != NULL) { in rmc_satisfied()
855 p = cl->children_; in rmc_satisfied()