Home | History | Annotate | Download | only in common

Lines Matching refs:end

22 : textLength(0), pos(0), begin(0), end(0) {
26 : textLength(length), pos(0), begin(0), end(length) {
28 textLength = end = 0;
33 : textLength(length), pos(position), begin(0), end(length) {
35 textLength = end = 0;
39 } else if(pos > end) {
40 pos = end;
45 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
54 if(end < begin) {
55 end = begin;
56 } else if(end > textLength) {
57 end = textLength;
61 } else if(pos > end) {
62 pos = end;
68 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
78 end = that.end;