Lines Matching defs:start
30 // range of characters in a text selection. A range is made of a start and end
39 // Initializes the range with a start and end.
40 Range(size_t start, size_t end);
42 // Initializes the range with the same start and end positions.
61 size_t start() const { return start_; }
62 void set_start(size_t start) { start_ = start; }
69 ptrdiff_t length = end() - start();
73 bool is_reversed() const { return start() > end(); }
74 bool is_empty() const { return start() == end(); }