HomeSort by relevance Sort by last modified time
    Searched defs:xform (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/win/
TransformationMatrixWin.cpp 33 TransformationMatrix::operator XFORM() const
35 XFORM xform; local
36 xform.eM11 = a();
37 xform.eM12 = b();
38 xform.eM21 = c();
39 xform.eM22 = d();
40 xform.eDx = e();
41 xform.eDy = f();
43 return xform;
    [all...]
GraphicsContextWin.cpp 126 XFORM xform = TransformationMatrix().translate(-dstRect.x(), -dstRect.y()); local
128 ::SetWorldTransform(bitmapDC, &xform);
169 XFORM xform = TransformationMatrix().scaleNonUniform(size.width(), size.height());
170 ModifyWorldTransform(m_hdc, &xform, MWT_LEFTMULTIPLY);
177 XFORM xform = TransformationMatrix().rotate(degreesAngle); local
178 ModifyWorldTransform(m_hdc, &xform, MWT_LEFTMULTIPLY);
186 XFORM xform = TransformationMatrix().translate(x, y)
    [all...]
FontCGWin.cpp 180 XFORM xform; local
181 xform.eM11 = 1.0f;
182 xform.eM12 = 0.0f;
183 xform.eM21 = 0.0f;
184 xform.eM22 = 1.0f;
185 xform.eDx = -textRect.x();
186 xform.eDy = -textRect.y();
187 SetWorldTransform(hdc, &xform);
204 XFORM xform local
215 XFORM xform; local
232 XFORM xform; local
    [all...]
MediaPlayerPrivateQuickTimeWin.cpp 616 XFORM xform; local
617 xform.eM11 = 1.0f;
618 xform.eM12 = 0.0f;
619 xform.eM21 = 0.0f;
620 xform.eM22 = 1.0f;
621 xform.eDx = -r.x();
622 xform.eDy = -r.y();
623 SetWorldTransform(hdc, &xform);
  /external/bluetooth/glib/tests/gobject/
gvalue-test.c 41 GValue xform = { 0, }; local
49 memset (&xform, 0, sizeof (GValue));
50 g_value_init (&xform, G_TYPE_CHAR);
51 g_value_transform (&orig, &xform);
52 g_assert (g_value_get_char (&xform) == 1);
54 memset (&xform, 0, sizeof (GValue));
55 g_value_init (&xform, G_TYPE_UCHAR);
56 g_value_transform (&orig, &xform);
57 g_assert (g_value_get_uchar (&xform) == 1);
59 memset (&xform, 0, sizeof (GValue))
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
TransparencyWin.cpp 310 AffineTransform xform; local
311 xform.translate(-m_transformedSourceRect.x(), -m_transformedSourceRect.y());
316 xform *= m_orgTransform;
317 m_drawContext->concatCTM(xform);
  /frameworks/base/libs/gui/
SurfaceTexture.cpp 651 ST_LOGV("setTransform: xform=%#x", transform);
880 float xform[16]; local
882 xform[i] = mtxIdentity[i];
886 mtxMul(result, xform, mtxFlipH);
888 xform[i] = result[i];
893 mtxMul(result, xform, mtxFlipV);
895 xform[i] = result[i];
900 mtxMul(result, xform, mtxRot90);
902 xform[i] = result[i];
    [all...]
  /external/skia/src/ports/
SkFontHost_win.cpp 269 XFORM fXform;
551 XFORM xform = fXform; local
552 xform.eDx = (float)-glyph.fLeft;
553 xform.eDy = (float)-glyph.fTop;
554 SetWorldTransform(dc, &xform);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 1333 XFORM xform; local
    [all...]
  /external/webkit/Source/WebKit/win/
WebFrame.cpp 2278 XFORM xform = TransformationMatrix().translate(marginRect.x(), marginRect.y()).scale(scale); local
    [all...]
  /prebuilt/common/jfreechart/
jfreechart-1.0.9-swt.jar 

Completed in 4058 milliseconds