Home | History | Annotate | Download | only in impl

Lines Matching refs:lead

56      * or the leadUnitValue for lead surrogate code points.
60 * @param leadUnitValue the value for lead surrogate code _units_ that do not
93 /* indexes for lead surrogate code units to the block after Latin-1 */
101 /* data for lead surrogate code units */
136 * Gets the value to the data which this lead surrogate character points
141 * @param ch lead surrogate character
151 * Lead surrogate code points are treated as normal code points, with
163 * @param lead a lead surrogate
166 public final int getSurrogateValue(char lead, char trail)
168 if (!UTF16.isLeadSurrogate(lead) || !UTF16.isTrailSurrogate(trail)) {
173 int offset = getSurrogateOffset(lead, trail);
175 // get the real data from the folded lead/trail units
185 * Get a value from a folding offset (from the value of a lead surrogate)
187 * @param leadvalue the value of a lead surrogate that contains the
265 * @param lead lead surrogate
270 protected final int getSurrogateOffset(char lead, char trail)
277 int offset = m_dataManipulate_.getFoldingOffset(getLeadValue(lead));
279 // get the real data from the folded lead/trail units