HomeSort by relevance Sort by last modified time
    Searched defs:decompose (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape-normalize-private.hh 59 bool (*decompose) (const hb_ot_shape_normalize_context_t *c, member in struct:hb_ot_shape_normalize_context_t
hb-ot-shape-complex-private.hh 115 /* decompose()
119 bool (*decompose) (const hb_ot_shape_normalize_context_t *c, member in struct:hb_ot_complex_shaper_t
hb-ot-shape-normalize.cc 71 * - 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
136 if (!c->decompose (c, ab, &a, &b) ||
152 if ((ret = decompose (c, shortest, a))) {
172 /* Returns 0 if didn't decompose, number of resulting characters otherwise. */
203 else if (decompose (c, shortest, buffer->cur().codepoint))
281 plan->shaper->decompose ? plan->shaper->decompose : decompose_unicode
    [all...]
hb-unicode-private.hh 53 HB_UNICODE_FUNC_IMPLEMENT (decompose) \
87 inline hb_bool_t decompose (hb_codepoint_t ab, function in struct:hb_unicode_funcs_t
91 return func.decompose (this, ab, a, b, user_data.decompose);
  /external/harfbuzz_ng/src/
hb-ot-shape-normalize-private.hh 60 bool (*decompose) (const hb_ot_shape_normalize_context_t *c, member in struct:hb_ot_shape_normalize_context_t
hb-ot-shape-complex-private.hh 113 /* decompose()
117 bool (*decompose) (const hb_ot_shape_normalize_context_t *c, member in struct:hb_ot_complex_shaper_t
hb-ot-shape-normalize.cc 71 * - 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
136 if (!c->decompose (c, ab, &a, &b) ||
152 if ((ret = decompose (c, shortest, a))) {
172 /* Returns 0 if didn't decompose, number of resulting characters otherwise. */
204 else if (decompose (c, shortest, buffer->cur().codepoint))
283 plan->shaper->decompose ? plan->shaper->decompose : decompose_unicode
    [all...]
hb-unicode-private.hh 53 HB_UNICODE_FUNC_IMPLEMENT (decompose) \
87 inline hb_bool_t decompose (hb_codepoint_t ab, function in struct:hb_unicode_funcs_t
91 return func.decompose (this, ab, a, b, user_data.decompose);
  /external/chromium_org/third_party/icu/source/common/
normlzr.cpp 164 Normalizer::decompose(const UnicodeString& source, function in class:Normalizer
normalizer2impl.cpp 404 Normalizer2Impl::decompose(const UChar *src, const UChar *limit, function in class:Normalizer2Impl
470 if(!decompose(c, norm16, *buffer, errorCode)) {
490 // Decompose a short piece of text which is likely to contain characters that
501 if(!decompose(c, norm16, buffer, errorCode)) {
508 UBool Normalizer2Impl::decompose(UChar32 c, uint16_t norm16, function in class:Normalizer2Impl
515 // c does not decompose
518 // Hangul syllable: decompose algorithmically
520 return buffer.appendZeroCC(jamos, jamos+Hangul::decompose(c, jamos), errorCode);
547 // c does not decompose
550 // Hangul syllable: decompose algorithmicall
    [all...]
normalizer2impl.h 75 static inline int32_t decompose(UChar32 c, UChar buffer[3]) { function in class:Hangul
327 const UChar *decompose(const UChar *src, const UChar *limit,
457 UBool decompose(UChar32 c, uint16_t norm16,
  /external/icu4c/common/
normlzr.cpp 163 Normalizer::decompose(const UnicodeString& source, function in class:Normalizer
normalizer2impl.cpp 427 Normalizer2Impl::decompose(const UChar *src, const UChar *limit, function in class:Normalizer2Impl
493 if(!decompose(c, norm16, *buffer, errorCode)) {
513 // Decompose a short piece of text which is likely to contain characters that
524 if(!decompose(c, norm16, buffer, errorCode)) {
531 UBool Normalizer2Impl::decompose(UChar32 c, uint16_t norm16, function in class:Normalizer2Impl
538 // c does not decompose
541 // Hangul syllable: decompose algorithmically
543 return buffer.appendZeroCC(jamos, jamos+Hangul::decompose(c, jamos), errorCode);
570 // c does not decompose
573 // Hangul syllable: decompose algorithmicall
    [all...]
normalizer2impl.h 76 static inline int32_t decompose(UChar32 c, UChar buffer[3]) { function in class:Hangul
419 const UChar *decompose(const UChar *src, const UChar *limit,
551 UBool decompose(UChar32 c, uint16_t norm16,
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
AffineTransform.cpp 312 from.decompose(srA);
313 this->decompose(srB);
372 bool AffineTransform::decompose(DecomposedType& decomp) const function in class:WebCore::AffineTransform
TransformationMatrix.cpp 300 static bool decompose(const TransformationMatrix::Matrix4& mat, TransformationMatrix::DecomposedType& result) function in namespace:WebCore
1389 bool TransformationMatrix::decompose(DecomposedType& decomp) const function in class:WebCore::TransformationMatrix
    [all...]
  /external/icu4c/layout/
HangulLayoutEngine.cpp 132 static le_int32 decompose(LEUnicode syllable, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail) function
172 le_int32 c = decompose(ch, lead, vowel, trail);
  /external/chromium_org/third_party/icu/source/tools/gennorm2/
n2builder.cpp 415 didDecompose|=builder.decompose(start, end, value);
422 Normalizer2DataBuilder::decompose(UChar32 start, UChar32 end, uint32_t value) { function in class:Normalizer2DataBuilder
482 int32_t hangulLength=Hangul::decompose(c, buffer);
    [all...]
  /external/icu4c/tools/gennorm2/
n2builder.cpp 440 didDecompose|=builder.decompose(start, end, value);
447 Normalizer2DataBuilder::decompose(UChar32 start, UChar32 end, uint32_t value) { function in class:Normalizer2DataBuilder
508 int32_t hangulLength=Hangul::decompose(c, buffer);
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py 778 def decompose(self): member in class:Tag
    [all...]
  /prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 

Completed in 728 milliseconds