Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Side by Side Diff: client/dom/generated/src/wrapping/_SVGPathElementWrappingImplementation.dart

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 class _SVGPathElementWrappingImplementation extends _SVGElementWrappingImplement ation implements SVGPathElement {
8 _SVGPathElementWrappingImplementation() : super() {}
9
10 static create__SVGPathElementWrappingImplementation() native {
11 return new _SVGPathElementWrappingImplementation();
12 }
13
14 SVGPathSegList get animatedNormalizedPathSegList() { return _get_animatedNorma lizedPathSegList(this); }
15 static SVGPathSegList _get_animatedNormalizedPathSegList(var _this) native;
16
17 SVGPathSegList get animatedPathSegList() { return _get_animatedPathSegList(thi s); }
18 static SVGPathSegList _get_animatedPathSegList(var _this) native;
19
20 SVGPathSegList get normalizedPathSegList() { return _get_normalizedPathSegList (this); }
21 static SVGPathSegList _get_normalizedPathSegList(var _this) native;
22
23 SVGAnimatedNumber get pathLength() { return _get_pathLength(this); }
24 static SVGAnimatedNumber _get_pathLength(var _this) native;
25
26 SVGPathSegList get pathSegList() { return _get_pathSegList(this); }
27 static SVGPathSegList _get_pathSegList(var _this) native;
28
29 SVGPathSegArcAbs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angl e, bool largeArcFlag, bool sweepFlag) {
30 return _createSVGPathSegArcAbs(this, x, y, r1, r2, angle, largeArcFlag, swee pFlag);
31 }
32 static SVGPathSegArcAbs _createSVGPathSegArcAbs(receiver, x, y, r1, r2, angle, largeArcFlag, sweepFlag) native;
33
34 SVGPathSegArcRel createSVGPathSegArcRel(num x, num y, num r1, num r2, num angl e, bool largeArcFlag, bool sweepFlag) {
35 return _createSVGPathSegArcRel(this, x, y, r1, r2, angle, largeArcFlag, swee pFlag);
36 }
37 static SVGPathSegArcRel _createSVGPathSegArcRel(receiver, x, y, r1, r2, angle, largeArcFlag, sweepFlag) native;
38
39 SVGPathSegClosePath createSVGPathSegClosePath() {
40 return _createSVGPathSegClosePath(this);
41 }
42 static SVGPathSegClosePath _createSVGPathSegClosePath(receiver) native;
43
44 SVGPathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1 , num y1, num x2, num y2) {
45 return _createSVGPathSegCurvetoCubicAbs(this, x, y, x1, y1, x2, y2);
46 }
47 static SVGPathSegCurvetoCubicAbs _createSVGPathSegCurvetoCubicAbs(receiver, x, y, x1, y1, x2, y2) native;
48
49 SVGPathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel(num x, num y, num x1 , num y1, num x2, num y2) {
50 return _createSVGPathSegCurvetoCubicRel(this, x, y, x1, y1, x2, y2);
51 }
52 static SVGPathSegCurvetoCubicRel _createSVGPathSegCurvetoCubicRel(receiver, x, y, x1, y1, x2, y2) native;
53
54 SVGPathSegCurvetoCubicSmoothAbs createSVGPathSegCurvetoCubicSmoothAbs(num x, n um y, num x2, num y2) {
55 return _createSVGPathSegCurvetoCubicSmoothAbs(this, x, y, x2, y2);
56 }
57 static SVGPathSegCurvetoCubicSmoothAbs _createSVGPathSegCurvetoCubicSmoothAbs( receiver, x, y, x2, y2) native;
58
59 SVGPathSegCurvetoCubicSmoothRel createSVGPathSegCurvetoCubicSmoothRel(num x, n um y, num x2, num y2) {
60 return _createSVGPathSegCurvetoCubicSmoothRel(this, x, y, x2, y2);
61 }
62 static SVGPathSegCurvetoCubicSmoothRel _createSVGPathSegCurvetoCubicSmoothRel( receiver, x, y, x2, y2) native;
63
64 SVGPathSegCurvetoQuadraticAbs createSVGPathSegCurvetoQuadraticAbs(num x, num y , num x1, num y1) {
65 return _createSVGPathSegCurvetoQuadraticAbs(this, x, y, x1, y1);
66 }
67 static SVGPathSegCurvetoQuadraticAbs _createSVGPathSegCurvetoQuadraticAbs(rece iver, x, y, x1, y1) native;
68
69 SVGPathSegCurvetoQuadraticRel createSVGPathSegCurvetoQuadraticRel(num x, num y , num x1, num y1) {
70 return _createSVGPathSegCurvetoQuadraticRel(this, x, y, x1, y1);
71 }
72 static SVGPathSegCurvetoQuadraticRel _createSVGPathSegCurvetoQuadraticRel(rece iver, x, y, x1, y1) native;
73
74 SVGPathSegCurvetoQuadraticSmoothAbs createSVGPathSegCurvetoQuadraticSmoothAbs( num x, num y) {
75 return _createSVGPathSegCurvetoQuadraticSmoothAbs(this, x, y);
76 }
77 static SVGPathSegCurvetoQuadraticSmoothAbs _createSVGPathSegCurvetoQuadraticSm oothAbs(receiver, x, y) native;
78
79 SVGPathSegCurvetoQuadraticSmoothRel createSVGPathSegCurvetoQuadraticSmoothRel( num x, num y) {
80 return _createSVGPathSegCurvetoQuadraticSmoothRel(this, x, y);
81 }
82 static SVGPathSegCurvetoQuadraticSmoothRel _createSVGPathSegCurvetoQuadraticSm oothRel(receiver, x, y) native;
83
84 SVGPathSegLinetoAbs createSVGPathSegLinetoAbs(num x, num y) {
85 return _createSVGPathSegLinetoAbs(this, x, y);
86 }
87 static SVGPathSegLinetoAbs _createSVGPathSegLinetoAbs(receiver, x, y) native;
88
89 SVGPathSegLinetoHorizontalAbs createSVGPathSegLinetoHorizontalAbs(num x) {
90 return _createSVGPathSegLinetoHorizontalAbs(this, x);
91 }
92 static SVGPathSegLinetoHorizontalAbs _createSVGPathSegLinetoHorizontalAbs(rece iver, x) native;
93
94 SVGPathSegLinetoHorizontalRel createSVGPathSegLinetoHorizontalRel(num x) {
95 return _createSVGPathSegLinetoHorizontalRel(this, x);
96 }
97 static SVGPathSegLinetoHorizontalRel _createSVGPathSegLinetoHorizontalRel(rece iver, x) native;
98
99 SVGPathSegLinetoRel createSVGPathSegLinetoRel(num x, num y) {
100 return _createSVGPathSegLinetoRel(this, x, y);
101 }
102 static SVGPathSegLinetoRel _createSVGPathSegLinetoRel(receiver, x, y) native;
103
104 SVGPathSegLinetoVerticalAbs createSVGPathSegLinetoVerticalAbs(num y) {
105 return _createSVGPathSegLinetoVerticalAbs(this, y);
106 }
107 static SVGPathSegLinetoVerticalAbs _createSVGPathSegLinetoVerticalAbs(receiver , y) native;
108
109 SVGPathSegLinetoVerticalRel createSVGPathSegLinetoVerticalRel(num y) {
110 return _createSVGPathSegLinetoVerticalRel(this, y);
111 }
112 static SVGPathSegLinetoVerticalRel _createSVGPathSegLinetoVerticalRel(receiver , y) native;
113
114 SVGPathSegMovetoAbs createSVGPathSegMovetoAbs(num x, num y) {
115 return _createSVGPathSegMovetoAbs(this, x, y);
116 }
117 static SVGPathSegMovetoAbs _createSVGPathSegMovetoAbs(receiver, x, y) native;
118
119 SVGPathSegMovetoRel createSVGPathSegMovetoRel(num x, num y) {
120 return _createSVGPathSegMovetoRel(this, x, y);
121 }
122 static SVGPathSegMovetoRel _createSVGPathSegMovetoRel(receiver, x, y) native;
123
124 int getPathSegAtLength(num distance) {
125 return _getPathSegAtLength(this, distance);
126 }
127 static int _getPathSegAtLength(receiver, distance) native;
128
129 SVGPoint getPointAtLength(num distance) {
130 return _getPointAtLength(this, distance);
131 }
132 static SVGPoint _getPointAtLength(receiver, distance) native;
133
134 num getTotalLength() {
135 return _getTotalLength(this);
136 }
137 static num _getTotalLength(receiver) native;
138
139 // From SVGTests
140
141 SVGStringList get requiredExtensions() { return _get_requiredExtensions(this); }
142 static SVGStringList _get_requiredExtensions(var _this) native;
143
144 SVGStringList get requiredFeatures() { return _get_requiredFeatures(this); }
145 static SVGStringList _get_requiredFeatures(var _this) native;
146
147 SVGStringList get systemLanguage() { return _get_systemLanguage(this); }
148 static SVGStringList _get_systemLanguage(var _this) native;
149
150 bool hasExtension(String extension) {
151 return _hasExtension(this, extension);
152 }
153 static bool _hasExtension(receiver, extension) native;
154
155 // From SVGLangSpace
156
157 String get xmllang() { return _get_xmllang(this); }
158 static String _get_xmllang(var _this) native;
159
160 void set xmllang(String value) { _set_xmllang(this, value); }
161 static void _set_xmllang(var _this, String value) native;
162
163 String get xmlspace() { return _get_xmlspace(this); }
164 static String _get_xmlspace(var _this) native;
165
166 void set xmlspace(String value) { _set_xmlspace(this, value); }
167 static void _set_xmlspace(var _this, String value) native;
168
169 // From SVGExternalResourcesRequired
170
171 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou rcesRequired(this); }
172 static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native;
173
174 // From SVGStylable
175
176 SVGAnimatedString get className() { return _get_className(this); }
177 static SVGAnimatedString _get_className(var _this) native;
178
179 CSSStyleDeclaration get style() { return _get_style_SVGPathElement(this); }
180 static CSSStyleDeclaration _get_style_SVGPathElement(var _this) native;
181
182 CSSValue getPresentationAttribute(String name) {
183 return _getPresentationAttribute(this, name);
184 }
185 static CSSValue _getPresentationAttribute(receiver, name) native;
186
187 // From SVGTransformable
188
189 SVGAnimatedTransformList get transform() { return _get_transform(this); }
190 static SVGAnimatedTransformList _get_transform(var _this) native;
191
192 // From SVGLocatable
193
194 SVGElement get farthestViewportElement() { return _get_farthestViewportElement (this); }
195 static SVGElement _get_farthestViewportElement(var _this) native;
196
197 SVGElement get nearestViewportElement() { return _get_nearestViewportElement(t his); }
198 static SVGElement _get_nearestViewportElement(var _this) native;
199
200 SVGRect getBBox() {
201 return _getBBox(this);
202 }
203 static SVGRect _getBBox(receiver) native;
204
205 SVGMatrix getCTM() {
206 return _getCTM(this);
207 }
208 static SVGMatrix _getCTM(receiver) native;
209
210 SVGMatrix getScreenCTM() {
211 return _getScreenCTM(this);
212 }
213 static SVGMatrix _getScreenCTM(receiver) native;
214
215 SVGMatrix getTransformToElement(SVGElement element) {
216 return _getTransformToElement(this, element);
217 }
218 static SVGMatrix _getTransformToElement(receiver, element) native;
219
220 String get typeName() { return "SVGPathElement"; }
221 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698