Searched defs:atom_ids (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/re2/re2/testing/
H A Dfiltered_re2_test.cc223 vector<int> atom_ids; local
225 EXPECT_EQ(0, v.f.FirstMatch(text, atom_ids));
244 vector<int> atom_ids; local
247 FindAtomIndices(v.atoms, atoms, &atom_ids);
249 v.f.AllMatches(text, atom_ids, &matching_regexps);
257 FindAtomIndices(v.atoms, atoms, &atom_ids);
258 v.f.AllMatches(text, atom_ids, &matching_regexps);
267 FindAtomIndices(v.atoms, atoms, &atom_ids);
268 LOG(INFO) << "S: " << atom_ids.size();
269 for (int i = 0; i < atom_ids
270 LOG(INFO) << "i: " << i << " : " << atom_ids[i]; local
[all...]
/external/regex-re2/re2/testing/
H A Dfiltered_re2_test.cc223 vector<int> atom_ids; local
225 EXPECT_EQ(0, v.f.FirstMatch(text, atom_ids));
244 vector<int> atom_ids; local
247 FindAtomIndices(v.atoms, atoms, &atom_ids);
249 v.f.AllMatches(text, atom_ids, &matching_regexps);
257 FindAtomIndices(v.atoms, atoms, &atom_ids);
258 v.f.AllMatches(text, atom_ids, &matching_regexps);
267 FindAtomIndices(v.atoms, atoms, &atom_ids);
268 LOG(INFO) << "S: " << atom_ids.size();
269 for (int i = 0; i < atom_ids
270 LOG(INFO) << "i: " << i << " : " << atom_ids[i]; local
[all...]
/external/chromium_org/third_party/re2/re2/
H A Dprefilter_tree.cc318 void PrefilterTree::PropagateMatch(const vector<int>& atom_ids, argument
322 for (int i = 0; i < atom_ids.size(); i++)
323 work.set(atom_ids[i], 1);
/external/regex-re2/re2/
H A Dprefilter_tree.cc311 void PrefilterTree::PropagateMatch(const vector<int>& atom_ids, argument
315 for (int i = 0; i < atom_ids.size(); i++)
316 work.set(atom_ids[i], 1);

Completed in 227 milliseconds