Searched defs:transliterate (Results 1 - 16 of 16) sorted by relevance

/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
H A DTransliteratingTextComponent.java78 transliterate(ch, false);
82 if (translit != null) transliterate('\uFFFF', true);
86 protected void transliterate(char ch, boolean flush) { method in class:TransliteratingTextComponent
145 translit.transliterate(buf, index, ch);
160 translit.transliterate(buf);
173 // The START index is zero-based. On entry to transliterate(),
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DTransliterationRuleSet.java191 public boolean transliterate(Replaceable text, method in class:TransliterationRuleSet
H A DTransliterator.java51 * <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
513 public final int transliterate(Replaceable text, int start, int limit) { method in class:Transliterator
529 public final void transliterate(Replaceabl method in class:Transliterator
539 public final String transliterate(String text) { method in class:Transliterator
592 public final void transliterate(Replaceable text, Position index, method in class:Transliterator
637 public final void transliterate(Replaceable text, Position index, method in class:Transliterator
653 public final void transliterate(Replaceable text, Position index) { method in class:Transliterator
[all...]
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DTransliterationRuleSet.java190 public boolean transliterate(Replaceable text, method in class:TransliterationRuleSet
H A DTransliterator.java50 * <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
529 public final int transliterate(Replaceable text, int start, int limit) { method in class:Transliterator
546 public final void transliterate(Replaceabl method in class:Transliterator
557 public final String transliterate(String text) { method in class:Transliterator
611 public final void transliterate(Replaceable text, Position index, method in class:Transliterator
657 public final void transliterate(Replaceable text, Position index, method in class:Transliterator
674 public final void transliterate(Replaceable text, Position index) { method in class:Transliterator
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
H A DNamePrepTransform.java113 String caseMapOut = mapTransform.transliterate(src);
192 translitMethod = cls.getMethod("transliterate", String.class);
203 String transliterate(String text) { method in class:NamePrepTransform.MapTransform
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DNamePrepTransform.java112 String caseMapOut = mapTransform.transliterate(src);
191 translitMethod = cls.getMethod("transliterate", String.class);
202 String transliterate(String text) { method in class:NamePrepTransform.MapTransform
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/cldr/
H A DTestCLDRVsICU.java159 public String transliterate(String in) { method in class:TestCLDRVsICU.ToHex
183 return "\u00AB" + in + "\u00BB (" + toUnicode.transliterate(in) + ")";
/external/icu/icu4c/source/i18n/
H A Drbt_set.cpp404 UBool TransliterationRuleSet::transliterate(Replaceable& text, function in class:TransliterationRuleSet
H A Dtranslit.cpp191 int32_t Transliterator::transliterate(Replaceable& text, function in class:Transliterator
212 void Transliterator::transliterate(Replaceable& text) const { function in class:Transliterator
213 transliterate(text, 0, text.length());
223 * Then the transliterator will try to transliterate characters of
280 void Transliterator::transliterate(Replaceable& text, function in class:Transliterator
292 * #transliterate(Replaceable, int[], String)} for details.
296 * #transliterate(Replaceable, int[], String)}.
300 * @see #transliterate(Replaceable, int[], String)
302 void Transliterator::transliterate(Replaceable& text, function in class:Transliterator
313 * {@link #transliterate(Replaceabl
321 void Transliterator::transliterate(Replaceable& text, function in class:Transliterator
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/cldr/
H A DTestCLDRVsICU.java158 public String transliterate(String in) { method in class:TestCLDRVsICU.ToHex
182 return "\u00AB" + in + "\u00BB (" + toUnicode.transliterate(in) + ")";
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 773 milliseconds