Home | History | Annotate | Download | only in courgette

Lines Matching defs:start_

20   Region() : start_(NULL), length_(0) {}
24 : start_(static_cast<const uint8*>(start)),
31 : start_(reinterpret_cast<const uint8*>(string.c_str())),
36 Region(const Region& other) : start_(other.start_), length_(other.length_) {}
40 this->start_ = other.start_;
46 const uint8* start() const { return start_; }
52 const uint8* end() const { return start_ + length_; }
55 const uint8* start_;