Home | History | Annotate | Download | only in courgette

Lines Matching refs:length_

20   Region() : start_(NULL), length_(0) {}
25 length_(length) {
32 length_(string.length()) {
36 Region(const Region& other) : start_(other.start_), length_(other.length_) {}
41 this->length_ = other.length_;
49 size_t length() const { return length_; }
52 const uint8* end() const { return start_ + length_; }
56 size_t length_;