Home | History | Annotate | Download | only in Tooling

Lines Matching defs:Children

45   /// - If the node has a path 'p2' but no children, take the last path segment
62 if (Children.empty()) {
69 Children[Element].Path = Path;
73 Children[Element].insert(NewPath, ConsumedLength + Element.size() + 1);
87 /// - .. have children. In this case it is checked
91 /// - .. a child matching the next path segment. In this case, all children of
92 /// 'n' are an equally good match for 'p'. All children are of 'n' are found
101 if (Children.empty()) {
109 Children.find(Element);
110 if (MatchingChild != Children.end()) {
139 if (Children.empty()) {
144 It = Children.begin(), E = Children.end();
148 It->getValue().getAll(Results, Children.end());
153 // nodes where Children.empty().
156 // The children of this node stored in a map based on the next path segment.
157 llvm::StringMap<FileMatchTrieNode> Children;