Home | History | Annotate | Download | only in impl

Lines Matching refs:length

39         private int length;
59 length = keyLength;
75 for (length = 0; keyBytes[keyOffset + length] != 0; ++length) {}
85 offset = length = 0;
97 bytes = new byte[s.length()];
99 length = s.length();
100 for (int i = 0; i < length; ++i) {
128 assert(0 <= i && i < length);
133 public int length() {
134 return length;
139 assert(0 <= start && start < length);
140 assert(start <= end && end <= length);
150 s = internalSubString(0, length);
167 assert(0 <= start && start < length);
168 return internalSubString(start, length);
175 assert(0 <= start && start < length);
176 assert(start <= end && end <= length);
206 return length == otherKey.length &&
207 regionMatches(otherKey.bytes, otherKey.offset, length);
217 return this == cs || (cs.length() == length && regionMatches(0, cs, length));
221 int csLength = cs.length();
222 return csLength <= length && regionMatches(0, cs, csLength);
226 int csLength = cs.length();
227 return csLength <= length && regionMatches(length - csLength, cs, csLength);
235 int csLength = cs.length();
236 return csLength == (length - start) && regionMatches(start, cs, csLength);
243 if (length == 0) {
248 for (int i = 1; i < length; ++i) {
260 int csLength = cs.length();
261 int minLength = length <= csLength ? length : csLength;
268 return length - csLength;
430 sb.append(iv.length).append("]{");
431 if (iv.length != 0) {
433 for (int i = 1; i < iv.length; ++i) {