Searched defs:decomposition (Results 1 - 9 of 9) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DComposedCharIter.java35 * composed characters in Unicode. If the decomposition for that character
38 * its decomposition sequence.
51 * is a canonical decomposition.
90 * @param options Optional decomposition features. None are supported, so this is ignored.
134 * Returns the Unicode decomposition of the current character.
135 * This method returns the decomposition of the precomposed character most
136 * recently returned by {@link #next}. The resulting decomposition is
141 public String decomposition() { method in class:ComposedCharIter
142 // the decomposition buffer contains the decomposition o
[all...]
H A DCollator.java88 * Unlike the JDK, ICU4J's Collator deals only with 2 decomposition modes,
89 * the canonical decomposition mode and one that does not use any decomposition.
90 * The compatibility decomposition mode, java.text.Collator.FULL_DECOMPOSITION
92 * decomposition mode is set, the Collator handles un-normalized text properly,
94 * canonical decomposition is turned off, it is the user's responsibility to
117 * System.out.println("à\u0325 is not equals to a\u0325̀ without decomposition");
120 * System.out.println("Error: à\u0325 should be equals to a\u0325̀ with decomposition");
123 * System.out.println("à\u0325 is equals to a\u0325̀ with decomposition");
127 * System.out.println("Error: à\u0325 should be not equals to a\u0325̀ without decomposition");
391 setDecomposition(int decomposition) argument
[all...]
H A DRuleBasedCollator.java89 * <li>As mentioned in the documentation of the base class Collator, compatibility decomposition mode is not supported.</li>
492 * Sets the decomposition mode to the initial mode set during construction of the RuleBasedCollator. See
621 * Sets the decomposition mode of this Collator. Setting this
622 * decomposition attribute with CANONICAL_DECOMPOSITION allows the
628 * decomposition mode allows the user to select between faster and
633 * default decomposition mode.
639 * <p>See getDecomposition for a description of decomposition
642 * @param decomposition the new decomposition mode
647 * decomposition mod
650 setDecomposition(int decomposition) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DComposedCharIter.java34 * composed characters in Unicode. If the decomposition for that character
37 * its decomposition sequence.
50 * is a canonical decomposition.
88 * @param options Optional decomposition features. None are supported, so this is ignored.
132 * Returns the Unicode decomposition of the current character.
133 * This method returns the decomposition of the precomposed character most
134 * recently returned by {@link #next}. The resulting decomposition is
139 public String decomposition() { method in class:ComposedCharIter
140 // the decomposition buffer contains the decomposition o
[all...]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DArabicCharacterData.java41 return decomposition;
55 decomposition = Normalizer.compose(UCharacter.toString(character), true);
59 decomposition = Normalizer.decompose(UCharacter.toString(character), true);
63 decomposition = null;
70 private String decomposition; field in class:ArabicCharacterData.Record
H A DDecompTable.java29 DecompEntry(int composedChar, String decomposition) argument
31 int decompCount = UTF16.countCodePoint(decomposition);
38 for (int in = 0; in < decomposition.length(); in += UTF16.getCharCount(cp)) {
39 cp = UTF16.charAt(decomposition, in);
106 public void add(int composed, String decomposition) argument
108 DecompEntry entry = new DecompEntry(composed, decomposition);
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
H A DCollator.java69 * Unlike the JDK, ICU4J's Collator deals only with 2 decomposition modes,
70 * the canonical decomposition mode and one that does not use any decomposition.
71 * The compatibility decomposition mode, java.text.Collator.FULL_DECOMPOSITION
73 * decomposition mode is set, the Collator handles un-normalized text properly,
75 * canonical decomposition is turned off, it is the user's responsibility to
99 * System.out.println("&agrave;&#92;u0325 is not equals to a&#92;u0325&#768; without decomposition");
102 * System.out.println("Error: &agrave;&#92;u0325 should be equals to a&#92;u0325&#768; with decomposition");
105 * System.out.println("&agrave;&#92;u0325 is equals to a&#92;u0325&#768; with decomposition");
109 * System.out.println("Error: &agrave;&#92;u0325 should be not equals to a&#92;u0325&#768; without decomposition");
305 setDecomposition(int decomposition) argument
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DCollator.java87 * Unlike the JDK, ICU4J's Collator deals only with 2 decomposition modes,
88 * the canonical decomposition mode and one that does not use any decomposition.
89 * The compatibility decomposition mode, java.text.Collator.FULL_DECOMPOSITION
91 * decomposition mode is set, the Collator handles un-normalized text properly,
93 * canonical decomposition is turned off, it is the user's responsibility to
116 * System.out.println("&agrave;&#92;u0325 is not equals to a&#92;u0325&#768; without decomposition");
119 * System.out.println("Error: &agrave;&#92;u0325 should be equals to a&#92;u0325&#768; with decomposition");
122 * System.out.println("&agrave;&#92;u0325 is equals to a&#92;u0325&#768; with decomposition");
126 * System.out.println("Error: &agrave;&#92;u0325 should be not equals to a&#92;u0325&#768; without decomposition");
411 setDecomposition(int decomposition) argument
[all...]
H A DRuleBasedCollator.java88 * <li>As mentioned in the documentation of the base class Collator, compatibility decomposition mode is not supported.</li>
504 * Sets the decomposition mode to the initial mode set during construction of the RuleBasedCollator. See
640 * Sets the decomposition mode of this Collator. Setting this
641 * decomposition attribute with CANONICAL_DECOMPOSITION allows the
647 * decomposition mode allows the user to select between faster and
652 * default decomposition mode.
658 * <p>See getDecomposition for a description of decomposition
661 * @param decomposition the new decomposition mode
666 * decomposition mod
670 setDecomposition(int decomposition) argument
[all...]

Completed in 1727 milliseconds