Lines Matching full:nodes
62 findHelper("", this->nodes[node.stringParamChild], params); in findHelper()
74 this->nodes[node.stringParamChild], params); in findHelper()
87 findHelper("", this->nodes[node.pathParamChild], params); in findHelper()
99 const ContainedType& child = this->nodes[kv.second]; in findHelper()
162 if (this->nodes[idx].pathParamChild == 0U) in add()
165 this->nodes[idx].pathParamChild = newNodeIdx; in add()
167 idx = this->nodes[idx].pathParamChild; in add()
171 if (this->nodes[idx].stringParamChild == 0U) in add()
174 this->nodes[idx].stringParamChild = newNodeIdx; in add()
176 idx = this->nodes[idx].stringParamChild; in add()
191 if (!this->nodes[idx].children.contains(piece)) in add()
194 this->nodes[idx].children.emplace(piece, newNodeIdx); in add()
196 idx = this->nodes[idx].children[piece]; in add()
199 ContainedType& node = this->nodes[idx]; in add()
220 debugNodePrint(this->nodes[n.stringParamChild], level + 5); in debugNodePrint()
225 debugNodePrint(this->nodes[n.pathParamChild], level + 6); in debugNodePrint()
236 debugNodePrint(this->nodes[kv.second], level + kv.first.size()); in debugNodePrint()