Lines Matching full:node
18 struct SubRouteNode : public crow::Node
20 using ChildMap = crow::Node::ChildMap;
25 return crow::Node::isSimpleNode() && fragmentChildren.empty(); in isSimpleNode()
41 const ContainedType& node, in findHelper() argument
48 node.fragmentChildren) in findHelper()
55 if (node.stringParamChild != 0U) in findHelper()
62 findHelper("", this->nodes[node.stringParamChild], params); in findHelper()
74 this->nodes[node.stringParamChild], params); in findHelper()
83 if (node.pathParamChild != 0U) in findHelper()
87 findHelper("", this->nodes[node.pathParamChild], params); in findHelper()
96 node.children) in findHelper()
199 ContainedType& node = this->nodes[idx]; in add() local
200 if (node.fragmentChildren.find(fragment) != node.fragmentChildren.end()) in add()
210 node.fragmentChildren.emplace(fragment, ruleIndex); in add()