Searched defs:regexps (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/re2/re2/
H A Dprefilter_tree.h10 // set of regexps that are to be triggered. The 'string matching
37 // Add called sequentially for all regexps. All Add calls
50 // of regexps that should be searched. The matched_atoms should
55 vector<int>* regexps) const;
80 // regexps that are triggered.
81 vector<int> regexps; member in struct:re2::PrefilterTree::Entry
90 // Given the matching atoms, find the regexps to be triggered.
92 IntMap* regexps) const;
115 // indices of regexps that always pass through the filter (since we
116 // found no required literals in these regexps)
[all...]
H A Dfiltered_re2.cc71 vector<int> regexps; local
72 prefilter_tree_->RegexpsGivenStrings(atoms, &regexps);
73 for (int i = 0; i < regexps.size(); i++)
74 if (RE2::PartialMatch(text, *re2_vec_[regexps[i]]))
75 return regexps[i];
84 vector<int> regexps; local
85 prefilter_tree_->RegexpsGivenStrings(atoms, &regexps);
86 for (int i = 0; i < regexps.size(); i++)
87 if (RE2::PartialMatch(text, *re2_vec_[regexps[i]]))
88 matching_regexps->push_back(regexps[
[all...]
H A Dprefilter_tree.cc94 // PrefilterTree that call Compile before adding any regexps,
107 // not miss out on any regexps triggering by getting rid of a
285 entry->regexps.push_back(i);
292 vector<int>* regexps) const {
293 regexps->clear();
297 regexps->push_back(i);
310 regexps->push_back(it->index());
312 regexps->insert(regexps->end(), unfiltered_.begin(), unfiltered_.end());
315 sort(regexps
370 const vector<int>& regexps = entries_[i].regexps; local
[all...]
/external/regex-re2/re2/
H A Dprefilter_tree.h10 // set of regexps that are to be triggered. The 'string matching
34 // Add called sequentially for all regexps. All Add calls
47 // of regexps that should be searched. The matched_atoms should
52 vector<int>* regexps) const;
77 // regexps that are triggered.
78 vector<int> regexps; member in struct:re2::PrefilterTree::Entry
87 // Given the matching atoms, find the regexps to be triggered.
89 IntMap* regexps) const;
112 // indices of regexps that always pass through the filter (since we
113 // found no required literals in these regexps)
[all...]
H A Dfiltered_re2.cc71 vector<int> regexps; local
72 prefilter_tree_->RegexpsGivenStrings(atoms, &regexps);
73 for (int i = 0; i < regexps.size(); i++)
74 if (RE2::PartialMatch(text, *re2_vec_[regexps[i]]))
75 return regexps[i];
84 vector<int> regexps; local
85 prefilter_tree_->RegexpsGivenStrings(atoms, &regexps);
86 for (int i = 0; i < regexps.size(); i++)
87 if (RE2::PartialMatch(text, *re2_vec_[regexps[i]]))
88 matching_regexps->push_back(regexps[
[all...]
H A Dprefilter_tree.cc89 // PrefilterTree that call Compile before adding any regexps,
102 // not miss out on any regexps triggering by getting rid of a
278 entry->regexps.push_back(i);
285 vector<int>* regexps) const {
286 regexps->clear();
290 regexps->push_back(i);
303 regexps->push_back(it->index());
305 regexps->insert(regexps->end(), unfiltered_.begin(), unfiltered_.end());
308 sort(regexps
363 const vector<int>& regexps = entries_[i].regexps; local
[all...]
/external/chromium_org/third_party/re2/re2/testing/
H A Dexhaustive_tester.h16 // Exhaustive regular expression test: generate all regexps within parameters,
41 int regexps() { return regexps_; } function in class:re2::ExhaustiveTester
H A Dpossible_match_test.cc161 // Exhaustive test: generate all regexps within parameters,
177 int regexps() { return regexps_; } function in class:re2::PossibleMatchTester
236 LOG(INFO) << t.regexps() << " regexps, "
H A Dfiltered_re2_test.cc61 // If any test needs more than this many regexps or atoms, increase
63 const char* regexps[20]; member in struct:re2::AtomTest
133 void AddRegexpsAndCompile(const char* regexps[], argument
138 v->f.Add(regexps[i], v->opts, &id);
179 for (nregexp = 0; nregexp < arraysize(t->regexps); nregexp++)
180 if (t->regexps[nregexp] == NULL)
185 AddRegexpsAndCompile(t->regexps, nregexp, &v);
213 // We are using the regexps used in one of the atom tests
218 for (nregexp = 0; nregexp < arraysize(t->regexps); nregexp++)
219 if (t->regexps[nregex
[all...]
H A Dregexp_generator.cc181 stack<string> regexps; local
187 regexps.push(post[i]);
190 string a = regexps.top();
191 regexps.pop();
192 regexps.push("(?:" + StringPrintf(post[i].c_str(), a.c_str()) + ")");
196 string b = regexps.top();
197 regexps.pop();
198 string a = regexps.top();
199 regexps.pop();
200 regexps
[all...]
/external/regex-re2/re2/testing/
H A Dexhaustive_tester.h16 // Exhaustive regular expression test: generate all regexps within parameters,
41 int regexps() { return regexps_; } function in class:re2::ExhaustiveTester
H A Dpossible_match_test.cc161 // Exhaustive test: generate all regexps within parameters,
177 int regexps() { return regexps_; } function in class:re2::PossibleMatchTester
236 LOG(INFO) << t.regexps() << " regexps, "
H A Dfiltered_re2_test.cc61 // If any test needs more than this many regexps or atoms, increase
63 const char* regexps[20]; member in struct:re2::AtomTest
133 void AddRegexpsAndCompile(const char* regexps[], argument
138 v->f.Add(regexps[i], v->opts, &id);
179 for (nregexp = 0; nregexp < arraysize(t->regexps); nregexp++)
180 if (t->regexps[nregexp] == NULL)
185 AddRegexpsAndCompile(t->regexps, nregexp, &v);
213 // We are using the regexps used in one of the atom tests
218 for (nregexp = 0; nregexp < arraysize(t->regexps); nregexp++)
219 if (t->regexps[nregex
[all...]
H A Dregexp_generator.cc181 stack<string> regexps; local
187 regexps.push(post[i]);
190 string a = regexps.top();
191 regexps.pop();
192 regexps.push("(?:" + StringPrintf(post[i].c_str(), a.c_str()) + ")");
196 string b = regexps.top();
197 regexps.pop();
198 string a = regexps.top();
199 regexps.pop();
200 regexps
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 1265 milliseconds