Searched defs:AhoCorasickNode (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/components/url_matcher/
H A Dsubstring_set_matcher.h82 class AhoCorasickNode { class in class:url_matcher::SubstringSetMatcher
90 AhoCorasickNode();
91 ~AhoCorasickNode();
92 AhoCorasickNode(const AhoCorasickNode& other);
93 AhoCorasickNode& operator=(const AhoCorasickNode& other);
134 std::vector<AhoCorasickNode> tree_;
H A Dsubstring_set_matcher.cc119 while (edge_from_current == AhoCorasickNode::kNoSuchEdge &&
124 if (edge_from_current != AhoCorasickNode::kNoSuchEdge) {
146 AhoCorasickNode root;
172 if (edge_from_current == AhoCorasickNode::kNoSuchEdge)
180 tree_.push_back(AhoCorasickNode());
191 typedef AhoCorasickNode::Edges Edges;
195 AhoCorasickNode& root = tree_[0];
206 AhoCorasickNode& current_node = tree_[queue.front()];
216 while (edge_from_failure == AhoCorasickNode::kNoSuchEdge &&
223 edge_from_failure != AhoCorasickNode
234 SubstringSetMatcher::AhoCorasickNode::AhoCorasickNode() function in class:url_matcher::SubstringSetMatcher::AhoCorasickNode
239 SubstringSetMatcher::AhoCorasickNode::AhoCorasickNode( function in class:url_matcher::SubstringSetMatcher::AhoCorasickNode
[all...]

Completed in 80 milliseconds