Lines Matching refs:children
565 const Label *children = root_children_;
566 const Label *loc = lower_bound(children, children + root_num_children_,
568 if (loc == children + root_num_children_ || *loc != future) {
571 size_t node = root_first_child_ + loc - children;
579 children = context_words_ + context_index_.Rank1(first_child);
580 loc = lower_bound(children, children + last_child - first_child + 1,
582 if (loc == children + last_child - first_child + 1 ||
586 node = first_child + loc - children;
602 const Label *children = root_children_;
603 const Label *loc = lower_bound(children, children + root_num_children_, *cit);
604 if (loc == children + root_num_children_ || *loc != *cit) return;
605 size_t node = root_first_child_ + loc - children;
614 children = context_words_ + context_index_.Rank1(first_child);
615 loc = lower_bound(children, children + last_child - first_child + 1,
617 if (loc == children + last_child - first_child + 1 || *loc != *cit) {
621 node = first_child + loc - children;