Home | History | Annotate | Download | only in common

Lines Matching refs:begin

22 : textLength(0), pos(0), begin(0), end(0) {
26 : textLength(length), pos(0), begin(0), end(length) {
33 : textLength(length), pos(position), begin(0), end(length) {
45 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
49 if(begin < 0) {
50 begin = 0;
51 } else if(begin > textLength) {
52 begin = textLength;
54 if(end < begin) {
55 end = begin;
59 if(pos < begin) {
60 pos = begin;
68 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
77 begin = that.begin;