Searched defs:transformation (Results 1 - 9 of 9) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/base/
H A Dstringutils.cc71 CharacterTransformation transformation) {
75 c1 = transformation(*s1);
79 c2 = transformation(*s2);
70 ascii_string_compare(const wchar_t* s1, const char* s2, size_t n, CharacterTransformation transformation) argument
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DVGUtils.cpp42 VGMatrix::VGMatrix(const AffineTransform& transformation) argument
44 m_data[0] = transformation.a();
45 m_data[1] = transformation.b();
47 m_data[3] = transformation.c();
48 m_data[4] = transformation.d();
50 m_data[6] = transformation.e();
51 m_data[7] = transformation.f();
70 AffineTransform transformation(
74 return transformation;
H A DPathOpenVG.cpp153 AffineTransform transformation; local
154 transformation.translate(size.width(), size.height());
155 transform(transformation);
448 void Path::transform(const AffineTransform& transformation) argument
453 PainterOpenVG::transformPath(dst->vgPath(), m_path->vgPath(), transformation);
457 m_path->m_currentPoint = transformation.mapPoint(m_path->m_currentPoint);
458 m_path->m_subpathStartPoint = transformation.mapPoint(m_path->m_subpathStartPoint);
H A DGraphicsContextOpenVG.cpp75 return m_data->transformation();
265 return FloatRect(enclosingIntRect(m_data->transformation().mapRect(rect)));
453 void GraphicsContext::concatCTM(const AffineTransform& transformation) argument
458 m_data->concatTransformation(transformation);
461 void GraphicsContext::setCTM(const AffineTransform& transformation) argument
466 m_data->setTransformation(transformation);
H A DPainterOpenVG.cpp314 // all right here and let this be a call to essentially set the world transformation!
476 AffineTransform PainterOpenVG::transformation() const function in class:WebCore::PainterOpenVG
482 void PainterOpenVG::concatTransformation(const AffineTransform& transformation) argument
490 m_state->surfaceTransformation.multLeft(transformation);
494 void PainterOpenVG::setTransformation(const AffineTransform& transformation) argument
499 m_state->surfaceTransformation = transformation;
503 void PainterOpenVG::transformPath(VGPath dst, VGPath src, const AffineTransform& transformation) argument
513 vgLoadMatrix(VGMatrix(transformation).toVGfloat());
692 AffineTransform transformation = m_state->surfaceTransformation; local
693 transformation
702 AffineTransform transformation = m_state->surfaceTransformation; local
712 AffineTransform transformation = m_state->surfaceTransformation; local
[all...]
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGResourceMarker.cpp144 AffineTransform transformation = contentTransformation; local
146 transformation.scaleNonUniform(strokeWidth, strokeWidth);
148 transformation.translate(-mappedOrigin.x(), -mappedOrigin.y());
149 return transformation;
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DEncryptedPrivateKeyInfoTest.java1528 public TestDataGenerator(String algName, String transformation, argument
1532 .getInstance(transformation != null ? transformation
1534 transformation != null ? transformation : algName,
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DImageTexture.cpp280 const TransformationMatrix* transformation = transform(); local
283 m_tileGrid->drawGL(visibleContentArea, opacity, transformation);
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DPlatformPathWinCE.cpp235 static void drawPolygons(HDC dc, const Vector<PathPolygon>& polygons, bool fill, const AffineTransform* transformation) argument
250 if (transformation) {
252 FloatPoint trPoint = transformation->mapPoint(i->at(i2));
573 void PlatformPath::strokePath(HDC dc, const AffineTransform* transformation) const
575 drawPolygons(dc, m_subpaths, false, transformation);
578 void PlatformPath::fillPath(HDC dc, const AffineTransform* transformation) const
581 drawPolygons(dc, m_subpaths, true, transformation);

Completed in 259 milliseconds