Searched refs:transform (Results 1 - 25 of 456) sorted by relevance

1234567891011>>

/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/page/plugins/
H A Dconfig_peg.tcl10 --transform reachable
11 --transform realizable
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGTransformable.idl32 readonly attribute SVGAnimatedTransformList transform;
H A DSVGTransformList.cpp45 SVGTransform transform(matrix);
47 append(transform);
48 return transform;
77 void SVGTransformList::parse(const String& transform) argument
79 const UChar* start = transform.characters();
80 if (!SVGTransformable::parseTransformAttribute(*this, start, start + transform.length()))
H A DSVGTransformDistance.cpp41 SVGTransformDistance::SVGTransformDistance(SVGTransform::SVGTransformType type, float angle, float cx, float cy, const AffineTransform& transform) argument
46 , m_transform(transform)
118 SVGTransform transform; local
126 transform.setRotate(first.angle() + second.angle() * repeatCount, first.rotationCenter().x() + second.rotationCenter().x() * repeatCount, first.rotationCenter().y() + second.rotationCenter().y() * repeatCount);
127 return transform;
132 transform.setTranslate(dx, dy);
133 return transform;
139 transform.setScale(scale.width(), scale.height());
140 return transform;
143 transform
[all...]
H A DSVGTransformable.cpp97 bool SVGTransformable::parseTransformValue(unsigned type, const UChar*& ptr, const UChar* end, SVGTransform& transform) argument
109 transform.setSkewX(values[0]);
112 transform.setSkewY(values[0]);
116 transform.setScale(values[0], values[0]);
118 transform.setScale(values[0], values[1]);
122 transform.setTranslate(values[0], 0);
124 transform.setTranslate(values[0], values[1]);
128 transform.setRotate(values[0], 0, 0);
130 transform.setRotate(values[0], values[1], values[2]);
133 transform
[all...]
H A DSVGStyledTransformableElement.cpp37 DEFINE_ANIMATED_TRANSFORM_LIST(SVGStyledTransformableElement, SVGNames::transformAttr, Transform, transform)
40 REGISTER_LOCAL_ANIMATED_PROPERTY(transform)
73 TransformationMatrix transform; local
74 style->applyTransform(transform, renderer()->objectBoundingBox());
76 // Flatten any 3D transform.
77 matrix = transform.toAffineTransform();
79 transform().concatenate(matrix);
166 path.transform(animatedLocalTransform());
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/qt/
H A DTransformationMatrixQt.cpp45 TransformationMatrix::TransformationMatrix(const QTransform& transform) argument
47 setMatrix(transform.m11(), transform.m12(), 0, transform.m13(),
48 transform.m21(), transform.m22(), 0, transform.m23(),
50 transform.m31(), transform.m32(), 0, transform
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A Dsvg.css64 /* CSS transform specification: "transform-origin 0 0 for SVG elements without associated CSS layout box, 50% 50% for all other elements". */
67 -webkit-transform-origin: 0 0;
71 -webkit-transform-origin: 50% 50%;
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DTextureMapperLayerClientQt.cpp110 const QTransform transform = painter->worldTransform(); local
112 transform.m11(), transform.m12(), 0, transform.m13(),
113 transform.m21(), transform.m22(), 0, transform.m23(),
115 transform.m31(), transform.m32(), 0, transform
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_transform/lib/
H A DSecGroupTransform.cpp30 bool SecGroupTransformHasMember(SecGroupTransformRef groupTransform, SecTransformRef transform) argument
33 return gt->HasMember(transform);
H A DStreamSource.h16 StreamSource(CFReadStreamRef input, Transform* transform, CFStringRef name);
29 static CFTypeRef Make(CFReadStreamRef input, Transform* transform, CFStringRef name);
/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DSVGTextFragment.h50 result = transform;
74 AffineTransform transform; member in struct:WebCore::SVGTextFragment
90 // For text-on-path layout, multiply the transform with the lengthAdjustTransform before orienting the resulting transform.
91 result = lengthAdjustTransform.isIdentity() ? transform : transform * lengthAdjustTransform;
98 // For text-on-line layout, orient the transform first, then multiply the lengthAdjustTransform with the oriented transform.
99 if (transform.isIdentity()) {
104 result = transform;
[all...]
H A DRenderSVGResourceLinearGradient.h43 virtual void calculateGradientTransform(AffineTransform& transform) { transform = m_attributes.gradientTransform(); } argument
H A DRenderSVGResourceMarker.cpp127 AffineTransform transform; local
128 transform.translate(origin.x(), origin.y());
129 transform.rotate(markerAngle == -1 ? autoAngle : markerAngle);
130 transform = markerContentTransformation(transform, referencePoint(), useStrokeWidth ? strokeWidth : -1);
131 return transform;
134 void RenderSVGResourceMarker::draw(PaintInfo& paintInfo, const AffineTransform& transform) argument
144 info.applyTransform(transform);
H A DRenderSVGResourceRadialGradient.h43 virtual void calculateGradientTransform(AffineTransform& transform) { transform = m_attributes.gradientTransform(); } argument
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gpu/
H A DShader.cpp46 void Shader::affineTo3x3(const AffineTransform& transform, float mat[9]) argument
48 mat[0] = transform.a();
49 mat[1] = transform.b();
51 mat[3] = transform.c();
52 mat[4] = transform.d();
54 mat[6] = transform.e();
55 mat[7] = transform.f();
60 void Shader::affineTo4x4(const AffineTransform& transform, float mat[16]) argument
62 mat[0] = transform.a();
63 mat[1] = transform
[all...]
H A DLoopBlinnShader.cpp42 void LoopBlinnShader::use(unsigned vertexOffset, unsigned klmOffset, const AffineTransform& transform) argument
47 affineTo4x4(transform, matrix);
H A DLoopBlinnSolidFillShader.cpp54 void LoopBlinnSolidFillShader::use(unsigned vertexOffset, unsigned klmOffset, const AffineTransform& transform, const Color& color) argument
56 LoopBlinnShader::use(vertexOffset, klmOffset, transform);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DGraphicsLayerTransform.cpp65 void GraphicsLayerTransform::setLocalTransform(const TransformationMatrix& transform) argument
67 if (m_local == transform)
69 m_local = transform;
73 void GraphicsLayerTransform::setChildrenTransform(const TransformationMatrix& transform) argument
75 if (m_children == transform)
77 m_children = transform;
104 // The children transform will take it from here, if it gets used.
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/texmap/
H A DTextureMapperSurfaceBackingStore.cpp47 void TextureMapperSurfaceBackingStore::paintToTextureMapper(TextureMapper* textureMapper, const FloatRect& targetRect, const TransformationMatrix& transform, float opacity) argument
50 m_graphicsSurface->paintToTextureMapper(textureMapper, targetRect, transform, opacity);
H A DTextureMapperPlatformLayer.h43 virtual void drawBorder(TextureMapper* textureMapper, const Color& color, float borderWidth, const FloatRect& targetRect, const TransformationMatrix& transform) argument
45 textureMapper->drawBorder(color, borderWidth, targetRect, transform);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cgpath.py34 transform = CGAffineTransformIdentity
36 CGPathMoveToPoint(path, transform, 10, 30)
39 CGPathAddLineToPoint(path, transform, 10, 30)
42 CGPathAddQuadCurveToPoint(path, transform, 10, 30, 90, 90)
45 CGPathAddCurveToPoint(path, transform, 10, 30, 90, 90, 140, 140)
50 CGPathAddRect(path, transform, CGRectMake(50, 60, 90, 10))
54 CGPathAddRects(path, transform, [ CGRectMake(50, 60, 90, 10), CGRectMake(90, 50, 10, 10)], 2)
55 self.failUnlessRaises(ValueError, CGPathAddRects, path, transform, [ CGRectMake(50, 60, 90, 10), CGRectMake(90, 50, 10, 10)], 3)
60 CGPathAddLines(path, transform, [ CGPoint(50, 60), CGPoint(90, 50)], 2)
61 self.failUnlessRaises(ValueError, CGPathAddLines, path, transform, [ CGPoin
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cgpath.py34 transform = CGAffineTransformIdentity
36 CGPathMoveToPoint(path, transform, 10, 30)
39 CGPathAddLineToPoint(path, transform, 10, 30)
42 CGPathAddQuadCurveToPoint(path, transform, 10, 30, 90, 90)
45 CGPathAddCurveToPoint(path, transform, 10, 30, 90, 90, 140, 140)
50 CGPathAddRect(path, transform, CGRectMake(50, 60, 90, 10))
54 CGPathAddRects(path, transform, [ CGRectMake(50, 60, 90, 10), CGRectMake(90, 50, 10, 10)], 2)
55 self.assertRaises(ValueError, CGPathAddRects, path, transform, [ CGRectMake(50, 60, 90, 10), CGRectMake(90, 50, 10, 10)], 3)
60 CGPathAddLines(path, transform, [ CGPoint(50, 60), CGPoint(90, 50)], 2)
61 self.assertRaises(ValueError, CGPathAddLines, path, transform, [ CGPoin
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/transforms/
H A DMatrix3DTransformOperation.h56 virtual bool apply(TransformationMatrix& transform, const FloatSize&) const argument
58 transform.multiply(TransformationMatrix(m_matrix));
H A DPerspectiveTransformOperation.h57 virtual bool apply(TransformationMatrix& transform, const FloatSize&) const argument
59 transform.applyPerspective(floatValueForLength(m_p, 1));

Completed in 570 milliseconds

1234567891011>>