Home
last modified time | relevance | path

Searched refs:current_children (Results 1 – 2 of 2) sorted by relevance

/external/icing/icing/result/
Dprojection-tree.cc36 std::string_view property_name, std::vector<Node>* current_children) { in AddChildNode() argument
37 auto itr = std::find_if(current_children->begin(), current_children->end(), in AddChildNode()
41 if (itr != current_children->end()) { in AddChildNode()
44 current_children->push_back(ProjectionTree::Node(property_name)); in AddChildNode()
45 return &current_children->back(); in AddChildNode()
Dprojection-tree.h46 std::vector<Node>* current_children);