/external/chromium_org/third_party/WebKit/Source/platform/transforms/ |
PerspectiveTransformOperation.cpp | 56 TransformationMatrix::DecomposedType decomp; local 57 toT.decompose(decomp); 59 if (decomp.perspectiveZ) { 60 double val = -1.0 / decomp.perspectiveZ;
|
RotateTransformOperation.cpp | 73 TransformationMatrix::DecomposedType decomp; local 74 toT.decompose(decomp); 77 double x = -decomp.quaternionX; 78 double y = -decomp.quaternionY; 79 double z = -decomp.quaternionZ; 87 angle = rad2deg(acos(decomp.quaternionW) * 2);
|
/external/chromium_org/ui/compositor/ |
debug_utils.cc | 71 gfx::DecomposedTransform decomp; local 73 gfx::DecomposeTransform(&decomp, layer->transform())) { 75 *out << L"translation: " << std::fixed << decomp.translate[0]; 76 *out << L", " << decomp.translate[1]; 80 *out << std::acos(decomp.quaternion[3]) * 360.0 / M_PI; 83 *out << L"scale: " << decomp.scale[0]; 84 *out << L", " << decomp.scale[1];
|
/external/chromium_org/third_party/icu/source/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;
|
ucdtest.cpp | 353 UnicodeString decomp=nfd->normalize(UnicodeString(start), errorCode); local 354 if(decomp.length()>1 && decomp[0]==0x49) { 360 errln("[canon start set of 0049] != [all c with canon decomp with 0049]"); 365 // "[canon start set of 0049]", "[all c with canon decomp with 0049]",
|
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...] |
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 | 167 logln("testing decomp..."); 271 UnicodeString decomp[1][3]; local 272 decomp[0][0] = str("\\u0f77"); 273 decomp[0][1] = str("\\u0f77"); 274 decomp[0][2] = str("\\u0fb2\\u0f71\\u0f80"); 281 staticTest(UNORM_NFD, 0, decomp, ARRAY_LENGTH(decomp), 1); 282 staticTest(UNORM_NFKD, 0, decomp, ARRAY_LENGTH(decomp), 2); 345 // Expect col2 x DECOMP => col [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;
|
ucdtest.cpp | 358 UnicodeString decomp=nfd->normalize(UnicodeString(start), errorCode); local 359 if(decomp.length()>1 && decomp[0]==0x49) { 365 errln("[canon start set of 0049] != [all c with canon decomp with 0049]"); 370 // "[canon start set of 0049]", "[all c with canon decomp with 0049]",
|
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_org/third_party/icu/source/common/ |
caniter.cpp | 510 const UChar *decomp=decompString.getBuffer(); local 518 U16_NEXT(decomp, decompPos, decompLen, decompCp); 524 if (cp == decompCp) { // if equal, eat another cp from decomp 528 if (decompPos == decompLen) { // done, have all decomp characters! 533 U16_NEXT(decomp, decompPos, decompLen, decompCp); 546 // if the decomp class < the segment class, we fail
|
normalizer2.cpp | 354 Norm2AllModes() : comp(impl, FALSE), decomp(impl), fcd(impl), fcc(impl, TRUE) {} 358 DecomposeNormalizer2 decomp; member in struct:Norm2AllModes 449 return allModes!=NULL ? &allModes->decomp : NULL; 476 return allModes!=NULL ? &allModes->decomp : NULL; 610 return &allModes->decomp;
|
normalizer2impl.cpp | 543 const UChar *decomp=NULL; local 548 return decomp; 555 decomp=buffer; 614 // decomp after-boundary: same as hasFCDBoundaryAfter(), [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
ucol_elm.h | 124 UChar *decomp; member in struct:__anon14129
|
ucol_elm.cpp | 1624 const UChar *decomp; local 1747 UChar decomp[256], comp[256]; local 1863 UChar decomp[256]; local [all...] |
/external/chromium_org/ui/events/ |
event.cc | 421 gfx::DecomposedTransform decomp; local 422 bool success = gfx::DecomposeTransform(&decomp, inverted_root_transform); 424 if (decomp.scale[0]) 425 offset_.set_x(offset_.x() * decomp.scale[0]); 426 if (decomp.scale[1]) 427 offset_.set_y(offset_.y() * decomp.scale[1]); 497 gfx::DecomposedTransform decomp; local 498 bool success = gfx::DecomposeTransform(&decomp, inverted_root_transform); 500 if (decomp.scale[0]) 501 radius_x_ *= decomp.scale[0] [all...] |
/external/chromium_org/ui/gfx/ |
transform_util.cc | 118 SkMatrix44 BuildPerspectiveMatrix(const DecomposedTransform& decomp) { 122 matrix.setDouble(3, i, decomp.perspective[i]); 126 SkMatrix44 BuildTranslationMatrix(const DecomposedTransform& decomp) { 129 matrix.setTranslate(SkDoubleToMScalar(decomp.translate[0]), 130 SkDoubleToMScalar(decomp.translate[1]), 131 SkDoubleToMScalar(decomp.translate[2])); 135 SkMatrix44 BuildSnappedTranslationMatrix(DecomposedTransform decomp) { 136 decomp.translate[0] = Round(decomp.translate[0]); 137 decomp.translate[1] = Round(decomp.translate[1]) 449 DecomposedTransform decomp; local [all...] |
transform_unittest.cc | 1285 DecomposedTransform decomp; local 1309 DecomposedTransform decomp; local [all...] |
/external/icu4c/common/ |
caniter.cpp | 511 const UChar *decomp=decompString.getBuffer(); local 519 U16_NEXT(decomp, decompPos, decompLen, decompCp); 525 if (cp == decompCp) { // if equal, eat another cp from decomp 529 if (decompPos == decompLen) { // done, have all decomp characters! 534 U16_NEXT(decomp, decompPos, decompLen, decompCp); 547 // if the decomp class < the segment class, we fail
|
normalizer2.cpp | 424 Norm2AllModes() : comp(impl, FALSE), decomp(impl), fcd(impl), fcc(impl, TRUE) {} 428 DecomposeNormalizer2 decomp; member in struct:Norm2AllModes 519 return allModes!=NULL ? &allModes->decomp : NULL; 541 return allModes!=NULL ? &allModes->decomp : NULL; 690 return &allModes->decomp; [all...] |
/external/icu4c/i18n/ |
ucol_elm.h | 124 UChar *decomp; member in struct:__anon21612
|
/external/zlib/src/contrib/blast/ |
blast.c | 278 local int decomp(struct state *s) function 399 err = 2; /* then skip decomp(), return error */ 401 err = decomp(&s); /* decompress */
|
/external/chromium/net/spdy/ |
spdy_framer.cc | 1237 z_stream* decomp = GetHeaderDecompressor(); local 1289 z_stream* decomp = GetHeaderDecompressor(); local [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
cnormtst.c | 1473 UChar decomp[32]; local [all...] |