Home
last modified time | relevance | path

Searched refs:SVGPathSeg (Results 1 – 25 of 48) sorted by relevance

12

/external/webkit/Source/WebCore/bindings/v8/custom/
DV8SVGPathSegCustom.cpp60 v8::Handle<v8::Value> toV8(SVGPathSeg* impl) in toV8()
65 case SVGPathSeg::PATHSEG_CLOSEPATH: in toV8()
67 case SVGPathSeg::PATHSEG_MOVETO_ABS: in toV8()
69 case SVGPathSeg::PATHSEG_MOVETO_REL: in toV8()
71 case SVGPathSeg::PATHSEG_LINETO_ABS: in toV8()
73 case SVGPathSeg::PATHSEG_LINETO_REL: in toV8()
75 case SVGPathSeg::PATHSEG_CURVETO_CUBIC_ABS: in toV8()
77 case SVGPathSeg::PATHSEG_CURVETO_CUBIC_REL: in toV8()
79 case SVGPathSeg::PATHSEG_CURVETO_QUADRATIC_ABS: in toV8()
81 case SVGPathSeg::PATHSEG_CURVETO_QUADRATIC_REL: in toV8()
[all …]
/external/webkit/Source/WebCore/bindings/js/
DJSSVGPathSegCustom.cpp61 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, SVGPathSeg* object) in toJS()
70 case SVGPathSeg::PATHSEG_CLOSEPATH: in toJS()
72 case SVGPathSeg::PATHSEG_MOVETO_ABS: in toJS()
74 case SVGPathSeg::PATHSEG_MOVETO_REL: in toJS()
76 case SVGPathSeg::PATHSEG_LINETO_ABS: in toJS()
78 case SVGPathSeg::PATHSEG_LINETO_REL: in toJS()
80 case SVGPathSeg::PATHSEG_CURVETO_CUBIC_ABS: in toJS()
82 case SVGPathSeg::PATHSEG_CURVETO_CUBIC_REL: in toJS()
84 case SVGPathSeg::PATHSEG_CURVETO_QUADRATIC_ABS: in toJS()
86 case SVGPathSeg::PATHSEG_CURVETO_QUADRATIC_REL: in toJS()
[all …]
/external/webkit/Source/WebCore/bindings/objc/
DDOMSVGPathSegInternal.mm53 #import "SVGPathSeg.h"
55 Class kitClass(WebCore::SVGPathSeg* impl)
58 case WebCore::SVGPathSeg::PATHSEG_UNKNOWN:
60 case WebCore::SVGPathSeg::PATHSEG_CLOSEPATH:
62 case WebCore::SVGPathSeg::PATHSEG_MOVETO_ABS:
64 case WebCore::SVGPathSeg::PATHSEG_MOVETO_REL:
66 case WebCore::SVGPathSeg::PATHSEG_LINETO_ABS:
68 case WebCore::SVGPathSeg::PATHSEG_LINETO_REL:
70 case WebCore::SVGPathSeg::PATHSEG_CURVETO_CUBIC_ABS:
72 case WebCore::SVGPathSeg::PATHSEG_CURVETO_CUBIC_REL:
[all …]
/external/webkit/Source/WebCore/svg/
DSVGPathSegList.idl34 … [StrictTypeChecking, RequiresAllArguments=Raise] SVGPathSeg initialize(in SVGPathSeg newItem)
36 [StrictTypeChecking, RequiresAllArguments=Raise] SVGPathSeg getItem(in unsigned long index)
38 …[StrictTypeChecking, RequiresAllArguments=Raise] SVGPathSeg insertItemBefore(in SVGPathSeg newItem…
40 …[StrictTypeChecking, RequiresAllArguments=Raise] SVGPathSeg replaceItem(in SVGPathSeg newItem, in …
42 … [StrictTypeChecking, RequiresAllArguments=Raise] SVGPathSeg removeItem(in unsigned long index)
44 … [StrictTypeChecking, RequiresAllArguments=Raise] SVGPathSeg appendItem(in SVGPathSeg newItem)
DSVGPathSeg.h58 class SVGPathSeg : public RefCounted<SVGPathSeg> {
60 SVGPathSeg() { } in SVGPathSeg() function
61 virtual ~SVGPathSeg() { } in ~SVGPathSeg()
DSVGPathSegList.h34 class SVGPathSegList : public Vector<RefPtr<SVGPathSeg> > {
53 typedef RefPtr<SVGPathSeg> ListItemType;
DSVGPathSegListSource.h59 RefPtr<SVGPathSeg> m_segment;
DSVGPathSegWithContext.h28 class SVGPathSegWithContext : public SVGPathSeg {
DSVGPathSegLinetoVerticalAbs.idl29 interface [Conditional=SVG] SVGPathSegLinetoVerticalAbs : SVGPathSeg {
DSVGPathSegLinetoVerticalRel.idl29 interface [Conditional=SVG] SVGPathSegLinetoVerticalRel : SVGPathSeg {
DSVGPathSegLinetoAbs.idl29 interface [Conditional=SVG] SVGPathSegLinetoAbs : SVGPathSeg {
DSVGPathSegMovetoRel.idl29 interface [Conditional=SVG] SVGPathSegMovetoRel : SVGPathSeg {
DSVGPathSegMovetoAbs.idl29 interface [Conditional=SVG] SVGPathSegMovetoAbs : SVGPathSeg {
DSVGPathSegClosePath.idl29 interface [Conditional=SVG] SVGPathSegClosePath : SVGPathSeg {
DSVGPathSegCurvetoQuadraticSmoothRel.idl29 interface [Conditional=SVG] SVGPathSegCurvetoQuadraticSmoothRel : SVGPathSeg {
DSVGPathSegLinetoHorizontalRel.idl29 interface [Conditional=SVG] SVGPathSegLinetoHorizontalRel : SVGPathSeg {
DSVGPathSegLinetoRel.idl29 interface [Conditional=SVG] SVGPathSegLinetoRel : SVGPathSeg {
DSVGPathSegLinetoHorizontalAbs.idl29 interface [Conditional=SVG] SVGPathSegLinetoHorizontalAbs : SVGPathSeg {
DSVGPathSegCurvetoQuadraticSmoothAbs.idl29 interface [Conditional=SVG] SVGPathSegCurvetoQuadraticSmoothAbs : SVGPathSeg {
DSVGPathSegCurvetoQuadraticRel.idl29 interface [Conditional=SVG] SVGPathSegCurvetoQuadraticRel : SVGPathSeg {
DSVGPathSegArcAbs.idl29 interface [Conditional=SVG] SVGPathSegArcAbs : SVGPathSeg {
DSVGPathSegArcRel.idl29 interface [Conditional=SVG] SVGPathSegArcRel : SVGPathSeg {
DSVGPathSegCurvetoCubicSmoothRel.idl29 interface [Conditional=SVG] SVGPathSegCurvetoCubicSmoothRel : SVGPathSeg {
/external/webkit/Source/WebCore/svg/properties/
DSVGAnimatedPathSegListPropertyTearOff.h48 int removeItemFromList(const RefPtr<SVGPathSeg>& segment, bool shouldSynchronizeWrappers) in removeItemFromList()
DSVGPathSegListPropertyTearOff.h36 typedef PassRefPtr<SVGPathSeg> PassListItemType;

12