/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/icu4c/samples/translit/answers/ |
unaccent.cpp | 13 normalizer("", Normalizer::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/icu4c/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 | 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:__anon2230
|
coleitr.cpp | 344 Normalizer::EMode decomp = order->getStrength() == Collator::IDENTICAL 347 text = new Normalizer(sourceText, decomp);
|
ucol_bld.cpp | [all...] |
/external/ppp/pppd/include/net/ |
if_ppp.h | 75 #define SC_VJ_RESET 0x00000800 /* need to reset VJ decomp */ 78 #define SC_DC_ERROR 0x00004000 /* non-fatal decomp error detected */ 79 #define SC_DC_FERROR 0x00008000 /* fatal decomp error detected */
|
pppio.h | 50 #define PPPIO_VJINIT _PPPIO(140) /* initialize VJ comp/decomp */ 75 #define CCP_ISUP 0x200 /* do packet comp/decomp */ 76 #define CCP_ERROR 0x400 /* (status) error in packet decomp */
|
ppp-comp.h | 104 #define DECOMP_ERROR 1 /* error detected before decomp. */ 105 #define DECOMP_FATALERROR 2 /* error detected after decomp. */
|
/external/icu4c/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...] |
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...] |
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...] |
/external/kernel-headers/original/linux/ |
if_ppp.h | 84 #define SC_DC_FERROR 0x00800000 /* fatal decomp error detected */ 85 #define SC_DC_ERROR 0x00400000 /* non-fatal decomp error detected */
|
/external/icu4c/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;
|
store.c | [all...] |
/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/test/cintltst/ |
cnormtst.c | 149 log_verbose("Testing unorm_normalize with Decomp canonical\n"); 178 log_verbose("Testing unorm_normalize with Decomp compat\n"); 207 log_verbose("Testing unorm_normalize with Decomp can compose compat\n"); 236 log_verbose("Testing unorm_normalize with compat decomp compose can\n"); [all...] |
/external/ppp/pppd/ |
pppd.h | 620 int ccp_fatal_error __P((int)); /* Test for fatal decomp error in kernel */ [all...] |