Home | History | Annotate | Download | only in common

Lines Matching refs:textLength

22 : textLength(0), pos(0), begin(0), end(0) {
26 : textLength(length), pos(0), begin(0), end(length) {
27 if(textLength < 0) {
28 textLength = end = 0;
33 : textLength(length), pos(position), begin(0), end(length) {
34 if(textLength < 0) {
35 textLength = end = 0;
45 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
46 if(textLength < 0) {
47 textLength = 0;
51 } else if(begin > textLength) {
52 begin = textLength;
56 } else if(end > textLength) {
57 end = textLength;
70 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
77 textLength = that.textLength;