Home | History | Annotate | Download | only in unicode

Lines Matching full:code

29  * <code>Replaceable</code> is an abstract base class representing a
37 * <p>An implicit aspect of the <code>Replaceable</code> API is that
43 * <p><code>Replaceable</code> specifies ranges using a start
48 * <p><code>Replaceable</code> also includes API to access characters
49 * in the string: <code>length()</code>, <code>charAt()</code>,
50 * <code>char32At()</code>, and <code>extractBetween()</code>.
53 * <code>replace()</code> is the following:
63 * <li>If the code point U+FFFF is seen, it should be interpreted as
81 * Returns the number of 16-bit code units in the text.
82 * @return number of 16-bit code units in text
88 * Returns the 16-bit code unit at the given offset into the text.
89 * @param offset an integer between 0 and <code>length()</code>-1
91 * @return 16-bit code unit of text at given offset
97 * Returns the 32-bit code point at the given 16-bit offset into
98 * the text. This assumes the text is stored as 16-bit code units
100 * trailing code unit of a surrogate pair is given, return the
101 * code point of the surrogate pair.
103 * @param offset an integer between 0 and <code>length()</code>-1
105 * @return 32-bit code point of text at given offset
136 * @param start the beginning index, inclusive; <code>0 <= start
137 * <= limit</code>.
138 * @param limit the ending index, exclusive; <code>start <= limit
139 * <= length()</code>.
140 * @param text the text to replace characters <code>start</code>
141 * to <code>limit - 1</code>
162 * @param start the beginning index, inclusive; <code>0 <= start <=
163 * limit</code>.
164 * @param limit the ending index, exclusive; <code>start <= limit <=
165 * length()</code>.
167 * <code>start..limit-1</code> will be copied to <code>dest</code>.
168 * Implementations of this method may assume that <code>dest <= start ||
169 * dest >= limit</code>.
213 * API/code coverage may show the assignment operator as present and