Searched refs:decomp (Results 1 - 15 of 15) sorted by relevance

/external/webkit/WebCore/platform/graphics/transforms/
H A DPerspectiveTransformOperation.cpp52 TransformationMatrix::DecomposedType decomp; local
53 toT.decompose(decomp);
55 return PerspectiveTransformOperation::create(decomp.perspectiveZ ? -1.0 / decomp.perspectiveZ : 0.0);
H A DRotateTransformOperation.cpp72 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);
H A DTransformationMatrix.cpp1046 bool TransformationMatrix::decompose(DecomposedType& decomp) const
1049 memset(&decomp, 0, sizeof(decomp));
1050 decomp.perspectiveW = 1;
1051 decomp.scaleX = 1;
1052 decomp.scaleY = 1;
1053 decomp.scaleZ = 1;
1056 if (!WebCore::decompose(m_matrix, decomp))
1061 void TransformationMatrix::recompose(const DecomposedType& decomp) argument
1066 m_matrix[0][3] = (float) decomp
[all...]
H A DTransformationMatrix.h259 bool decompose(DecomposedType& decomp) const;
260 void recompose(const DecomposedType& decomp);
/external/bluetooth/glib/glib/
H A Dgunidecomp.c0 /* 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...]
H A Dguniprop.c837 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);
/external/icu4c/test/intltest/
H A Dcanittst.cpp174 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;
H A Dtransrt.cpp133 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
[all...]
H A Dtstnorm.cpp161 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);
H A Dregcoll.cpp166 String[] decomp = {
178 static const UChar decomp[][CollationRegressionTest::MAX_TOKEN_LEN] = local
193 compareArray(*c, decomp, ARRAY_LENGTH(decomp));
/external/icu4c/tools/gennorm/
H A Dgennorm.c426 uint32_t decomp[40]; local
491 length=u_parseCodePoints(s, decomp, sizeof(decomp)/4, pErrorCode);
503 norm.nfkd=decomp;
512 norm.nfd=decomp;
/external/icu4c/common/
H A Dcaniter.cpp508 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/
H A Ducol_elm.cpp1619 UChar decomp[256] = { 0 }; local
1627 noOfDec = unorm_getDecomposition(u32, FALSE, decomp, 256);
1628 //if((noOfDec = unorm_normalize(comp, len, UNORM_NFD, 0, decomp, 256, status)) > 1
1629 //|| (noOfDec == 1 && *decomp != (UChar)u32))
1634 if(ucol_strcoll(tempColl, comp, len, decomp, noOfDec) != UCOL_EQUAL) {
1639 fprintf(stderr, "%04X ", decomp[i]);
1644 el.cPoints = decomp;
1657 ucol_setText(colEl, decomp, noOfDec, status);
1722 UChar decomp[256], comp[256]; local
1725 decLen = unorm_normalize(data, len, UNORM_NFD, 0, decomp, 25
1838 UChar decomp[256]; local
[all...]
H A Ducol_elm.h124 UChar *decomp; member in struct:__anon1419
/external/zlib/contrib/blast/
H A Dblast.c276 local int decomp(struct state *s) function
397 err = 2; /* then skip decomp(), return error */
399 err = decomp(&s); /* decompress */

Completed in 301 milliseconds