HomeSort by relevance Sort by last modified time
    Searched refs:decomposition (Results 1 - 25 of 33) sorted by null

1 2

  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ArabicCharacterData.java 39 return decomposition;
53 decomposition = Normalizer.compose(UCharacter.toString(character), true);
57 decomposition = Normalizer.decompose(UCharacter.toString(character), true);
61 decomposition = null;
68 private String decomposition; field in class:ArabicCharacterData.Record
DecompTable.java 27 DecompEntry(int composedChar, String decomposition)
29 int decompCount = UTF16.countCodePoint(decomposition);
36 for (int in = 0; in < decomposition.length(); in += UTF16.getCharCount(cp)) {
37 cp = UTF16.charAt(decomposition, in);
104 public void add(int composed, String decomposition)
106 DecompEntry entry = new DecompEntry(composed, decomposition);
CanonGSUBBuilder.java 22 * decomposition.
25 * will match all Latin, Greek and Cyrillic characters with a canonical decomposition.
31 * It might be better to collect all the characters that have a canonical decomposition and just
76 String decomposition = record.getDecomposition(); local
78 if (decomposition != null && decomposition.length() == 1) {
118 String decomposition = record.getDecomposition(); local
120 if (decomposition != null && decomposition.length() > 1) {
129 contextualTree.insert(convertArabicString(decompType, ligature, decomposition, isolClassTable))
    [all...]
  /external/icu/icu4c/source/common/unicode/
normalizer2.h 254 * Gets the decomposition mapping of c.
258 * if c does not have a decomposition mapping in this instance's data.
261 * @param decomposition String object which will be set to c's
262 * decomposition mapping, if there is one.
263 * @return TRUE if c has a decomposition, otherwise FALSE
267 getDecomposition(UChar32 c, UnicodeString &decomposition) const = 0;
270 * Gets the raw decomposition mapping of c.
273 * raw decomposition mapping as specified in UnicodeData.txt or
288 * @param decomposition String object which will be set to c's
289 * raw decomposition mapping, if there is one
    [all...]
unorm2.h 44 * Decomposition followed by composition.
63 * If a string is in this form, then further decomposition <i>without reordering</i>
333 * Gets the decomposition mapping of c.
337 * if c does not have a decomposition mapping in this instance's data.
341 * @param decomposition String buffer which will be set to c's
342 * decomposition mapping, if there is one.
343 * @param capacity number of UChars that can be written to decomposition
348 * @return the non-negative length of c's decomposition, if there is one; otherwise a negative value
353 UChar32 c, UChar *decomposition, int32_t capacity,
357 * Gets the raw decomposition mapping of c
    [all...]
  /external/icu/icu4c/source/common/
normalizer2.cpp 391 UChar32 c, UChar *decomposition, int32_t capacity,
396 if(decomposition==NULL ? capacity!=0 : capacity<0) {
400 UnicodeString destString(decomposition, 0, capacity);
402 return destString.extract(decomposition, capacity, *pErrorCode);
410 UChar32 c, UChar *decomposition, int32_t capacity,
415 if(decomposition==NULL ? capacity!=0 : capacity<0) {
419 UnicodeString destString(decomposition, 0, capacity);
421 return destString.extract(decomposition, capacity, *pErrorCode);
filterednormalizer2.cpp 154 FilteredNormalizer2::getDecomposition(UChar32 c, UnicodeString &decomposition) const {
155 return set.contains(c) && norm2.getDecomposition(c, decomposition);
159 FilteredNormalizer2::getRawDecomposition(UChar32 c, UnicodeString &decomposition) const {
160 return set.contains(c) && norm2.getRawDecomposition(c, decomposition);
norm2allmodes.h 106 getDecomposition(UChar32 c, UnicodeString &decomposition) const {
114 decomposition.setTo(buffer, length); // copy the string (Jamos from Hangul syllable c)
116 decomposition.setTo(FALSE, d, length); // read-only alias
121 getRawDecomposition(UChar32 c, UnicodeString &decomposition) const {
129 decomposition.setTo(buffer, length); // copy the string (algorithmic decomposition)
131 decomposition.setTo(FALSE, d, length); // read-only alias
  /external/icu/android_icu4j/src/main/java/android/icu/text/
ComposedCharIter.java 33 * composed characters in Unicode. If the decomposition for that character
36 * its decomposition sequence.
49 * 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 of
    [all...]
Normalizer.java 95 * <p>The form is defined such that the "raw decomposition", the recursive
96 * canonical decomposition of each character, results in a string that is
285 * No decomposition/composition.
294 * Canonical decomposition.
303 * Compatibility decomposition.
312 * Canonical decomposition followed by canonical composition.
330 * Compatibility decomposition followed by canonical composition.
366 * Canonical decomposition followed by canonical composition. Used with the
386 * Compatibility decomposition followed by canonical composition.
406 * Canonical decomposition. This value is passed to th
941 String decomposition = Normalizer2.getNFCInstance().getDecomposition(char32); local
    [all...]
RuleBasedCollator.java 87 * <li>As mentioned in the documentation of the base class Collator, compatibility decomposition mode is not supported.</li>
490 * Sets the decomposition mode to the initial mode set during construction of the RuleBasedCollator. See
619 * Sets the decomposition mode of this Collator. Setting this
620 * decomposition attribute with CANONICAL_DECOMPOSITION allows the
626 * decomposition mode allows the user to select between faster and
631 * default decomposition mode.
637 * <p>See getDecomposition for a description of decomposition
640 * @param decomposition the new decomposition mode
645 * decomposition mode
    [all...]
Collator.java 86 * Unlike the JDK, ICU4J's Collator deals only with 2 decomposition modes,
87 * the canonical decomposition mode and one that does not use any decomposition.
88 * The compatibility decomposition mode, java.text.Collator.FULL_DECOMPOSITION
90 * decomposition mode is set, the Collator handles un-normalized text properly,
92 * canonical decomposition is turned off, it is the user's responsibility to
115 * System.out.println("&agrave;&#92;u0325 is not equals to a&#92;u0325&#768; without decomposition");
118 * System.out.println("Error: &agrave;&#92;u0325 should be equals to a&#92;u0325&#768; with decomposition");
121 * System.out.println("&agrave;&#92;u0325 is equals to a&#92;u0325&#768; with decomposition");
125 * System.out.println("Error: &agrave;&#92;u0325 should be not equals to a&#92;u0325&#768; without decomposition");
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ComposedCharIter.java 32 * composed characters in Unicode. If the decomposition for that character
35 * its decomposition sequence.
48 * is a canonical decomposition.
86 * @param options Optional decomposition features. None are supported, so this is ignored.
130 * Returns the Unicode decomposition of the current character.
131 * This method returns the decomposition of the precomposed character most
132 * recently returned by {@link #next}. The resulting decomposition is
137 public String decomposition() { method in class:ComposedCharIter
138 // the decomposition buffer contains the decomposition of
    [all...]
Normalizer.java 94 * <p>The form is defined such that the "raw decomposition", the recursive
95 * canonical decomposition of each character, results in a string that is
281 * No decomposition/composition.
289 * Canonical decomposition.
297 * Compatibility decomposition.
305 * Canonical decomposition followed by canonical composition.
321 * Compatibility decomposition followed by canonical composition.
354 * Canonical decomposition followed by canonical composition. Used with the
373 * Compatibility decomposition followed by canonical composition.
392 * Canonical decomposition. This value is passed to th
915 String decomposition = Normalizer2.getNFCInstance().getDecomposition(char32); local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
TestDeprecatedNormalizerAPI.java 93 * <li>b) The decomposition according to the iterator is the same as
120 String iterDecomp = iter.decomposition();
140 errln("ERROR: " + hex(x) + " has decomposition (" + hex(decomp) + ")"
156 String decomp = iter.decomposition();
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
Collator.java 67 * Unlike the JDK, ICU4J's Collator deals only with 2 decomposition modes,
68 * the canonical decomposition mode and one that does not use any decomposition.
69 * The compatibility decomposition mode, java.text.Collator.FULL_DECOMPOSITION
71 * decomposition mode is set, the Collator handles un-normalized text properly,
73 * canonical decomposition is turned off, it is the user's responsibility to
97 * System.out.println("&agrave;&#92;u0325 is not equals to a&#92;u0325&#768; without decomposition");
100 * System.out.println("Error: &agrave;&#92;u0325 should be equals to a&#92;u0325&#768; with decomposition");
103 * System.out.println("&agrave;&#92;u0325 is equals to a&#92;u0325&#768; with decomposition");
107 * System.out.println("Error: &agrave;&#92;u0325 should be not equals to a&#92;u0325&#768; without decomposition");
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
TestDeprecatedNormalizerAPI.java 89 * <li>b) The decomposition according to the iterator is the same as
116 String iterDecomp = iter.decomposition();
136 errln("ERROR: " + hex(x) + " has decomposition (" + hex(decomp) + ")"
152 String decomp = iter.decomposition();
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_unicodedata.py 97 self.db.decomposition(char),
158 self.assertEqual(self.db.decomposition(u'\uFFFE'),'')
159 self.assertEqual(self.db.decomposition(u'\u00bc'), '<fraction> 0031 2044 0034')
161 self.assertRaises(TypeError, self.db.decomposition)
162 self.assertRaises(TypeError, self.db.decomposition, u'xx')
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_unicodedata.py 97 self.db.decomposition(char),
158 self.assertEqual(self.db.decomposition(u'\uFFFE'),'')
159 self.assertEqual(self.db.decomposition(u'\u00bc'), '<fraction> 0031 2044 0034')
161 self.assertRaises(TypeError, self.db.decomposition)
162 self.assertRaises(TypeError, self.db.decomposition, u'xx')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_unicodedata.py 97 self.db.decomposition(char),
158 self.assertEqual(self.db.decomposition(u'\uFFFE'),'')
159 self.assertEqual(self.db.decomposition(u'\u00bc'), '<fraction> 0031 2044 0034')
161 self.assertRaises(TypeError, self.db.decomposition)
162 self.assertRaises(TypeError, self.db.decomposition, u'xx')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_unicodedata.py 97 self.db.decomposition(char),
158 self.assertEqual(self.db.decomposition(u'\uFFFE'),'')
159 self.assertEqual(self.db.decomposition(u'\u00bc'), '<fraction> 0031 2044 0034')
161 self.assertRaises(TypeError, self.db.decomposition)
162 self.assertRaises(TypeError, self.db.decomposition, u'xx')
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/
History.md 198 interpolation/decomposition.
  /external/v8/test/mjsunit/
array-bounds-check-removal.js 203 // A test for recursive decomposition
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
RuleBasedCollator.java 86 * <li>As mentioned in the documentation of the base class Collator, compatibility decomposition mode is not supported.</li>
502 * Sets the decomposition mode to the initial mode set during construction of the RuleBasedCollator. See
638 * Sets the decomposition mode of this Collator. Setting this
639 * decomposition attribute with CANONICAL_DECOMPOSITION allows the
645 * decomposition mode allows the user to select between faster and
650 * default decomposition mode.
656 * <p>See getDecomposition for a description of decomposition
659 * @param decomposition the new decomposition mode
664 * decomposition mode
    [all...]
Collator.java 85 * Unlike the JDK, ICU4J's Collator deals only with 2 decomposition modes,
86 * the canonical decomposition mode and one that does not use any decomposition.
87 * The compatibility decomposition mode, java.text.Collator.FULL_DECOMPOSITION
89 * decomposition mode is set, the Collator handles un-normalized text properly,
91 * canonical decomposition is turned off, it is the user's responsibility to
114 * System.out.println("&agrave;&#92;u0325 is not equals to a&#92;u0325&#768; without decomposition");
117 * System.out.println("Error: &agrave;&#92;u0325 should be equals to a&#92;u0325&#768; with decomposition");
120 * System.out.println("&agrave;&#92;u0325 is equals to a&#92;u0325&#768; with decomposition");
124 * System.out.println("Error: &agrave;&#92;u0325 should be not equals to a&#92;u0325&#768; without decomposition");
    [all...]

Completed in 1109 milliseconds

1 2