Home | History | Annotate | Download | only in text

Lines Matching defs:transliterate

50  * <code>transliterate()</code>. As a result, threads may share transliterators without synchronizing them. This might
64 * <blockquote><code>String result = t.transliterate(input);
67 * will transliterate it and return the result. Other methods allow the client to specify a substring to be
102 * calls to <code>transliterate()</code>. Typically, the cursor will be coincident with the insertion point, but in a
107 * <code>transliterate()</code>, including the cursor, start, and limit. These indices are changed by the method, and
200 * scripts "A", "B", "C", and "D", and we want to transliterate between all pairs of them, then we need to write 12
220 * Subclasses should override the <code>transliterate()</code> method taking a <code>Replaceable</code> and the
221 * <code>transliterate()</code> method taking a <code>String</code> and <code>StringBuffer</code> if the performance of
526 public final int transliterate(Replaceable text, int start, int limit) {
543 public final void transliterate(Replaceable text) {
544 transliterate(text, 0, text.length());
548 * Transliterate an entire string and returns the result. Convenience method.
554 public final String transliterate(String text) {
556 transliterate(result);
567 * Then the transliterator will try to transliterate characters of
608 public final void transliterate(Replaceable text, Position index,
623 // assume it is part of a pair. Don't transliterate until
642 * convenience method; see {@link #transliterate(Replaceable,
651 * @see #transliterate(Replaceable, Transliterator.Position, String)
654 public final void transliterate(Replaceable text, Position index,
656 transliterate(text, index, UTF16.valueOf(insertion));
662 * {@link #transliterate(Replaceable, Transliterator.Position,
668 * @see #transliterate(Replaceable, Transliterator.Position, String)
671 public final void transliterate(Replaceable text, Position index) {
672 transliterate(text, index, null);
679 * <code>transliterate()</code>.
683 * #transliterate}
701 * should transliterate all characters between
706 * should transliterate all characters between
749 * this method directly will transliterate
752 * transliterate()</code> instead of this method. Subclass code
764 * transliterate all text between <code>pos.start</code> and
768 * @see #transliterate
825 // and does not transliterate completely, then this method rolls back
987 // We failed to completely transliterate this pass.
1011 // We did completely transliterate this pass. Update the
1090 // If we did completely transliterate this
1105 * Transliterate a substring of text, as specified by index, taking filters
1645 String t = transliterate(s);
2017 return transliterate(source);