Home | History | Annotate | Download | only in text

Lines Matching defs:transliterate

51  * <code>transliterate()</code>. As a result, threads may share transliterators without synchronizing them. This might
65 * <blockquote><code>String result = t.transliterate(input);
68 * will transliterate it and return the result. Other methods allow the client to specify a substring to be
103 * calls to <code>transliterate()</code>. Typically, the cursor will be coincident with the insertion point, but in a
108 * <code>transliterate()</code>, including the cursor, start, and limit. These indices are changed by the method, and
201 * scripts "A", "B", "C", and "D", and we want to transliterate between all pairs of them, then we need to write 12
221 * Subclasses should override the <code>transliterate()</code> method taking a <code>Replaceable</code> and the
222 * <code>transliterate()</code> method taking a <code>String</code> and <code>StringBuffer</code> if the performance of
510 public final int transliterate(Replaceable text, int start, int limit) {
526 public final void transliterate(Replaceable text) {
527 transliterate(text, 0, text.length());
531 * Transliterate an entire string and returns the result. Convenience method.
536 public final String transliterate(String text) {
538 transliterate(result);
549 * Then the transliterator will try to transliterate characters of
589 public final void transliterate(Replaceable text, Position index,
604 // assume it is part of a pair. Don't transliterate until
623 * convenience method; see {@link #transliterate(Replaceable,
632 * @see #transliterate(Replaceable, Transliterator.Position, String)
634 public final void transliterate(Replaceable text, Position index,
636 transliterate(text, index, UTF16.valueOf(insertion));
642 * {@link #transliterate(Replaceable, Transliterator.Position,
648 * @see #transliterate(Replaceable, Transliterator.Position, String)
650 public final void transliterate(Replaceable text, Position index) {
651 transliterate(text, index, null);
658 * <code>transliterate()</code>.
662 * #transliterate}
679 * should transliterate all characters between
684 * should transliterate all characters between
727 * this method directly will transliterate
730 * transliterate()</code> instead of this method. Subclass code
742 * transliterate all text between <code>pos.start</code> and
746 * @see #transliterate
802 // and does not transliterate completely, then this method rolls back
964 // We failed to completely transliterate this pass.
988 // We did completely transliterate this pass. Update the
1067 // If we did completely transliterate this
1082 * Transliterate a substring of text, as specified by index, taking filters
1603 String t = transliterate(s);
1962 return transliterate(source);