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

  /external/chromium_org/third_party/re2/re2/
prefilter.h 5 // Prefilter is the class used to extract string guards from regexps.
6 // Rather than using Prefilter class directly, use FilteredRE2.
20 class Prefilter {
21 // Instead of using Prefilter directly, use FilteredRE2; see filtered_re2.h
31 explicit Prefilter(Op op);
32 ~Prefilter();
39 // The children of the Prefilter node.
40 vector<Prefilter*>* subs() {
45 // Set the children vector. Prefilter takes ownership of subs and
46 // subs_ will be deleted when Prefilter is deleted
    [all...]
prefilter.cc 6 #include "re2/prefilter.h"
19 // Initializes a Prefilter, allocating subs_ as necessary.
20 Prefilter::Prefilter(Op op) {
24 subs_ = new vector<Prefilter*>;
30 // Destroys a Prefilter.
31 Prefilter::~Prefilter() {
42 Prefilter* Prefilter::Simplify()
    [all...]
  /external/regex-re2/re2/
prefilter.h 5 // Prefilter is the class used to extract string guards from regexps.
6 // Rather than using Prefilter class directly, use FilteredRE2.
20 class Prefilter {
21 // Instead of using Prefilter directly, use FilteredRE2; see filtered_re2.h
31 explicit Prefilter(Op op);
32 ~Prefilter();
39 // The children of the Prefilter node.
40 vector<Prefilter*>* subs() {
45 // Set the children vector. Prefilter takes ownership of subs and
46 // subs_ will be deleted when Prefilter is deleted
    [all...]
prefilter.cc 6 #include "re2/prefilter.h"
19 // Initializes a Prefilter, allocating subs_ as necessary.
20 Prefilter::Prefilter(Op op) {
24 subs_ = new vector<Prefilter*>;
30 // Destroys a Prefilter.
31 Prefilter::~Prefilter() {
42 Prefilter* Prefilter::Simplify()
    [all...]

Completed in 63 milliseconds