HomeSort by relevance Sort by last modified time
    Searched defs:decomp (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
PerspectiveTransformOperation.cpp 51 TransformationMatrix::DecomposedType decomp; local
52 toT.decompose(decomp);
54 if (decomp.perspectiveZ) {
55 double val = -1.0 / decomp.perspectiveZ;
RotateTransformOperation.cpp 129 TransformationMatrix::DecomposedType decomp; local
130 toT.decompose(decomp);
133 double x = -decomp.quaternionX;
134 double y = -decomp.quaternionY;
135 double z = -decomp.quaternionZ;
143 angle = rad2deg(std::acos(decomp.quaternionW) * 2);
  /external/chromium_org/ui/compositor/
debug_utils.cc 87 gfx::DecomposedTransform decomp; local
89 gfx::DecomposeTransform(&decomp, layer->transform())) {
91 *out << L"translation: " << std::fixed << decomp.translate[0];
92 *out << L", " << decomp.translate[1];
96 *out << std::acos(decomp.quaternion[3]) * 360.0 / M_PI;
99 *out << L"scale: " << decomp.scale[0];
100 *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 359 UnicodeString decomp=nfd->normalize(UnicodeString(start), errorCode); local
360 if(decomp.length()>1 && decomp[0]==0x49) {
366 errln("[canon start set of 0049] != [all c with canon decomp with 0049]");
371 // "[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 134 UnicodeString decomp; local
136 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec);
140 for (int i = 0; i < decomp.length(); ++i) { // don't worry about surrogates
141 switch (getType(decomp.charAt(i))) {
142 case 0: t = getType(decomp.charAt(i+1));
145 case 1: t = getType(decomp.charAt(i-1));
148 case 2: t = getType(decomp.charAt(i-1));
180 UnicodeString decomp; local
182 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec);
191 for (int32_t i = 0; i < decomp.length(); ++i)
    [all...]
tstnorm.cpp 168 logln("testing decomp...");
272 UnicodeString decomp[1][3]; local
273 decomp[0][0] = str("\\u0f77");
274 decomp[0][1] = str("\\u0f77");
275 decomp[0][2] = str("\\u0fb2\\u0f71\\u0f80");
282 staticTest(UNORM_NFD, 0, decomp, ARRAY_LENGTH(decomp), 1);
283 staticTest(UNORM_NFKD, 0, decomp, ARRAY_LENGTH(decomp), 2);
346 // Expect col2 x DECOMP => col
    [all...]
  /external/icu/icu4c/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 359 UnicodeString decomp=nfd->normalize(UnicodeString(start), errorCode); local
360 if(decomp.length()>1 && decomp[0]==0x49) {
366 errln("[canon start set of 0049] != [all c with canon decomp with 0049]");
371 // "[canon start set of 0049]", "[all c with canon decomp with 0049]",
  /external/chromium_org/third_party/icu/source/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 425 Norm2AllModes() : comp(impl, FALSE), decomp(impl), fcd(impl), fcc(impl, TRUE) {}
429 DecomposeNormalizer2 decomp; member in struct:Norm2AllModes
515 return nfcSingleton!=NULL ? &nfcSingleton->decomp : NULL;
535 return nfkcSingleton!=NULL ? &nfkcSingleton->decomp : NULL;
684 return &allModes->decomp;
    [all...]
normalizer2impl.cpp 565 const UChar *decomp=NULL; local
570 return decomp;
577 decomp=buffer;
688 // decomp after-boundary: same as hasFCDBoundaryAfter(),
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucol_elm.h 124 UChar *decomp; member in struct:__anon16742
ucol_elm.cpp 1633 const UChar *decomp; local
1756 UChar decomp[256], comp[256]; local
1871 UChar decomp[256]; local
    [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 1321 DecomposedTransform decomp; local
1345 DecomposedTransform decomp; local
    [all...]
  /external/icu/icu4c/source/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 425 Norm2AllModes() : comp(impl, FALSE), decomp(impl), fcd(impl), fcc(impl, TRUE) {}
429 DecomposeNormalizer2 decomp; member in struct:Norm2AllModes
515 return nfcSingleton!=NULL ? &nfcSingleton->decomp : NULL;
535 return nfkcSingleton!=NULL ? &nfkcSingleton->decomp : NULL;
684 return &allModes->decomp;
    [all...]
normalizer2impl.cpp 667 const UChar *decomp=NULL; local
672 return decomp;
679 decomp=buffer;
790 // decomp after-boundary: same as hasFCDBoundaryAfter(),
    [all...]
  /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_org/ui/events/
event.cc 492 gfx::DecomposedTransform decomp; local
493 bool success = gfx::DecomposeTransform(&decomp, inverted_root_transform);
495 if (decomp.scale[0])
496 offset_.set_x(offset_.x() * decomp.scale[0]);
497 if (decomp.scale[1])
498 offset_.set_y(offset_.y() * decomp.scale[1]);
566 gfx::DecomposedTransform decomp; local
567 bool success = gfx::DecomposeTransform(&decomp, inverted_root_transform);
569 if (decomp.scale[0])
570 radius_x_ *= decomp.scale[0]
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cnormtst.c 1477 UChar decomp[32]; local
1520 UChar decomp[32]; local
    [all...]
  /external/icu/icu4c/source/i18n/
collationbuilder.cpp 1139 UnicodeString decomp; local
    [all...]
rulebasedcollator.cpp 791 U16_NEXT_UNSAFE(decomp, index, c);
805 decomp = nfcImpl.getDecomposition(c, buffer, length);
806 if(decomp == NULL) { return c; }
808 U16_NEXT_UNSAFE(decomp, index, c);
818 const UChar *decomp; member in class:__anon5614::NFDIterator
    [all...]

Completed in 1351 milliseconds

1 2