Home | History | Annotate | Download | only in common

Lines Matching refs:length_

17     : ptr_(str), length_((str == NULL) ? 0 : static_cast<int32_t>(uprv_strlen(str))) { }
22 } else if (pos > x.length_) {
23 pos = x.length_;
26 length_ = x.length_ - pos;
32 } else if (pos > x.length_) {
33 pos = x.length_;
37 } else if (len > x.length_ - pos) {
38 len = x.length_ - pos;
41 length_ = len;
47 length_ = static_cast<int32_t>(uprv_strlen(str));
49 length_ = 0;