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

/external/harfbuzz_ng/src/
H A Dhb-ot-shape-normalize-private.hh58 bool (*decompose) (const hb_ot_shape_normalize_context_t *c, member in struct:hb_ot_shape_normalize_context_t
H A Dhb-ot-shape-complex-private.hh116 /* decompose()
120 bool (*decompose) (const hb_ot_shape_normalize_context_t *c, member in struct:hb_ot_complex_shaper_t
H A Dhb-ot-shape-normalize.cc71 * - The complex shapers can customize the compose and decompose functions to
91 return c->unicode->decompose (ab, a, b);
130 /* Returns 0 if didn't decompose, number of resulting characters otherwise. */
132 decompose (const hb_ot_shape_normalize_context_t *c, bool shortest, hb_codepoint_t ab) function
138 if (!c->decompose (c, ab, &a, &b) ||
154 if ((ret = decompose (c, shortest, a))) {
174 /* Returns 0 if didn't decompose, number of resulting characters otherwise. */
205 else if (decompose (c, shortest, buffer->cur().codepoint))
300 plan->shaper->decompose ? plan->shaper->decompose
[all...]
H A Dhb-unicode-private.hh51 HB_UNICODE_FUNC_IMPLEMENT (decompose) \
85 inline hb_bool_t decompose (hb_codepoint_t ab, function in struct:hb_unicode_funcs_t
89 return func.decompose (this, ab, a, b, user_data.decompose);
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DCorrelatedRandomVectorGenerator.java108 decompose(covariance, small);
136 decompose(covariance, small);
188 private void decompose(RealMatrix covariance, double small) method in class:CorrelatedRandomVectorGenerator
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DNormalizerData.java62 String decomp = decompose.get(ch);
80 NormalizerData(IntHashtable canonicalClass, IntStringHashtable decompose, argument
83 this.decompose = decompose;
100 return decompose.get(ch);
118 private IntStringHashtable decompose; field in class:NormalizerData
H A DNormalizerBuilder.java53 IntStringHashtable decompose = new IntStringHashtable(null);
61 buildDecompositionTables(canonicalClass, decompose, compose,
65 setMinimalDecomp(canonicalClass, decompose, compose,
68 return new NormalizerData(canonicalClass, decompose, compose,
113 IntHashtable canonicalClass, IntStringHashtable decompose,
192 decompose.put(value, decomp);
239 decompose.put(value, String.valueOf(first) + second);
257 private static void setMinimalDecomp(IntHashtable canonicalClass, IntStringHashtable decompose, argument
419 decompose.put(value, decomp);
112 buildDecompositionTables( IntHashtable canonicalClass, IntStringHashtable decompose, LongHashtable compose, BitSet isCompatibility, BitSet isExcluded) argument
/external/icu/icu4c/source/common/
H A Dnormlzr.cpp163 Normalizer::decompose(const UnicodeString& source, function in class:Normalizer
H A Dnormalizer2impl.h79 static inline int32_t decompose(UChar32 c, UChar buffer[3]) { function in class:Hangul
426 UnicodeString &decompose(const UnicodeString &src, UnicodeString &dest,
433 void decompose(const UChar *src, const UChar *limit,
437 const UChar *decompose(const UChar *src, const UChar *limit,
566 UBool decompose(UChar32 c, uint16_t norm16,
H A Dnormalizer2impl.cpp444 Normalizer2Impl::decompose(const UnicodeString &src, UnicodeString &dest, function in class:Normalizer2Impl
456 decompose(sArray, sArray+src.length(), dest, src.length(), errorCode);
461 Normalizer2Impl::decompose(const UChar *src, const UChar *limit, function in class:Normalizer2Impl
471 decompose(src, limit, &buffer, errorCode);
479 Normalizer2Impl::decompose(const UChar *src, const UChar *limit, function in class:Normalizer2Impl
545 if(!decompose(c, norm16, *buffer, errorCode)) {
576 if(!decompose(c, norm16, buffer, errorCode)) {
583 UBool Normalizer2Impl::decompose(UChar32 c, uint16_t norm16, function in class:Normalizer2Impl
590 // c does not decompose
593 // Hangul syllable: decompose algorithmicall
[all...]
/external/icu/icu4c/source/layout/
H A DHangulLayoutEngine.cpp132 static le_int32 decompose(LEUnicode syllable, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail) function
172 le_int32 c = decompose(ch, lead, vowel, trail);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DNormalizer.java705 * @param str The string to decompose.
712 public static String decompose(String str, boolean compat) { method in class:Normalizer
713 return decompose(str,compat,0);
719 * @param str The string to decompose.
727 public static String decompose(String str, boolean compat, int options) { method in class:Normalizer
734 * @param source The char array to decompose.
746 public static int decompose(char[] source,char[] target, boolean compat, int options) { method in class:Normalizer
747 return decompose(source, 0, source.length, target, 0, target.length, compat, options);
769 public static int decompose(char[] src,int srcStart, int srcLimit, method in class:Normalizer
1954 * try to decompose/cas
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/beautifulsoup/
H A DBeautifulSoup.py778 def decompose(self): member in class:Tag
/external/icu/icu4c/source/tools/gennorm2/
H A Dn2builder.cpp441 didDecompose|=builder.decompose(start, end, value);
448 Normalizer2DataBuilder::decompose(UChar32 start, UChar32 end, uint32_t value) { function in class:Normalizer2DataBuilder
509 int32_t hangulLength=Hangul::decompose(c, buffer);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DNormalizer2Impl.java63 public static int decompose(int c, Appendable buffer) { method in class:Normalizer2Impl.Hangul
770 // c does not decompose
772 // Hangul syllable: decompose algorithmically
774 Hangul.decompose(c, buffer);
802 // c does not decompose
805 // Hangul syllable: decompose algorithmically
926 public Appendable decompose(CharSequence s, StringBuilder dest) { method in class:Normalizer2Impl
927 decompose(s, 0, s.length(), dest, s.length());
935 public void decompose(CharSequence s, int src, int limit, StringBuilder dest, method in class:Normalizer2Impl
942 decompose(
948 public int decompose(CharSequence s, int src, int limit, method in class:Normalizer2Impl
1769 private void decompose(int c, int norm16, method in class:Normalizer2Impl
[all...]
/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 ...

Completed in 2856 milliseconds