Home | History | Annotate | Download | only in impl

Lines Matching refs:length

37         private int length;
57 length = keyLength;
73 for (length = 0; keyBytes[keyOffset + length] != 0; ++length) {}
83 offset = length = 0;
95 bytes = new byte[s.length()];
97 length = s.length();
98 for (int i = 0; i < length; ++i) {
126 assert(0 <= i && i < length);
131 public int length() {
132 return length;
137 assert(0 <= start && start < length);
138 assert(start <= end && end <= length);
148 s = internalSubString(0, length);
165 assert(0 <= start && start < length);
166 return internalSubString(start, length);
173 assert(0 <= start && start < length);
174 assert(start <= end && end <= length);
204 return length == otherKey.length &&
205 regionMatches(otherKey.bytes, otherKey.offset, length);
215 return this == cs || (cs.length() == length && regionMatches(0, cs, length));
219 int csLength = cs.length();
220 return csLength <= length && regionMatches(0, cs, csLength);
224 int csLength = cs.length();
225 return csLength <= length && regionMatches(length - csLength, cs, csLength);
233 int csLength = cs.length();
234 return csLength == (length - start) && regionMatches(start, cs, csLength);
241 if (length == 0) {
246 for (int i = 1; i < length; ++i) {
258 int csLength = cs.length();
259 int minLength = length <= csLength ? length : csLength;
266 return length - csLength;
428 sb.append(iv.length).append("]{");
429 if (iv.length != 0) {
431 for (int i = 1; i < iv.length; ++i) {