Home | History | Annotate | Download | only in lang

Lines Matching refs:length

62      * Returns the length of this character sequence.  The length is the number
67 int length();
71 * to <tt>length() - 1</tt>. The first <code>char</code> value of the sequence is at
85 * <tt>length()</tt>
92 * ends with the <code>char</code> value at index <tt>end - 1</tt>. The length
104 * if <tt>end</tt> is greater than <tt>length()</tt>,
111 * order as this sequence. The length of the string will be the length of
135 return cur < length();
148 for (; cur < length(); cur++) {
157 length(),
183 final int length = length();
186 while (i < length) {
188 if (!Character.isHighSurrogate(c1) || i >= length) {
206 return cur < length();
210 final int length = length();
212 if (cur >= length) {
216 if (Character.isHighSurrogate(c1) && cur < length) {