Home | History | Annotate | Download | only in lang

Lines Matching defs:Character

40  * A <code>char</code> value represents a character in the <i>Basic
42 * href="Character.html#unicode">Unicode Character Representation</a> for details.
62 * Returns the length of this character sequence. The length is the number
76 * <a href="{@docRoot}/java/lang/Character.html#unicode">surrogate</a>, the surrogate
121 * href="{@docRoot}/java/lang/Character.html#unicode">surrogate code
166 * Character#toCodePoint Character.toCodePoint} and the result is passed
188 if (!Character.isHighSurrogate(c1) || i >= length) {
192 if (Character.isLowSurrogate(c2)) {
194 block.accept(Character.toCodePoint(c1, c2));
216 if (Character.isHighSurrogate(c1) && cur < length) {
218 if (Character.isLowSurrogate(c2)) {
220 return Character.toCodePoint(c1, c2);