HomeSort by relevance Sort by last modified time
    Searched defs:regexps (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/re2/re2/
filtered_re2.cc 71 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[i])
    [all...]
prefilter_tree.h 10 // 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...]
prefilter_tree.cc 94 // 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->begin(), regexps->end())
370 const vector<int>& regexps = entries_[i].regexps; local
    [all...]
  /external/chromium_org/third_party/re2/re2/testing/
exhaustive_tester.h 16 // Exhaustive regular expression test: generate all regexps within parameters,
41 int regexps() { return regexps_; } function in class:re2::ExhaustiveTester
filtered_re2_test.cc 61 // 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[],
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[nregexp] == NULL
    [all...]
possible_match_test.cc 161 // Exhaustive test: generate all regexps within parameters,
177 int regexps() { return regexps_; } function in class:re2::PossibleMatchTester
236 LOG(INFO) << t.regexps() << " regexps, "
regexp_generator.cc 181 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.push("(?:"
    [all...]
  /external/regex-re2/re2/
filtered_re2.cc 71 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[i])
    [all...]
prefilter_tree.h 10 // 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...]
prefilter_tree.cc 89 // 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->begin(), regexps->end())
363 const vector<int>& regexps = entries_[i].regexps; local
    [all...]
  /external/regex-re2/re2/testing/
exhaustive_tester.h 16 // Exhaustive regular expression test: generate all regexps within parameters,
41 int regexps() { return regexps_; } function in class:re2::ExhaustiveTester
filtered_re2_test.cc 61 // 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[],
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[nregexp] == NULL
    [all...]
possible_match_test.cc 161 // Exhaustive test: generate all regexps within parameters,
177 int regexps() { return regexps_; } function in class:re2::PossibleMatchTester
236 LOG(INFO) << t.regexps() << " regexps, "
regexp_generator.cc 181 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.push("(?:"
    [all...]
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/internal/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 

Completed in 1116 milliseconds