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

  /external/webkit/WebCore/platform/graphics/transforms/
PerspectiveTransformOperation.cpp 52 TransformationMatrix::DecomposedType decomp; local
53 toT.decompose(decomp);
55 return PerspectiveTransformOperation::create(decomp.perspectiveZ ? -1.0 / decomp.perspectiveZ : 0.0);
RotateTransformOperation.cpp 72 TransformationMatrix::DecomposedType decomp; local
73 toT.decompose(decomp);
76 double x = -decomp.quaternionX;
77 double y = -decomp.quaternionY;
78 double z = -decomp.quaternionZ;
86 angle = rad2deg(acos(decomp.quaternionW) * 2);
TransformationMatrix.cpp     [all...]
TransformationMatrix.h 259 bool decompose(DecomposedType& decomp) const;
260 void recompose(const DecomposedType& decomp);
  /external/bluetooth/glib/glib/
gunidecomp.c 0 /* decomp.c - Character decomposition.
225 const gchar *decomp; local
236 else if ((decomp = find_decomposition (ch, FALSE)) != NULL)
241 *result_len = g_utf8_strlen (decomp, -1);
244 for (p = decomp, i = 0; *p != '\0'; p = g_utf8_next_char (p), i++)
366 const gchar *decomp; local
377 decomp = find_decomposition (wc, do_compat);
379 if (decomp)
380 n_wc += g_utf8_strlen (decomp, -1);
396 const gchar *decomp; local
    [all...]
guniprop.c 837 gunichar *decomp; local
839 decomp = g_unicode_canonical_decomposition (c, &decomp_len);
842 if (decomp[i] != 0x307 /* COMBINING DOT ABOVE */)
843 len += g_unichar_to_utf8 (g_unichar_toupper (decomp[i]), out_buffer ? out_buffer + len : NULL);
845 g_free (decomp);
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
canittst.cpp 174 UnicodeString decomp, comp; local
179 Normalizer::decompose(s, FALSE, 0, decomp, status);
182 // skip characters that don't have either decomp.
184 if (s == decomp && s == comp) {
194 if (item == decomp) gotDecomp = TRUE;
transrt.cpp 133 UnicodeString decomp; local
135 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec);
139 for (int i = 0; i < decomp.length(); ++i) { // don't worry about surrogates
140 switch (getType(decomp.charAt(i))) {
141 case 0: t = getType(decomp.charAt(i+1));
144 case 1: t = getType(decomp.charAt(i-1));
147 case 2: t = getType(decomp.charAt(i-1));
179 UnicodeString decomp; local
181 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec);
190 for (int32_t i = 0; i < decomp.length(); ++i)
    [all...]
tstnorm.cpp 161 logln("testing decomp...");
265 UnicodeString decomp[1][3]; local
266 decomp[0][0] = str("\\u0f77");
267 decomp[0][1] = str("\\u0f77");
268 decomp[0][2] = str("\\u0fb2\\u0f71\\u0f80");
275 staticTest(UNORM_NFD, 0, decomp, ARRAY_LENGTH(decomp), 1);
276 staticTest(UNORM_NFKD, 0, decomp, ARRAY_LENGTH(decomp), 2);
339 // Expect col2 x DECOMP => col
    [all...]
regcoll.cpp 166 String[] decomp = {
170 "\u00C0", "=", "A\u0300" // Decomp should make these equal
178 static const UChar decomp[][CollationRegressionTest::MAX_TOKEN_LEN] = local
193 compareArray(*c, decomp, ARRAY_LENGTH(decomp));
    [all...]
  /external/icu4c/test/intltest/
canittst.cpp 178 UnicodeString decomp, comp; local
183 Normalizer::decompose(s, FALSE, 0, decomp, status);
186 // skip characters that don't have either decomp.
188 if (s == decomp && s == comp) {
198 if (item == decomp) gotDecomp = TRUE;
transrt.cpp 133 UnicodeString decomp; local
135 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec);
139 for (int i = 0; i < decomp.length(); ++i) { // don't worry about surrogates
140 switch (getType(decomp.charAt(i))) {
141 case 0: t = getType(decomp.charAt(i+1));
144 case 1: t = getType(decomp.charAt(i-1));
147 case 2: t = getType(decomp.charAt(i-1));
179 UnicodeString decomp; local
181 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec);
190 for (int32_t i = 0; i < decomp.length(); ++i)
    [all...]
tstnorm.cpp 164 logln("testing decomp...");
268 UnicodeString decomp[1][3]; local
269 decomp[0][0] = str("\\u0f77");
270 decomp[0][1] = str("\\u0f77");
271 decomp[0][2] = str("\\u0fb2\\u0f71\\u0f80");
278 staticTest(UNORM_NFD, 0, decomp, ARRAY_LENGTH(decomp), 1);
279 staticTest(UNORM_NFKD, 0, decomp, ARRAY_LENGTH(decomp), 2);
342 // Expect col2 x DECOMP => col
    [all...]
regcoll.cpp 168 String[] decomp = {
172 "\u00C0", "=", "A\u0300" // Decomp should make these equal
180 static const UChar decomp[][CollationRegressionTest::MAX_TOKEN_LEN] = local
195 compareArray(*c, decomp, ARRAY_LENGTH(decomp));
    [all...]
  /external/chromium/third_party/icu/source/tools/gennorm/
gennorm.c 426 uint32_t decomp[40]; local
491 length=u_parseCodePoints(s, decomp, sizeof(decomp)/4, pErrorCode);
503 norm.nfkd=decomp;
512 norm.nfd=decomp;
  /external/chromium/third_party/icu/source/common/
caniter.cpp 508 const UChar *decomp; local
511 decomp = unorm_getCanonicalDecomposition(comp, stackBuffer, &decompLen);
512 if(decomp == NULL) {
518 decomp = stackBuffer;
529 UTF_NEXT_CHAR(decomp, decompPos, decompLen, decompCp);
538 if (cp == decompCp) { // if equal, eat another cp from decomp
542 if (decompPos == decompLen) { // done, have all decomp characters!
550 UTF_NEXT_CHAR(decomp, decompPos, decompLen, decompCp);
576 // if the decomp class < the segment class, we fail
  /external/icu4c/i18n/
ucol_elm.cpp 1622 const UChar *decomp; local
1726 UChar decomp[256], comp[256]; local
1842 UChar decomp[256]; local
    [all...]
ucol_elm.h 124 UChar *decomp; member in struct:__anon3905
  /external/chromium/third_party/icu/source/i18n/
ucol_elm.cpp 1619 UChar decomp[256] = { 0 }; local
1722 UChar decomp[256], comp[256]; local
1838 UChar decomp[256]; local
    [all...]
ucol_elm.h 124 UChar *decomp; member in struct:__anon2886
  /external/zlib/contrib/blast/
blast.c 276 local int decomp(struct state *s) function
397 err = 2; /* then skip decomp(), return error */
399 err = decomp(&s); /* decompress */
  /external/icu4c/common/
caniter.cpp 508 const UChar *decomp=decompString.getBuffer(); local
516 U16_NEXT(decomp, decompPos, decompLen, decompCp);
522 if (cp == decompCp) { // if equal, eat another cp from decomp
526 if (decompPos == decompLen) { // done, have all decomp characters!
531 U16_NEXT(decomp, decompPos, decompLen, decompCp);
544 // if the decomp class < the segment class, we fail
normalizer2.cpp 345 Norm2AllModes() : comp(impl, FALSE), decomp(impl), fcd(impl), fcc(impl, TRUE) {}
349 DecomposeNormalizer2 decomp; member in struct:Norm2AllModes
440 return allModes!=NULL ? &allModes->decomp : NULL;
467 return allModes!=NULL ? &allModes->decomp : NULL;
601 return &allModes->decomp;
normalizer2impl.cpp 517 const UChar *decomp=NULL; local
522 return decomp;
529 decomp=buffer;
588 // decomp after-boundary: same as hasFCDBoundaryAfter(),
    [all...]

Completed in 572 milliseconds