Lines Matching defs:insert
49 /// An insert of a path
51 /// - If the node is empty, insert 'p' into its storage and abort.
53 /// 's' of 'p2', put a new child into the map at 's' an insert the rest of
55 /// - Insert a new child for the last segment of 'p' and insert the rest of
58 /// An insert operation is linear in the number of a path's segments.
59 void insert(StringRef NewPath, unsigned ConsumedLength = 0) {
80 Children[Element].insert(NewPath, ConsumedLength + Element.size() + 1);
192 void FileMatchTrie::insert(StringRef NewPath) {
193 Root->insert(NewPath);