Home | History | Annotate | Download | only in common

Lines Matching refs:end

24 : textLength(0), pos(0), begin(0), end(0) {
28 : textLength(length), pos(0), begin(0), end(length) {
30 textLength = end = 0;
35 : textLength(length), pos(position), begin(0), end(length) {
37 textLength = end = 0;
41 } else if(pos > end) {
42 pos = end;
47 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
56 if(end < begin) {
57 end = begin;
58 } else if(end > textLength) {
59 end = textLength;
63 } else if(pos > end) {
64 pos = end;
72 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
82 end = that.end;