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

1234567891011>>

/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/page/plugins/
H A Dconfig_peg.tcl10 --transform reachable
11 --transform realizable
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/PyObjCTest/
H A Dtest_cgpath.py39 transform = CGAffineTransformIdentity
41 CGPathMoveToPoint(path, transform, 10, 30)
44 CGPathAddLineToPoint(path, transform, 10, 30)
47 CGPathAddQuadCurveToPoint(path, transform, 10, 30, 90, 90)
50 CGPathAddCurveToPoint(path, transform, 10, 30, 90, 90, 140, 140)
55 CGPathAddRect(path, transform, CGRectMake(50, 60, 90, 10))
59 CGPathAddRects(path, transform, [ CGRectMake(50, 60, 90, 10), CGRectMake(90, 50, 10, 10)], 2)
60 self.assertRaises(ValueError, CGPathAddRects, path, transform, [ CGRectMake(50, 60, 90, 10), CGRectMake(90, 50, 10, 10)], 3)
65 CGPathAddLines(path, transform, [ CGPoint(50, 60), CGPoint(90, 50)], 2)
66 self.assertRaises(ValueError, CGPathAddLines, path, transform, [ CGPoin
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DColorPicker.css40 -webkit-transform: rotate(-90deg) translateX(-100%);
41 -webkit-transform-origin: 0 0;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_transform/lib/
H A DSecGroupTransform.cpp45 bool SecGroupTransformHasMember(SecGroupTransformRef groupTransform, SecTransformRef transform) argument
48 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.10/WebCore-7600.1.25/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);
/macosx-10.10/WebCore-7600.1.25/rendering/svg/
H A DSVGTextFragment.h49 result = transform;
73 AffineTransform transform; member in struct:WebCore::SVGTextFragment
89 // For text-on-path layout, multiply the transform with the lengthAdjustTransform before orienting the resulting transform.
90 result = lengthAdjustTransform.isIdentity() ? transform : transform * lengthAdjustTransform;
97 // For text-on-line layout, orient the transform first, then multiply the lengthAdjustTransform with the oriented transform.
98 if (transform.isIdentity()) {
103 result = transform;
[all...]
H A DRenderSVGResourceLinearGradient.h41 virtual void calculateGradientTransform(AffineTransform& transform) { transform = m_attributes.gradientTransform(); } argument
H A DRenderSVGResourceMarker.cpp109 AffineTransform transform; local
110 transform.translate(origin.x(), origin.y());
111 transform.rotate(markerAngle == -1 ? autoAngle : markerAngle);
112 transform = markerContentTransformation(transform, referencePoint(), useStrokeWidth ? strokeWidth : -1);
113 return transform;
116 void RenderSVGResourceMarker::draw(PaintInfo& paintInfo, const AffineTransform& transform) argument
124 info.applyTransform(transform);
H A DRenderSVGResourceRadialGradient.h43 virtual void calculateGradientTransform(AffineTransform& transform) { transform = m_attributes.gradientTransform(); } argument
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGTransformList.cpp43 SVGTransform transform(matrix);
45 append(transform);
46 return transform;
75 void SVGTransformList::parse(const String& transform) argument
77 auto upconvertedCharacters = StringView(transform).upconvertedCharacters();
79 if (!SVGTransformable::parseTransformAttribute(*this, start, start + transform.length()))
H A DSVGTransformDistance.cpp40 SVGTransformDistance::SVGTransformDistance(SVGTransform::SVGTransformType type, float angle, float cx, float cy, const AffineTransform& transform) argument
45 , m_transform(transform)
123 SVGTransform transform; local
134 transform.setRotate(first.angle() + second.angle() * repeatCount, first.rotationCenter().x() + second.rotationCenter().x() * repeatCount, first.rotationCenter().y() + second.rotationCenter().y() * repeatCount);
135 return transform;
140 transform.setTranslate(dx, dy);
141 return transform;
147 transform.setScale(scale.width(), scale.height());
148 return transform;
151 transform
[all...]
H A DSVGTransformable.cpp96 bool SVGTransformable::parseTransformValue(unsigned type, const UChar*& ptr, const UChar* end, SVGTransform& transform) argument
108 transform.setSkewX(values[0]);
111 transform.setSkewY(values[0]);
115 transform.setScale(values[0], values[0]);
117 transform.setScale(values[0], values[1]);
121 transform.setTranslate(values[0], 0);
123 transform.setTranslate(values[0], values[1]);
127 transform.setRotate(values[0], 0, 0);
129 transform.setRotate(values[0], values[1], values[2]);
132 transform
[all...]
H A DSVGTextElement.cpp45 // We override SVGGraphics::animatedLocalTransform() so that the transform-origin
55 // For now, the transform-origin is not taken into account
58 // Flatten any 3D transform
61 transform().concatenate(matrix);
63 const AffineTransform* transform = const_cast<SVGTextElement*>(this)->supplementalTransform(); local
64 if (transform)
65 return *transform * matrix;
H A DSVGGraphicsElement.cpp36 DEFINE_ANIMATED_TRANSFORM_LIST(SVGGraphicsElement, SVGNames::transformAttr, Transform, transform)
39 REGISTER_LOCAL_ANIMATED_PROPERTY(transform)
74 TransformationMatrix transform; local
75 style->applyTransform(transform, renderer()->objectBoundingBox());
77 // Flatten any 3D transform.
78 matrix = transform.toAffineTransform();
88 transform().concatenate(matrix);
183 path.transform(animatedLocalTransform());
H A DSVGGraphicsElement.idl27 readonly attribute SVGAnimatedTransformList transform;
H A DSVGViewSpec.idl31 readonly attribute SVGTransformList transform;
/macosx-10.10/WebCore-7600.1.25/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.
H A DFloatPoint.cpp64 FloatPoint FloatPoint::matrixTransform(const AffineTransform& transform) const
67 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
71 FloatPoint FloatPoint::matrixTransform(const TransformationMatrix& transform) const
74 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
/macosx-10.10/WebCore-7600.1.25/css/
H A Dsvg.css75 /* CSS transform specification: "transform-origin 0 0 for SVG elements without associated CSS layout box, 50% 50% for all other elements". */
78 -webkit-transform-origin: 0 0;
82 -webkit-transform-origin: 50% 50%;
/macosx-10.10/pyobjc-45/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.10/pyobjc-45/2.6/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.10/WebCore-7600.1.25/platform/graphics/transforms/
H A DMatrix3DTransformOperation.h50 virtual bool apply(TransformationMatrix& transform, const FloatSize&) const override
52 transform.multiply(TransformationMatrix(m_matrix));
H A DPerspectiveTransformOperation.h51 virtual bool apply(TransformationMatrix& transform, const FloatSize&) const override
53 transform.applyPerspective(floatValueForLength(m_p, 1));
/macosx-10.10/ncurses-44/xcodescripts/
H A Dderived_headers.sh38 # transform.h
39 echo "#define PROG_CAPTOINFO \"captoinfo\"" > "$BUILT_PRODUCTS_DIR"/transform.h
40 echo "#define PROG_INFOTOCAP \"infotocap\"" >> "$BUILT_PRODUCTS_DIR"/transform.h
41 echo "#define PROG_RESET \"reset\"" >> "$BUILT_PRODUCTS_DIR"/transform.h
42 echo "#define PROG_INIT \"init\"" >> "$BUILT_PRODUCTS_DIR"/transform.h

Completed in 250 milliseconds

1234567891011>>