/external/webkit/Source/WebCore/platform/graphics/openvg/ |
D | VGUtils.cpp | 42 VGMatrix::VGMatrix(const AffineTransform& transformation) in VGMatrix() argument 44 m_data[0] = transformation.a(); in VGMatrix() 45 m_data[1] = transformation.b(); in VGMatrix() 47 m_data[3] = transformation.c(); in VGMatrix() 48 m_data[4] = transformation.d(); in VGMatrix() 50 m_data[6] = transformation.e(); in VGMatrix() 51 m_data[7] = transformation.f(); in VGMatrix() 70 AffineTransform transformation( in operator AffineTransform() local 74 return transformation; in operator AffineTransform()
|
D | PainterOpenVG.cpp | 476 AffineTransform PainterOpenVG::transformation() const in transformation() function in WebCore::PainterOpenVG 482 void PainterOpenVG::concatTransformation(const AffineTransform& transformation) in concatTransformation() argument 490 m_state->surfaceTransformation.multLeft(transformation); in concatTransformation() 494 void PainterOpenVG::setTransformation(const AffineTransform& transformation) in setTransformation() argument 499 m_state->surfaceTransformation = transformation; in setTransformation() 503 void PainterOpenVG::transformPath(VGPath dst, VGPath src, const AffineTransform& transformation) in transformPath() argument 513 vgLoadMatrix(VGMatrix(transformation).toVGfloat()); in transformPath() 692 AffineTransform transformation = m_state->surfaceTransformation; in scale() local 693 transformation.scaleNonUniform(scaleFactors.width(), scaleFactors.height()); in scale() 694 setTransformation(transformation); in scale() [all …]
|
D | PathOpenVG.cpp | 153 AffineTransform transformation; in translate() local 154 transformation.translate(size.width(), size.height()); in translate() 155 transform(transformation); in translate() 448 void Path::transform(const AffineTransform& transformation) in transform() argument 453 PainterOpenVG::transformPath(dst->vgPath(), m_path->vgPath(), transformation); in transform() 457 m_path->m_currentPoint = transformation.mapPoint(m_path->m_currentPoint); in transform() 458 m_path->m_subpathStartPoint = transformation.mapPoint(m_path->m_subpathStartPoint); in transform()
|
D | GraphicsContextOpenVG.cpp | 75 return m_data->transformation(); in getCTM() 265 return FloatRect(enclosingIntRect(m_data->transformation().mapRect(rect))); in roundToDevicePixels() 453 void GraphicsContext::concatCTM(const AffineTransform& transformation) in concatCTM() argument 458 m_data->concatTransformation(transformation); in concatCTM() 461 void GraphicsContext::setCTM(const AffineTransform& transformation) in setCTM() argument 466 m_data->setTransformation(transformation); in setCTM()
|
/external/libpng/ |
D | TODO | 8 cHRM transformation. 10 Add "grayscale->palette" transformation and "palette->grayscale" detection. 13 Complete sRGB transformation (presently it simply uses gamma=0.45455). 23 background and doing rgb-to-gray transformation.
|
/external/eigen/doc/ |
D | C08_TutorialGeometry.dox | 19 …- Projective or affine transformation matrices: see the Transform class. These are really matrices. 21 …rage, you can directly use the Transform::data() method to pass your transformation matrix to Open… 23 You can construct a Transform from an abstract transformation, like this: 66 N-D \ref TutorialGeoTransform "Affine transformation"</td><td>\code 88 Any of the above transformation types can be converted to any other types of the same nature, 103 …ass="top">top</a>\section TutorialGeoCommontransformationAPI Common API across transformation types 106 generic algorithms working on any kind of transformation representations: 111 <tr class="alt"><td>Apply the transformation to a vector</td><td>\code 113 <tr><td>Get the inverse of the transformation</td><td>\code 126 vector distinguish when the transformation is applied. [all …]
|
/external/webkit/Source/WebCore/rendering/svg/ |
D | RenderSVGResourceMarker.cpp | 144 AffineTransform transformation = contentTransformation; in markerContentTransformation() local 146 transformation.scaleNonUniform(strokeWidth, strokeWidth); in markerContentTransformation() 148 transformation.translate(-mappedOrigin.x(), -mappedOrigin.y()); in markerContentTransformation() 149 return transformation; in markerContentTransformation()
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | stringutils.cc | 71 CharacterTransformation transformation) { in ascii_string_compare() argument 75 c1 = transformation(*s1); in ascii_string_compare() 79 c2 = transformation(*s2); in ascii_string_compare()
|
/external/webkit/Source/WebKit2/WebProcess/FullScreen/mac/ |
D | WebFullScreenManagerMac.mm | 188 // Create a transformation matrix that will transform the renderer layer such that 201 // Drawing is flipped here, and so much be the translation transformation 215 // Disable implicit animations and set the layer's transformation matrix to its final state. 237 // Create a transformation matrix that will transform the renderer layer such that 251 // Drawing is flipped here, and so must be the translation transformation 267 // Disable implicit animations and set the layer's transformation matrix to its final state.
|
/external/llvm/test/CodeGen/X86/ |
D | targetLoweringGeneric.ll | 9 ; rdar://11195364 A problem with the transformation: 14 ; transformation should not occur
|
D | 2011-12-26-extractelement-duplicate-load.ll | 4 ; the relevant transformation doesn't know how to update
|
/external/mesa3d/docs/ |
D | RELNOTES-3.1 | 87 Assorted transformation hints. 117 vertex transformation code. Basically, the whole transformation
|
/external/llvm/test/Transforms/InstCombine/ |
D | README.txt | 1 This directory contains test cases for the instcombine transformation. The
|
D | 2012-02-28-ICmp.ll | 4 ; There should be no transformation.
|
D | 2004-01-13-InstCombineInvokePHI.ll | 5 ; invoke instruction, we really cannot perform this transformation at all at
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
D | PlatformPathWinCE.cpp | 235 …gons(HDC dc, const Vector<PathPolygon>& polygons, bool fill, const AffineTransform* transformation) in drawPolygons() argument 250 if (transformation) { in drawPolygons() 252 FloatPoint trPoint = transformation->mapPoint(i->at(i2)); in drawPolygons() 573 void PlatformPath::strokePath(HDC dc, const AffineTransform* transformation) const in strokePath() 575 drawPolygons(dc, m_subpaths, false, transformation); in strokePath() 578 void PlatformPath::fillPath(HDC dc, const AffineTransform* transformation) const in fillPath() 581 drawPolygons(dc, m_subpaths, true, transformation); in fillPath()
|
/external/llvm/runtime/ |
D | README.txt | 2 the LLVM compiler. For example, the automatic pool allocation transformation
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
D | ImageTexture.cpp | 283 const TransformationMatrix* transformation = transform(); in drawGL() local 286 m_tileGrid->drawGL(visibleContentArea, opacity, transformation); in drawGL()
|
/external/llvm/test/CodeGen/Mips/ |
D | sitofp-selectcc-opt.ll | 7 ; check that this transformation doesn't happen:
|
/external/llvm/test/Transforms/SCCP/ |
D | atomic-load-store.ll | 3 ; This transformation is safe for atomic loads and stores; check that it works.
|
/external/llvm/test/Transforms/SimplifyLibCalls/ |
D | StrChr.ll | 4 ; This transformation requires the pointer size, as it assumes that size_t is
|
D | StrNCpy.ll | 5 ; This transformation requires the pointer size, as it assumes that size_t is
|
D | StrCpy.ll | 4 ; This transformation requires the pointer size, as it assumes that size_t is
|
/external/llvm/test/CodeGen/ARM/ |
D | 2012-03-26-FoldImmBug.ll | 14 ; However, this transformation is incorrect if the user produces a flag. e.g.
|
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/ |
D | EncryptedPrivateKeyInfoTest.java | 1528 public TestDataGenerator(String algName, String transformation, in TestDataGenerator() argument 1532 .getInstance(transformation != null ? transformation in TestDataGenerator() 1534 transformation != null ? transformation : algName, in TestDataGenerator()
|