Home
last modified time | relevance | path

Searched refs:decompose (Results 1 – 25 of 166) sorted by relevance

1234567

/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/
DNormalizerData.java67 String decomp = decompose.get(ch); in getRecursiveDecomposition()
85 NormalizerData(IntHashtable canonicalClass, IntStringHashtable decompose, in NormalizerData() argument
88 this.decompose = decompose; in NormalizerData()
105 return decompose.get(ch); in getRawDecompositionMapping()
123 private IntStringHashtable decompose; field in NormalizerData
DNormalizerBuilder.java56 IntStringHashtable decompose = new IntStringHashtable(null); in build() local
64 buildDecompositionTables(canonicalClass, decompose, compose, in build()
68 setMinimalDecomp(canonicalClass, decompose, compose, in build()
71 return new NormalizerData(canonicalClass, decompose, compose, in build()
116 IntHashtable canonicalClass, IntStringHashtable decompose, in buildDecompositionTables() argument
195 decompose.put(value, decomp); in buildDecompositionTables()
242 decompose.put(value, String.valueOf(first) + second); in buildDecompositionTables()
260 private static void setMinimalDecomp(IntHashtable canonicalClass, IntStringHashtable decompose, in setMinimalDecomp() argument
422 decompose.put(value, decomp); in setMinimalDecomp()
DTestDeprecatedNormalizerAPI.java67 Normalizer.decompose(s,false,0); in TestNormalizerAPI()
105 String normDecomp = Normalizer.decompose(chString, compat); in doTestComposedChars()
122 String decomp = Normalizer.decompose(xString, compat); in assertNoDecomp()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
DNormalizerData.java64 String decomp = decompose.get(ch); in getRecursiveDecomposition()
82 NormalizerData(IntHashtable canonicalClass, IntStringHashtable decompose, in NormalizerData() argument
85 this.decompose = decompose; in NormalizerData()
102 return decompose.get(ch); in getRawDecompositionMapping()
120 private IntStringHashtable decompose; field in NormalizerData
DNormalizerBuilder.java55 IntStringHashtable decompose = new IntStringHashtable(null); in build() local
63 buildDecompositionTables(canonicalClass, decompose, compose, in build()
67 setMinimalDecomp(canonicalClass, decompose, compose, in build()
70 return new NormalizerData(canonicalClass, decompose, compose, in build()
115 IntHashtable canonicalClass, IntStringHashtable decompose, in buildDecompositionTables() argument
194 decompose.put(value, decomp); in buildDecompositionTables()
241 decompose.put(value, String.valueOf(first) + second); in buildDecompositionTables()
259 private static void setMinimalDecomp(IntHashtable canonicalClass, IntStringHashtable decompose, in setMinimalDecomp() argument
421 decompose.put(value, decomp); in setMinimalDecomp()
DTestDeprecatedNormalizerAPI.java64 Normalizer.decompose(s,false,0); in TestNormalizerAPI()
102 String normDecomp = Normalizer.decompose(chString, compat); in doTestComposedChars()
119 String decomp = Normalizer.decompose(xString, compat); in assertNoDecomp()
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/table/
DRangeKeyTest.java35 ImmutableList<RangeKey> keys = RangeKey.decompose(RangeTree.empty()); in testEmpty()
41 ImmutableList<RangeKey> keys = RangeKey.decompose(RangeTree.from(RangeSpecification.empty())); in testZeroLengthMatch()
47 ImmutableList<RangeKey> keys = RangeKey.decompose(ranges("xxx", "xxxx", "xxxxx")); in testOnlyAnyPath()
53 ImmutableList<RangeKey> keys = RangeKey.decompose(ranges("123xxx", "123xxxx", "123xxxxx")); in testSimple()
60 RangeKey.decompose(ranges("1x", "1xx", "1xx23", "1xx23x", "1xx23xx")); in testEmbeddedRanges()
66 ImmutableList<RangeKey> keys = RangeKey.decompose(ranges("123xxxx", "1234x", "1234xx")); in testSplitFactors()
74 ImmutableList<RangeKey> keys = RangeKey.decompose(ranges("12[0-4]xxx", "12xxx", "12xx")); in testMergeStrategy()
98 ImmutableList<RangeKey> keys = RangeKey.decompose(ranges); in testSimpleRealWorldData()
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-ot-shape-normalize.cc79 return (bool) c->unicode->decompose (ab, a, b); in decompose_unicode()
120 decompose (const hb_ot_shape_normalize_context_t *c, bool shortest, hb_codepoint_t ab) in decompose() function
126 if (!c->decompose (c, ab, &a, &b) || in decompose()
142 if ((ret = decompose (c, shortest, a))) { in decompose()
175 if (decompose (c, shortest, u)) in decompose_current_character()
305 plan->shaper->decompose ? plan->shaper->decompose : decompose_unicode, in _hb_ot_shape_normalize()
Dhb-unicode.hh50 HB_UNICODE_FUNC_IMPLEMENT (decompose) \
82 hb_bool_t decompose (hb_codepoint_t ab, in decompose() function
86 return func.decompose (this, ab, a, b, user_data.decompose); in decompose()
Dhb-ot-shape-normalize.hh59 bool (*decompose) (const hb_ot_shape_normalize_context_t *c, member
/third_party/harfbuzz/src/
Dhb-ot-shape-normalize.cc83 return (bool) c->unicode->decompose (ab, a, b); in decompose_unicode()
125 decompose (const hb_ot_shape_normalize_context_t *c, bool shortest, hb_codepoint_t ab) in decompose() function
131 if (!c->decompose (c, ab, &a, &b) || in decompose()
147 if ((ret = decompose (c, shortest, a))) { in decompose()
180 if (decompose (c, shortest, u)) in decompose_current_character()
315 plan->shaper->decompose ? plan->shaper->decompose : decompose_unicode, in _hb_ot_shape_normalize()
Dhb-unicode.hh50 HB_UNICODE_FUNC_IMPLEMENT (decompose) \
82 hb_bool_t decompose (hb_codepoint_t ab, in decompose() function
86 return func.decompose (this, ab, a, b, user_data.decompose); in decompose()
Dhb-ot-shape-normalize.hh59 bool (*decompose) (const hb_ot_shape_normalize_context_t *c, member
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-shape-normalize.cc83 return (bool) c->unicode->decompose (ab, a, b); in decompose_unicode()
125 decompose (const hb_ot_shape_normalize_context_t *c, bool shortest, hb_codepoint_t ab) in decompose() function
131 if (!c->decompose (c, ab, &a, &b) || in decompose()
147 if ((ret = decompose (c, shortest, a))) { in decompose()
180 if (decompose (c, shortest, u)) in decompose_current_character()
316 plan->shaper->decompose ? plan->shaper->decompose : decompose_unicode, in _hb_ot_shape_normalize()
Dhb-unicode.hh50 HB_UNICODE_FUNC_IMPLEMENT (decompose) \
82 hb_bool_t decompose (hb_codepoint_t ab, in decompose() function
86 return func.decompose (this, ab, a, b, user_data.decompose); in decompose()
Dhb-ot-shape-normalize.hh60 bool (*decompose) (const hb_ot_shape_normalize_context_t *c, member
/third_party/icu/icu4c/source/test/intltest/
Dtransrt.cpp139 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec); in is()
185 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec); in is()
435 Normalizer::decompose(a, FALSE, 0, aa, ec); in isSame()
436 Normalizer::decompose(b, FALSE, 0, bb, ec); in isSame()
675 Normalizer::decompose(targ, FALSE, 0, targD, status); in test2()
689 Normalizer::decompose(srcStr, FALSE, 0, cs2, status); in test2()
725 Normalizer::decompose(targ, FALSE, 0, targD, status); in test2()
737 Normalizer::decompose(srcStr, FALSE, 0, cs2, status); in test2()
775 Normalizer::decompose(targ, FALSE, 0, targD, status); in test2()
800 Normalizer::decompose(targ, FALSE, 0, targ2, status); in test2()
[all …]
Dtstnrapi.cpp65 Normalizer::decompose(tel, TRUE, 0, nfkd, errorCode); in TestNormalizerAPI()
155 Normalizer::decompose(s, FALSE, 0, s, status); in TestNormalizerAPI()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
Dmatrix_decompose.hpp35 GLM_FUNC_DECL bool decompose(
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DNormalizer2Impl.java86 public static int decompose(int c, Appendable buffer) { in decompose() method in Normalizer2Impl.Hangul
820 Hangul.decompose(c, buffer); in getDecomposition()
983 public Appendable decompose(CharSequence s, StringBuilder dest) { in decompose() method in Normalizer2Impl
984 decompose(s, 0, s.length(), dest, s.length()); in decompose()
992 public void decompose(CharSequence s, int src, int limit, StringBuilder dest, in decompose() method in Normalizer2Impl
999 decompose(s, src, limit, buffer); in decompose()
1005 public int decompose(CharSequence s, int src, int limit, in decompose() method in Normalizer2Impl
1057 decompose(c, norm16, buffer); in decompose()
1080 decompose(s, 0, limit, buffer); in decomposeAndAppend()
1817 decompose(c, norm16, buffer); in decomposeShort()
[all …]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DNormalizer2Impl.java81 public static int decompose(int c, Appendable buffer) { in decompose() method in Normalizer2Impl.Hangul
811 Hangul.decompose(c, buffer); in getDecomposition()
974 public Appendable decompose(CharSequence s, StringBuilder dest) { in decompose() method in Normalizer2Impl
975 decompose(s, 0, s.length(), dest, s.length()); in decompose()
983 public void decompose(CharSequence s, int src, int limit, StringBuilder dest, in decompose() method in Normalizer2Impl
990 decompose(s, src, limit, buffer); in decompose()
996 public int decompose(CharSequence s, int src, int limit, in decompose() method in Normalizer2Impl
1048 decompose(c, norm16, buffer); in decompose()
1071 decompose(s, 0, limit, buffer); in decomposeAndAppend()
1808 decompose(c, norm16, buffer); in decomposeShort()
[all …]
/third_party/icu/icu4c/source/common/
Dnormalizer2impl.h102 static inline int32_t decompose(UChar32 c, UChar buffer[3]) { in decompose() function
476 UnicodeString &decompose(const UnicodeString &src, UnicodeString &dest,
483 void decompose(const UChar *src, const UChar *limit,
487 const UChar *decompose(const UChar *src, const UChar *limit,
664 UBool decompose(UChar32 c, uint16_t norm16,
/third_party/skia/third_party/externals/icu/source/common/
Dnormalizer2impl.h102 static inline int32_t decompose(UChar32 c, UChar buffer[3]) { in decompose() function
476 UnicodeString &decompose(const UnicodeString &src, UnicodeString &dest,
483 void decompose(const UChar *src, const UChar *limit,
487 const UChar *decompose(const UChar *src, const UChar *limit,
664 UBool decompose(UChar32 c, uint16_t norm16,
/third_party/flutter/skia/third_party/externals/icu/source/common/
Dnormalizer2impl.h102 static inline int32_t decompose(UChar32 c, UChar buffer[3]) { in decompose() function
476 UnicodeString &decompose(const UnicodeString &src, UnicodeString &dest,
483 void decompose(const UChar *src, const UChar *limit,
487 const UChar *decompose(const UChar *src, const UChar *limit,
655 UBool decompose(UChar32 c, uint16_t norm16,
/third_party/node/deps/icu-small/source/common/
Dnormalizer2impl.h102 static inline int32_t decompose(UChar32 c, UChar buffer[3]) { in decompose() function
476 UnicodeString &decompose(const UnicodeString &src, UnicodeString &dest,
483 void decompose(const UChar *src, const UChar *limit,
487 const UChar *decompose(const UChar *src, const UChar *limit,
664 UBool decompose(UChar32 c, uint16_t norm16,

1234567