Searched refs:atom_ids (Results 1 – 3 of 3) sorted by relevance
/external/regex-re2/re2/testing/ |
D | filtered_re2_test.cc | 223 vector<int> atom_ids; in TEST() local 225 EXPECT_EQ(0, v.f.FirstMatch(text, atom_ids)); in TEST() 244 vector<int> atom_ids; in TEST() local 247 FindAtomIndices(v.atoms, atoms, &atom_ids); in TEST() 249 v.f.AllMatches(text, atom_ids, &matching_regexps); in TEST() 257 FindAtomIndices(v.atoms, atoms, &atom_ids); in TEST() 258 v.f.AllMatches(text, atom_ids, &matching_regexps); in TEST() 267 FindAtomIndices(v.atoms, atoms, &atom_ids); in TEST() 268 LOG(INFO) << "S: " << atom_ids.size(); in TEST() 269 for (int i = 0; i < atom_ids.size(); i++) in TEST() [all …]
|
/external/regex-re2/re2/ |
D | prefilter_tree.h | 88 void PropagateMatch(const vector<int>& atom_ids,
|
D | prefilter_tree.cc | 311 void PrefilterTree::PropagateMatch(const vector<int>& atom_ids, in PropagateMatch() argument 315 for (int i = 0; i < atom_ids.size(); i++) in PropagateMatch() 316 work.set(atom_ids[i], 1); in PropagateMatch()
|