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

1 2 3

  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ArabicCharacterData.java 41 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
DecompTable.java 29 DecompEntry(int composedChar, String decomposition)
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)
108 DecompEntry entry = new DecompEntry(composed, decomposition);
  /external/icu/icu4c/source/common/unicode/
normalizer2.h 288 * Gets the decomposition mapping of c.
292 * if c does not have a decomposition mapping in this instance's data.
295 * @param decomposition String object which will be set to c's
296 * decomposition mapping, if there is one.
297 * @return TRUE if c has a decomposition, otherwise FALSE
301 getDecomposition(UChar32 c, UnicodeString &decomposition) const = 0;
304 * Gets the raw decomposition mapping of c.
307 * raw decomposition mapping as specified in UnicodeData.txt or
322 * @param decomposition String object which will be set to c's
323 * raw decomposition mapping, if there is one
    [all...]
unorm2.h 47 * Decomposition followed by composition.
66 * If a string is in this form, then further decomposition <i>without reordering</i>
336 * Gets the decomposition mapping of c.
340 * if c does not have a decomposition mapping in this instance's data.
344 * @param decomposition String buffer which will be set to c's
345 * decomposition mapping, if there is one.
346 * @param capacity number of UChars that can be written to decomposition
351 * @return the non-negative length of c's decomposition, if there is one; otherwise a negative value
356 UChar32 c, UChar *decomposition, int32_t capacity,
360 * Gets the raw decomposition mapping of c
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
forminfo.go 18 // For v < 0x8000, the respective rune has a decomposition and v is an index
19 // into a byte array of UTF-8 decomposition sequences and additional info and
22 // The header contains the number of bytes in the decomposition (excluding this
43 ccc uint8 // leading canonical combining class (ccc if not decomposition)
44 tccc uint8 // trailing canonical combining class (ccc if not decomposition)
99 // We assume that the CCC of the first character in a decomposition
115 // 2: NFD_QC Yes (0) or No (1). No also means there is a decomposition.
145 // Decomposition returns the decomposition for the underlying rune
147 func (p Properties) Decomposition() []byte
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
forminfo.go 18 // For v < 0x8000, the respective rune has a decomposition and v is an index
19 // into a byte array of UTF-8 decomposition sequences and additional info and
22 // The header contains the number of bytes in the decomposition (excluding this
43 ccc uint8 // leading canonical combining class (ccc if not decomposition)
44 tccc uint8 // trailing canonical combining class (ccc if not decomposition)
99 // We assume that the CCC of the first character in a decomposition
115 // 2: NFD_QC Yes (0) or No (1). No also means there is a decomposition.
145 // Decomposition returns the decomposition for the underlying rune
147 func (p Properties) Decomposition() []byte
    [all...]
  /prebuilts/go/darwin-x86/test/ken/
cplx3.go 7 // Test composition, decomposition, and reflection on complex numbers.
  /prebuilts/go/linux-x86/test/ken/
cplx3.go 7 // Test composition, decomposition, and reflection on complex numbers.
  /external/icu/android_icu4j/src/main/java/android/icu/text/
ComposedCharIter.java 35 * 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 of
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ComposedCharIter.java 34 * 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 of
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
Unicode.py 474 decomposition = unicodedata.decomposition
487 decomposition(c)
496 decomposition(c)
505 decomposition(c)
514 decomposition(c)
523 decomposition(c)
536 decomposition = unicodedata.decomposition
  /external/python/cpython2/Tools/pybench/
Unicode.py 474 decomposition = unicodedata.decomposition
487 decomposition(c)
496 decomposition(c)
505 decomposition(c)
514 decomposition(c)
523 decomposition(c)
536 decomposition = unicodedata.decomposition
  /external/python/cpython3/Tools/pybench/
Unicode.py 473 decomposition = unicodedata.decomposition
486 decomposition(c)
495 decomposition(c)
504 decomposition(c)
513 decomposition(c)
522 decomposition(c)
535 decomposition = unicodedata.decomposition
  /external/icu/icu4c/source/common/
norm2allmodes.h 110 getDecomposition(UChar32 c, UnicodeString &decomposition) const {
118 decomposition.setTo(buffer, length); // copy the string (Jamos from Hangul syllable c)
120 decomposition.setTo(FALSE, d, length); // read-only alias
125 getRawDecomposition(UChar32 c, UnicodeString &decomposition) const {
133 decomposition.setTo(buffer, length); // copy the string (algorithmic decomposition)
135 decomposition.setTo(FALSE, d, length); // read-only alias
normalizer2.cpp 436 UChar32 c, UChar *decomposition, int32_t capacity,
441 if(decomposition==NULL ? capacity!=0 : capacity<0) {
445 UnicodeString destString(decomposition, 0, capacity);
447 return destString.extract(decomposition, capacity, *pErrorCode);
455 UChar32 c, UChar *decomposition, int32_t capacity,
460 if(decomposition==NULL ? capacity!=0 : capacity<0) {
464 UnicodeString destString(decomposition, 0, capacity);
466 return destString.extract(decomposition, capacity, *pErrorCode);
filterednormalizer2.cpp 204 FilteredNormalizer2::getDecomposition(UChar32 c, UnicodeString &decomposition) const {
205 return set.contains(c) && norm2.getDecomposition(c, decomposition);
209 FilteredNormalizer2::getRawDecomposition(UChar32 c, UnicodeString &decomposition) const {
210 return set.contains(c) && norm2.getRawDecomposition(c, decomposition);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
TestDeprecatedNormalizerAPI.java 76 * <li>b) The decomposition according to the iterator is the same as
104 String iterDecomp = iter.decomposition();
124 errln("ERROR: " + hex(x) + " has decomposition (" + hex(decomp) + ")"
141 String decomp = iter.decomposition();
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
Collator.java 69 * 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");
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
TestDeprecatedNormalizerAPI.java 73 * <li>b) The decomposition according to the iterator is the same as
101 String iterDecomp = iter.decomposition();
121 errln("ERROR: " + hex(x) + " has decomposition (" + hex(decomp) + ")"
138 String decomp = iter.decomposition();
  /prebuilts/go/darwin-x86/test/
notinheap3.go 14 y [1024]byte // Prevent write decomposition
  /prebuilts/go/linux-x86/test/
notinheap3.go 14 y [1024]byte // Prevent write decomposition
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/python/cpython2/Lib/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/python/cpython3/Lib/test/
test_unicodedata.py 97 self.db.decomposition(char),
162 self.assertEqual(self.db.decomposition('\uFFFE'),'')
163 self.assertEqual(self.db.decomposition('\u00bc'), '<fraction> 0031 2044 0034')
165 self.assertRaises(TypeError, self.db.decomposition)
166 self.assertRaises(TypeError, self.db.decomposition, 'xx')
  /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')

Completed in 2165 milliseconds

1 2 3