| OLD | NEW |
| 1 library dart.dom.svg; | 1 library dart.dom.svg; |
| 2 | 2 |
| 3 import 'dart:async'; | 3 import 'dart:async'; |
| 4 import 'dart:collection'; | 4 import 'dart:collection'; |
| 5 import 'dart:_internal' hide deprecated; | 5 import 'dart:_internal' hide deprecated; |
| 6 import 'dart:html'; | 6 import 'dart:html'; |
| 7 import 'dart:html_common'; | 7 import 'dart:html_common'; |
| 8 import 'dart:nativewrappers'; | 8 import 'dart:nativewrappers'; |
| 9 import 'dart:_blink' as _blink; | 9 import 'dart:_blink' as _blink; |
| 10 // DO NOT EDIT | 10 // DO NOT EDIT |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 | 234 |
| 235 /// Checks if this type is supported on the current platform. | 235 /// Checks if this type is supported on the current platform. |
| 236 static bool get supported => true; | 236 static bool get supported => true; |
| 237 | 237 |
| 238 @DomName('SVGAltGlyphElement.format') | 238 @DomName('SVGAltGlyphElement.format') |
| 239 @DocsEditable() | 239 @DocsEditable() |
| 240 String get format => _blink.BlinkSVGAltGlyphElement.format_Getter(this); | 240 String get format => _blink.BlinkSVGAltGlyphElement.format_Getter(this); |
| 241 | 241 |
| 242 @DomName('SVGAltGlyphElement.format') | 242 @DomName('SVGAltGlyphElement.format') |
| 243 @DocsEditable() | 243 @DocsEditable() |
| 244 void set format(String value) => _blink.BlinkSVGAltGlyphElement.format_Setter_
DOMString(this, value); | 244 void set format(String value) => _blink.BlinkSVGAltGlyphElement.format_Setter(
this, value); |
| 245 | 245 |
| 246 @DomName('SVGAltGlyphElement.glyphRef') | 246 @DomName('SVGAltGlyphElement.glyphRef') |
| 247 @DocsEditable() | 247 @DocsEditable() |
| 248 String get glyphRef => _blink.BlinkSVGAltGlyphElement.glyphRef_Getter(this); | 248 String get glyphRef => _blink.BlinkSVGAltGlyphElement.glyphRef_Getter(this); |
| 249 | 249 |
| 250 @DomName('SVGAltGlyphElement.glyphRef') | 250 @DomName('SVGAltGlyphElement.glyphRef') |
| 251 @DocsEditable() | 251 @DocsEditable() |
| 252 void set glyphRef(String value) => _blink.BlinkSVGAltGlyphElement.glyphRef_Set
ter_DOMString(this, value); | 252 void set glyphRef(String value) => _blink.BlinkSVGAltGlyphElement.glyphRef_Set
ter(this, value); |
| 253 | 253 |
| 254 @DomName('SVGAltGlyphElement.href') | 254 @DomName('SVGAltGlyphElement.href') |
| 255 @DocsEditable() | 255 @DocsEditable() |
| 256 AnimatedString get href => _blink.BlinkSVGAltGlyphElement.href_Getter(this); | 256 AnimatedString get href => _blink.BlinkSVGAltGlyphElement.href_Getter(this); |
| 257 | 257 |
| 258 } | 258 } |
| 259 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 259 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 260 // for details. All rights reserved. Use of this source code is governed by a | 260 // for details. All rights reserved. Use of this source code is governed by a |
| 261 // BSD-style license that can be found in the LICENSE file. | 261 // BSD-style license that can be found in the LICENSE file. |
| 262 | 262 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 293 @DomName('SVGAngle.unitType') | 293 @DomName('SVGAngle.unitType') |
| 294 @DocsEditable() | 294 @DocsEditable() |
| 295 int get unitType => _blink.BlinkSVGAngle.unitType_Getter(this); | 295 int get unitType => _blink.BlinkSVGAngle.unitType_Getter(this); |
| 296 | 296 |
| 297 @DomName('SVGAngle.value') | 297 @DomName('SVGAngle.value') |
| 298 @DocsEditable() | 298 @DocsEditable() |
| 299 num get value => _blink.BlinkSVGAngle.value_Getter(this); | 299 num get value => _blink.BlinkSVGAngle.value_Getter(this); |
| 300 | 300 |
| 301 @DomName('SVGAngle.value') | 301 @DomName('SVGAngle.value') |
| 302 @DocsEditable() | 302 @DocsEditable() |
| 303 void set value(num value) => _blink.BlinkSVGAngle.value_Setter_float(this, val
ue); | 303 void set value(num value) => _blink.BlinkSVGAngle.value_Setter(this, value); |
| 304 | 304 |
| 305 @DomName('SVGAngle.valueAsString') | 305 @DomName('SVGAngle.valueAsString') |
| 306 @DocsEditable() | 306 @DocsEditable() |
| 307 String get valueAsString => _blink.BlinkSVGAngle.valueAsString_Getter(this); | 307 String get valueAsString => _blink.BlinkSVGAngle.valueAsString_Getter(this); |
| 308 | 308 |
| 309 @DomName('SVGAngle.valueAsString') | 309 @DomName('SVGAngle.valueAsString') |
| 310 @DocsEditable() | 310 @DocsEditable() |
| 311 void set valueAsString(String value) => _blink.BlinkSVGAngle.valueAsString_Set
ter_DOMString(this, value); | 311 void set valueAsString(String value) => _blink.BlinkSVGAngle.valueAsString_Set
ter(this, value); |
| 312 | 312 |
| 313 @DomName('SVGAngle.valueInSpecifiedUnits') | 313 @DomName('SVGAngle.valueInSpecifiedUnits') |
| 314 @DocsEditable() | 314 @DocsEditable() |
| 315 num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.valueInSpecifiedUnits_Ge
tter(this); | 315 num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.valueInSpecifiedUnits_Ge
tter(this); |
| 316 | 316 |
| 317 @DomName('SVGAngle.valueInSpecifiedUnits') | 317 @DomName('SVGAngle.valueInSpecifiedUnits') |
| 318 @DocsEditable() | 318 @DocsEditable() |
| 319 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.valueInSpeci
fiedUnits_Setter_float(this, value); | 319 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.valueInSpeci
fiedUnits_Setter(this, value); |
| 320 | 320 |
| 321 @DomName('SVGAngle.convertToSpecifiedUnits') | 321 @DomName('SVGAngle.convertToSpecifiedUnits') |
| 322 @DocsEditable() | 322 @DocsEditable() |
| 323 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.convertToSp
ecifiedUnits_Callback_us(this, unitType); | 323 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.convertToSp
ecifiedUnits_Callback_1(this, unitType); |
| 324 | 324 |
| 325 @DomName('SVGAngle.newValueSpecifiedUnits') | 325 @DomName('SVGAngle.newValueSpecifiedUnits') |
| 326 @DocsEditable() | 326 @DocsEditable() |
| 327 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGAngle.newValueSpecifiedUnits_Callback_us_float(this, unitType, valueInS
pecifiedUnits); | 327 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGAngle.newValueSpecifiedUnits_Callback_2(this, unitType, valueInSpecifie
dUnits); |
| 328 | 328 |
| 329 } | 329 } |
| 330 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 330 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 331 // for details. All rights reserved. Use of this source code is governed by a | 331 // for details. All rights reserved. Use of this source code is governed by a |
| 332 // BSD-style license that can be found in the LICENSE file. | 332 // BSD-style license that can be found in the LICENSE file. |
| 333 | 333 |
| 334 // WARNING: Do not edit - generated code. | 334 // WARNING: Do not edit - generated code. |
| 335 | 335 |
| 336 | 336 |
| 337 @DocsEditable() | 337 @DocsEditable() |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 @DomName('SVGAnimatedBoolean.animVal') | 460 @DomName('SVGAnimatedBoolean.animVal') |
| 461 @DocsEditable() | 461 @DocsEditable() |
| 462 bool get animVal => _blink.BlinkSVGAnimatedBoolean.animVal_Getter(this); | 462 bool get animVal => _blink.BlinkSVGAnimatedBoolean.animVal_Getter(this); |
| 463 | 463 |
| 464 @DomName('SVGAnimatedBoolean.baseVal') | 464 @DomName('SVGAnimatedBoolean.baseVal') |
| 465 @DocsEditable() | 465 @DocsEditable() |
| 466 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.baseVal_Getter(this); | 466 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.baseVal_Getter(this); |
| 467 | 467 |
| 468 @DomName('SVGAnimatedBoolean.baseVal') | 468 @DomName('SVGAnimatedBoolean.baseVal') |
| 469 @DocsEditable() | 469 @DocsEditable() |
| 470 void set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.baseVal_Setter_
boolean(this, value); | 470 void set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.baseVal_Setter(
this, value); |
| 471 | 471 |
| 472 } | 472 } |
| 473 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 473 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 474 // for details. All rights reserved. Use of this source code is governed by a | 474 // for details. All rights reserved. Use of this source code is governed by a |
| 475 // BSD-style license that can be found in the LICENSE file. | 475 // BSD-style license that can be found in the LICENSE file. |
| 476 | 476 |
| 477 // WARNING: Do not edit - generated code. | 477 // WARNING: Do not edit - generated code. |
| 478 | 478 |
| 479 | 479 |
| 480 @DocsEditable() | 480 @DocsEditable() |
| 481 @DomName('SVGAnimatedEnumeration') | 481 @DomName('SVGAnimatedEnumeration') |
| 482 @Unstable() | 482 @Unstable() |
| 483 class AnimatedEnumeration extends NativeFieldWrapperClass2 { | 483 class AnimatedEnumeration extends NativeFieldWrapperClass2 { |
| 484 // To suppress missing implicit constructor warnings. | 484 // To suppress missing implicit constructor warnings. |
| 485 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported");
} | 485 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported");
} |
| 486 | 486 |
| 487 @DomName('SVGAnimatedEnumeration.animVal') | 487 @DomName('SVGAnimatedEnumeration.animVal') |
| 488 @DocsEditable() | 488 @DocsEditable() |
| 489 int get animVal => _blink.BlinkSVGAnimatedEnumeration.animVal_Getter(this); | 489 int get animVal => _blink.BlinkSVGAnimatedEnumeration.animVal_Getter(this); |
| 490 | 490 |
| 491 @DomName('SVGAnimatedEnumeration.baseVal') | 491 @DomName('SVGAnimatedEnumeration.baseVal') |
| 492 @DocsEditable() | 492 @DocsEditable() |
| 493 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.baseVal_Getter(this); | 493 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.baseVal_Getter(this); |
| 494 | 494 |
| 495 @DomName('SVGAnimatedEnumeration.baseVal') | 495 @DomName('SVGAnimatedEnumeration.baseVal') |
| 496 @DocsEditable() | 496 @DocsEditable() |
| 497 void set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.baseVal_Sett
er_us(this, value); | 497 void set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.baseVal_Sett
er(this, value); |
| 498 | 498 |
| 499 } | 499 } |
| 500 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 500 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 501 // for details. All rights reserved. Use of this source code is governed by a | 501 // for details. All rights reserved. Use of this source code is governed by a |
| 502 // BSD-style license that can be found in the LICENSE file. | 502 // BSD-style license that can be found in the LICENSE file. |
| 503 | 503 |
| 504 // WARNING: Do not edit - generated code. | 504 // WARNING: Do not edit - generated code. |
| 505 | 505 |
| 506 | 506 |
| 507 @DocsEditable() | 507 @DocsEditable() |
| 508 @DomName('SVGAnimatedInteger') | 508 @DomName('SVGAnimatedInteger') |
| 509 @Unstable() | 509 @Unstable() |
| 510 class AnimatedInteger extends NativeFieldWrapperClass2 { | 510 class AnimatedInteger extends NativeFieldWrapperClass2 { |
| 511 // To suppress missing implicit constructor warnings. | 511 // To suppress missing implicit constructor warnings. |
| 512 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } | 512 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } |
| 513 | 513 |
| 514 @DomName('SVGAnimatedInteger.animVal') | 514 @DomName('SVGAnimatedInteger.animVal') |
| 515 @DocsEditable() | 515 @DocsEditable() |
| 516 int get animVal => _blink.BlinkSVGAnimatedInteger.animVal_Getter(this); | 516 int get animVal => _blink.BlinkSVGAnimatedInteger.animVal_Getter(this); |
| 517 | 517 |
| 518 @DomName('SVGAnimatedInteger.baseVal') | 518 @DomName('SVGAnimatedInteger.baseVal') |
| 519 @DocsEditable() | 519 @DocsEditable() |
| 520 int get baseVal => _blink.BlinkSVGAnimatedInteger.baseVal_Getter(this); | 520 int get baseVal => _blink.BlinkSVGAnimatedInteger.baseVal_Getter(this); |
| 521 | 521 |
| 522 @DomName('SVGAnimatedInteger.baseVal') | 522 @DomName('SVGAnimatedInteger.baseVal') |
| 523 @DocsEditable() | 523 @DocsEditable() |
| 524 void set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.baseVal_Setter_l
ong(this, value); | 524 void set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.baseVal_Setter(t
his, value); |
| 525 | 525 |
| 526 } | 526 } |
| 527 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 527 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 528 // for details. All rights reserved. Use of this source code is governed by a | 528 // for details. All rights reserved. Use of this source code is governed by a |
| 529 // BSD-style license that can be found in the LICENSE file. | 529 // BSD-style license that can be found in the LICENSE file. |
| 530 | 530 |
| 531 // WARNING: Do not edit - generated code. | 531 // WARNING: Do not edit - generated code. |
| 532 | 532 |
| 533 | 533 |
| 534 @DocsEditable() | 534 @DocsEditable() |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 @DomName('SVGAnimatedNumber.animVal') | 587 @DomName('SVGAnimatedNumber.animVal') |
| 588 @DocsEditable() | 588 @DocsEditable() |
| 589 double get animVal => _blink.BlinkSVGAnimatedNumber.animVal_Getter(this); | 589 double get animVal => _blink.BlinkSVGAnimatedNumber.animVal_Getter(this); |
| 590 | 590 |
| 591 @DomName('SVGAnimatedNumber.baseVal') | 591 @DomName('SVGAnimatedNumber.baseVal') |
| 592 @DocsEditable() | 592 @DocsEditable() |
| 593 num get baseVal => _blink.BlinkSVGAnimatedNumber.baseVal_Getter(this); | 593 num get baseVal => _blink.BlinkSVGAnimatedNumber.baseVal_Getter(this); |
| 594 | 594 |
| 595 @DomName('SVGAnimatedNumber.baseVal') | 595 @DomName('SVGAnimatedNumber.baseVal') |
| 596 @DocsEditable() | 596 @DocsEditable() |
| 597 void set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.baseVal_Setter_fl
oat(this, value); | 597 void set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.baseVal_Setter(th
is, value); |
| 598 | 598 |
| 599 } | 599 } |
| 600 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 600 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 601 // for details. All rights reserved. Use of this source code is governed by a | 601 // for details. All rights reserved. Use of this source code is governed by a |
| 602 // BSD-style license that can be found in the LICENSE file. | 602 // BSD-style license that can be found in the LICENSE file. |
| 603 | 603 |
| 604 // WARNING: Do not edit - generated code. | 604 // WARNING: Do not edit - generated code. |
| 605 | 605 |
| 606 | 606 |
| 607 @DocsEditable() | 607 @DocsEditable() |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 @DomName('SVGAnimatedString.animVal') | 683 @DomName('SVGAnimatedString.animVal') |
| 684 @DocsEditable() | 684 @DocsEditable() |
| 685 String get animVal => _blink.BlinkSVGAnimatedString.animVal_Getter(this); | 685 String get animVal => _blink.BlinkSVGAnimatedString.animVal_Getter(this); |
| 686 | 686 |
| 687 @DomName('SVGAnimatedString.baseVal') | 687 @DomName('SVGAnimatedString.baseVal') |
| 688 @DocsEditable() | 688 @DocsEditable() |
| 689 String get baseVal => _blink.BlinkSVGAnimatedString.baseVal_Getter(this); | 689 String get baseVal => _blink.BlinkSVGAnimatedString.baseVal_Getter(this); |
| 690 | 690 |
| 691 @DomName('SVGAnimatedString.baseVal') | 691 @DomName('SVGAnimatedString.baseVal') |
| 692 @DocsEditable() | 692 @DocsEditable() |
| 693 void set baseVal(String value) => _blink.BlinkSVGAnimatedString.baseVal_Setter
_DOMString(this, value); | 693 void set baseVal(String value) => _blink.BlinkSVGAnimatedString.baseVal_Setter
(this, value); |
| 694 | 694 |
| 695 } | 695 } |
| 696 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 696 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 697 // for details. All rights reserved. Use of this source code is governed by a | 697 // for details. All rights reserved. Use of this source code is governed by a |
| 698 // BSD-style license that can be found in the LICENSE file. | 698 // BSD-style license that can be found in the LICENSE file. |
| 699 | 699 |
| 700 // WARNING: Do not edit - generated code. | 700 // WARNING: Do not edit - generated code. |
| 701 | 701 |
| 702 | 702 |
| 703 @DocsEditable() | 703 @DocsEditable() |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 @DomName('SVGAnimationElement.targetElement') | 743 @DomName('SVGAnimationElement.targetElement') |
| 744 @DocsEditable() | 744 @DocsEditable() |
| 745 SvgElement get targetElement => _blink.BlinkSVGAnimationElement.targetElement_
Getter(this); | 745 SvgElement get targetElement => _blink.BlinkSVGAnimationElement.targetElement_
Getter(this); |
| 746 | 746 |
| 747 @DomName('SVGAnimationElement.beginElement') | 747 @DomName('SVGAnimationElement.beginElement') |
| 748 @DocsEditable() | 748 @DocsEditable() |
| 749 void beginElement() => _blink.BlinkSVGAnimationElement.beginElement_Callback(t
his); | 749 void beginElement() => _blink.BlinkSVGAnimationElement.beginElement_Callback(t
his); |
| 750 | 750 |
| 751 @DomName('SVGAnimationElement.beginElementAt') | 751 @DomName('SVGAnimationElement.beginElementAt') |
| 752 @DocsEditable() | 752 @DocsEditable() |
| 753 void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.beginElemen
tAt_Callback_float(this, offset); | 753 void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.beginElemen
tAt_Callback_1(this, offset); |
| 754 | 754 |
| 755 @DomName('SVGAnimationElement.endElement') | 755 @DomName('SVGAnimationElement.endElement') |
| 756 @DocsEditable() | 756 @DocsEditable() |
| 757 void endElement() => _blink.BlinkSVGAnimationElement.endElement_Callback(this)
; | 757 void endElement() => _blink.BlinkSVGAnimationElement.endElement_Callback(this)
; |
| 758 | 758 |
| 759 @DomName('SVGAnimationElement.endElementAt') | 759 @DomName('SVGAnimationElement.endElementAt') |
| 760 @DocsEditable() | 760 @DocsEditable() |
| 761 void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.endElementAt_
Callback_float(this, offset); | 761 void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.endElementAt_
Callback_1(this, offset); |
| 762 | 762 |
| 763 @DomName('SVGAnimationElement.getCurrentTime') | 763 @DomName('SVGAnimationElement.getCurrentTime') |
| 764 @DocsEditable() | 764 @DocsEditable() |
| 765 double getCurrentTime() => _blink.BlinkSVGAnimationElement.getCurrentTime_Call
back(this); | 765 double getCurrentTime() => _blink.BlinkSVGAnimationElement.getCurrentTime_Call
back(this); |
| 766 | 766 |
| 767 @DomName('SVGAnimationElement.getSimpleDuration') | 767 @DomName('SVGAnimationElement.getSimpleDuration') |
| 768 @DocsEditable() | 768 @DocsEditable() |
| 769 double getSimpleDuration() => _blink.BlinkSVGAnimationElement.getSimpleDuratio
n_Callback(this); | 769 double getSimpleDuration() => _blink.BlinkSVGAnimationElement.getSimpleDuratio
n_Callback(this); |
| 770 | 770 |
| 771 @DomName('SVGAnimationElement.getStartTime') | 771 @DomName('SVGAnimationElement.getStartTime') |
| 772 @DocsEditable() | 772 @DocsEditable() |
| 773 double getStartTime() => _blink.BlinkSVGAnimationElement.getStartTime_Callback
(this); | 773 double getStartTime() => _blink.BlinkSVGAnimationElement.getStartTime_Callback
(this); |
| 774 | 774 |
| 775 @DomName('SVGAnimationElement.requiredExtensions') | 775 @DomName('SVGAnimationElement.requiredExtensions') |
| 776 @DocsEditable() | 776 @DocsEditable() |
| 777 StringList get requiredExtensions => _blink.BlinkSVGAnimationElement.requiredE
xtensions_Getter(this); | 777 StringList get requiredExtensions => _blink.BlinkSVGAnimationElement.requiredE
xtensions_Getter(this); |
| 778 | 778 |
| 779 @DomName('SVGAnimationElement.requiredFeatures') | 779 @DomName('SVGAnimationElement.requiredFeatures') |
| 780 @DocsEditable() | 780 @DocsEditable() |
| 781 StringList get requiredFeatures => _blink.BlinkSVGAnimationElement.requiredFea
tures_Getter(this); | 781 StringList get requiredFeatures => _blink.BlinkSVGAnimationElement.requiredFea
tures_Getter(this); |
| 782 | 782 |
| 783 @DomName('SVGAnimationElement.systemLanguage') | 783 @DomName('SVGAnimationElement.systemLanguage') |
| 784 @DocsEditable() | 784 @DocsEditable() |
| 785 StringList get systemLanguage => _blink.BlinkSVGAnimationElement.systemLanguag
e_Getter(this); | 785 StringList get systemLanguage => _blink.BlinkSVGAnimationElement.systemLanguag
e_Getter(this); |
| 786 | 786 |
| 787 @DomName('SVGAnimationElement.hasExtension') | 787 @DomName('SVGAnimationElement.hasExtension') |
| 788 @DocsEditable() | 788 @DocsEditable() |
| 789 bool hasExtension(String extension) => _blink.BlinkSVGAnimationElement.hasExte
nsion_Callback_DOMString(this, extension); | 789 bool hasExtension(String extension) => _blink.BlinkSVGAnimationElement.hasExte
nsion_Callback_1(this, extension); |
| 790 | 790 |
| 791 } | 791 } |
| 792 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 792 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 793 // for details. All rights reserved. Use of this source code is governed by a | 793 // for details. All rights reserved. Use of this source code is governed by a |
| 794 // BSD-style license that can be found in the LICENSE file. | 794 // BSD-style license that can be found in the LICENSE file. |
| 795 | 795 |
| 796 // WARNING: Do not edit - generated code. | 796 // WARNING: Do not edit - generated code. |
| 797 | 797 |
| 798 | 798 |
| 799 @DocsEditable() | 799 @DocsEditable() |
| (...skipping 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1830 @DomName('SVGFEGaussianBlurElement.stdDeviationX') | 1830 @DomName('SVGFEGaussianBlurElement.stdDeviationX') |
| 1831 @DocsEditable() | 1831 @DocsEditable() |
| 1832 AnimatedNumber get stdDeviationX => _blink.BlinkSVGFEGaussianBlurElement.stdDe
viationX_Getter(this); | 1832 AnimatedNumber get stdDeviationX => _blink.BlinkSVGFEGaussianBlurElement.stdDe
viationX_Getter(this); |
| 1833 | 1833 |
| 1834 @DomName('SVGFEGaussianBlurElement.stdDeviationY') | 1834 @DomName('SVGFEGaussianBlurElement.stdDeviationY') |
| 1835 @DocsEditable() | 1835 @DocsEditable() |
| 1836 AnimatedNumber get stdDeviationY => _blink.BlinkSVGFEGaussianBlurElement.stdDe
viationY_Getter(this); | 1836 AnimatedNumber get stdDeviationY => _blink.BlinkSVGFEGaussianBlurElement.stdDe
viationY_Getter(this); |
| 1837 | 1837 |
| 1838 @DomName('SVGFEGaussianBlurElement.setStdDeviation') | 1838 @DomName('SVGFEGaussianBlurElement.setStdDeviation') |
| 1839 @DocsEditable() | 1839 @DocsEditable() |
| 1840 void setStdDeviation(num stdDeviationX, num stdDeviationY) => _blink.BlinkSVGF
EGaussianBlurElement.setStdDeviation_Callback_float_float(this, stdDeviationX, s
tdDeviationY); | 1840 void setStdDeviation(num stdDeviationX, num stdDeviationY) => _blink.BlinkSVGF
EGaussianBlurElement.setStdDeviation_Callback_2(this, stdDeviationX, stdDeviatio
nY); |
| 1841 | 1841 |
| 1842 @DomName('SVGFEGaussianBlurElement.height') | 1842 @DomName('SVGFEGaussianBlurElement.height') |
| 1843 @DocsEditable() | 1843 @DocsEditable() |
| 1844 AnimatedLength get height => _blink.BlinkSVGFEGaussianBlurElement.height_Gette
r(this); | 1844 AnimatedLength get height => _blink.BlinkSVGFEGaussianBlurElement.height_Gette
r(this); |
| 1845 | 1845 |
| 1846 @DomName('SVGFEGaussianBlurElement.result') | 1846 @DomName('SVGFEGaussianBlurElement.result') |
| 1847 @DocsEditable() | 1847 @DocsEditable() |
| 1848 AnimatedString get result => _blink.BlinkSVGFEGaussianBlurElement.result_Gette
r(this); | 1848 AnimatedString get result => _blink.BlinkSVGFEGaussianBlurElement.result_Gette
r(this); |
| 1849 | 1849 |
| 1850 @DomName('SVGFEGaussianBlurElement.width') | 1850 @DomName('SVGFEGaussianBlurElement.width') |
| (...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2535 @DomName('SVGFilterElement.x') | 2535 @DomName('SVGFilterElement.x') |
| 2536 @DocsEditable() | 2536 @DocsEditable() |
| 2537 AnimatedLength get x => _blink.BlinkSVGFilterElement.x_Getter(this); | 2537 AnimatedLength get x => _blink.BlinkSVGFilterElement.x_Getter(this); |
| 2538 | 2538 |
| 2539 @DomName('SVGFilterElement.y') | 2539 @DomName('SVGFilterElement.y') |
| 2540 @DocsEditable() | 2540 @DocsEditable() |
| 2541 AnimatedLength get y => _blink.BlinkSVGFilterElement.y_Getter(this); | 2541 AnimatedLength get y => _blink.BlinkSVGFilterElement.y_Getter(this); |
| 2542 | 2542 |
| 2543 @DomName('SVGFilterElement.setFilterRes') | 2543 @DomName('SVGFilterElement.setFilterRes') |
| 2544 @DocsEditable() | 2544 @DocsEditable() |
| 2545 void setFilterRes(int filterResX, int filterResY) => _blink.BlinkSVGFilterElem
ent.setFilterRes_Callback_ul_ul(this, filterResX, filterResY); | 2545 void setFilterRes(int filterResX, int filterResY) => _blink.BlinkSVGFilterElem
ent.setFilterRes_Callback_2(this, filterResX, filterResY); |
| 2546 | 2546 |
| 2547 @DomName('SVGFilterElement.href') | 2547 @DomName('SVGFilterElement.href') |
| 2548 @DocsEditable() | 2548 @DocsEditable() |
| 2549 AnimatedString get href => _blink.BlinkSVGFilterElement.href_Getter(this); | 2549 AnimatedString get href => _blink.BlinkSVGFilterElement.href_Getter(this); |
| 2550 | 2550 |
| 2551 } | 2551 } |
| 2552 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2552 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2553 // for details. All rights reserved. Use of this source code is governed by a | 2553 // for details. All rights reserved. Use of this source code is governed by a |
| 2554 // BSD-style license that can be found in the LICENSE file. | 2554 // BSD-style license that can be found in the LICENSE file. |
| 2555 | 2555 |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2695 /** | 2695 /** |
| 2696 * Constructor instantiated by the DOM when a custom element has been created. | 2696 * Constructor instantiated by the DOM when a custom element has been created. |
| 2697 * | 2697 * |
| 2698 * This can only be called by subclasses from their created constructor. | 2698 * This can only be called by subclasses from their created constructor. |
| 2699 */ | 2699 */ |
| 2700 GeometryElement.created() : super.created(); | 2700 GeometryElement.created() : super.created(); |
| 2701 | 2701 |
| 2702 @DomName('SVGGeometryElement.isPointInFill') | 2702 @DomName('SVGGeometryElement.isPointInFill') |
| 2703 @DocsEditable() | 2703 @DocsEditable() |
| 2704 @Experimental() // untriaged | 2704 @Experimental() // untriaged |
| 2705 bool isPointInFill(Point point) => _blink.BlinkSVGGeometryElement.isPointInFil
l_Callback_SVGPoint(this, point); | 2705 bool isPointInFill(Point point) => _blink.BlinkSVGGeometryElement.isPointInFil
l_Callback_1(this, point); |
| 2706 | 2706 |
| 2707 @DomName('SVGGeometryElement.isPointInStroke') | 2707 @DomName('SVGGeometryElement.isPointInStroke') |
| 2708 @DocsEditable() | 2708 @DocsEditable() |
| 2709 @Experimental() // untriaged | 2709 @Experimental() // untriaged |
| 2710 bool isPointInStroke(Point point) => _blink.BlinkSVGGeometryElement.isPointInS
troke_Callback_SVGPoint(this, point); | 2710 bool isPointInStroke(Point point) => _blink.BlinkSVGGeometryElement.isPointInS
troke_Callback_1(this, point); |
| 2711 | 2711 |
| 2712 } | 2712 } |
| 2713 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2713 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2714 // for details. All rights reserved. Use of this source code is governed by a | 2714 // for details. All rights reserved. Use of this source code is governed by a |
| 2715 // BSD-style license that can be found in the LICENSE file. | 2715 // BSD-style license that can be found in the LICENSE file. |
| 2716 | 2716 |
| 2717 // WARNING: Do not edit - generated code. | 2717 // WARNING: Do not edit - generated code. |
| 2718 | 2718 |
| 2719 | 2719 |
| 2720 @DocsEditable() | 2720 @DocsEditable() |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2756 Matrix getCtm() => _blink.BlinkSVGGraphicsElement.getCTM_Callback(this); | 2756 Matrix getCtm() => _blink.BlinkSVGGraphicsElement.getCTM_Callback(this); |
| 2757 | 2757 |
| 2758 @DomName('SVGGraphicsElement.getScreenCTM') | 2758 @DomName('SVGGraphicsElement.getScreenCTM') |
| 2759 @DocsEditable() | 2759 @DocsEditable() |
| 2760 @Experimental() // untriaged | 2760 @Experimental() // untriaged |
| 2761 Matrix getScreenCtm() => _blink.BlinkSVGGraphicsElement.getScreenCTM_Callback(
this); | 2761 Matrix getScreenCtm() => _blink.BlinkSVGGraphicsElement.getScreenCTM_Callback(
this); |
| 2762 | 2762 |
| 2763 @DomName('SVGGraphicsElement.getTransformToElement') | 2763 @DomName('SVGGraphicsElement.getTransformToElement') |
| 2764 @DocsEditable() | 2764 @DocsEditable() |
| 2765 @Experimental() // untriaged | 2765 @Experimental() // untriaged |
| 2766 Matrix getTransformToElement(SvgElement element) => _blink.BlinkSVGGraphicsEle
ment.getTransformToElement_Callback_SVGElement(this, element); | 2766 Matrix getTransformToElement(SvgElement element) => _blink.BlinkSVGGraphicsEle
ment.getTransformToElement_Callback_1(this, element); |
| 2767 | 2767 |
| 2768 @DomName('SVGGraphicsElement.requiredExtensions') | 2768 @DomName('SVGGraphicsElement.requiredExtensions') |
| 2769 @DocsEditable() | 2769 @DocsEditable() |
| 2770 @Experimental() // untriaged | 2770 @Experimental() // untriaged |
| 2771 StringList get requiredExtensions => _blink.BlinkSVGGraphicsElement.requiredEx
tensions_Getter(this); | 2771 StringList get requiredExtensions => _blink.BlinkSVGGraphicsElement.requiredEx
tensions_Getter(this); |
| 2772 | 2772 |
| 2773 @DomName('SVGGraphicsElement.requiredFeatures') | 2773 @DomName('SVGGraphicsElement.requiredFeatures') |
| 2774 @DocsEditable() | 2774 @DocsEditable() |
| 2775 @Experimental() // untriaged | 2775 @Experimental() // untriaged |
| 2776 StringList get requiredFeatures => _blink.BlinkSVGGraphicsElement.requiredFeat
ures_Getter(this); | 2776 StringList get requiredFeatures => _blink.BlinkSVGGraphicsElement.requiredFeat
ures_Getter(this); |
| 2777 | 2777 |
| 2778 @DomName('SVGGraphicsElement.systemLanguage') | 2778 @DomName('SVGGraphicsElement.systemLanguage') |
| 2779 @DocsEditable() | 2779 @DocsEditable() |
| 2780 @Experimental() // untriaged | 2780 @Experimental() // untriaged |
| 2781 StringList get systemLanguage => _blink.BlinkSVGGraphicsElement.systemLanguage
_Getter(this); | 2781 StringList get systemLanguage => _blink.BlinkSVGGraphicsElement.systemLanguage
_Getter(this); |
| 2782 | 2782 |
| 2783 @DomName('SVGGraphicsElement.hasExtension') | 2783 @DomName('SVGGraphicsElement.hasExtension') |
| 2784 @DocsEditable() | 2784 @DocsEditable() |
| 2785 @Experimental() // untriaged | 2785 @Experimental() // untriaged |
| 2786 bool hasExtension(String extension) => _blink.BlinkSVGGraphicsElement.hasExten
sion_Callback_DOMString(this, extension); | 2786 bool hasExtension(String extension) => _blink.BlinkSVGGraphicsElement.hasExten
sion_Callback_1(this, extension); |
| 2787 | 2787 |
| 2788 } | 2788 } |
| 2789 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2789 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2790 // for details. All rights reserved. Use of this source code is governed by a | 2790 // for details. All rights reserved. Use of this source code is governed by a |
| 2791 // BSD-style license that can be found in the LICENSE file. | 2791 // BSD-style license that can be found in the LICENSE file. |
| 2792 | 2792 |
| 2793 // WARNING: Do not edit - generated code. | 2793 // WARNING: Do not edit - generated code. |
| 2794 | 2794 |
| 2795 | 2795 |
| 2796 @DocsEditable() | 2796 @DocsEditable() |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2896 @DomName('SVGLength.unitType') | 2896 @DomName('SVGLength.unitType') |
| 2897 @DocsEditable() | 2897 @DocsEditable() |
| 2898 int get unitType => _blink.BlinkSVGLength.unitType_Getter(this); | 2898 int get unitType => _blink.BlinkSVGLength.unitType_Getter(this); |
| 2899 | 2899 |
| 2900 @DomName('SVGLength.value') | 2900 @DomName('SVGLength.value') |
| 2901 @DocsEditable() | 2901 @DocsEditable() |
| 2902 num get value => _blink.BlinkSVGLength.value_Getter(this); | 2902 num get value => _blink.BlinkSVGLength.value_Getter(this); |
| 2903 | 2903 |
| 2904 @DomName('SVGLength.value') | 2904 @DomName('SVGLength.value') |
| 2905 @DocsEditable() | 2905 @DocsEditable() |
| 2906 void set value(num value) => _blink.BlinkSVGLength.value_Setter_float(this, va
lue); | 2906 void set value(num value) => _blink.BlinkSVGLength.value_Setter(this, value); |
| 2907 | 2907 |
| 2908 @DomName('SVGLength.valueAsString') | 2908 @DomName('SVGLength.valueAsString') |
| 2909 @DocsEditable() | 2909 @DocsEditable() |
| 2910 String get valueAsString => _blink.BlinkSVGLength.valueAsString_Getter(this); | 2910 String get valueAsString => _blink.BlinkSVGLength.valueAsString_Getter(this); |
| 2911 | 2911 |
| 2912 @DomName('SVGLength.valueAsString') | 2912 @DomName('SVGLength.valueAsString') |
| 2913 @DocsEditable() | 2913 @DocsEditable() |
| 2914 void set valueAsString(String value) => _blink.BlinkSVGLength.valueAsString_Se
tter_DOMString(this, value); | 2914 void set valueAsString(String value) => _blink.BlinkSVGLength.valueAsString_Se
tter(this, value); |
| 2915 | 2915 |
| 2916 @DomName('SVGLength.valueInSpecifiedUnits') | 2916 @DomName('SVGLength.valueInSpecifiedUnits') |
| 2917 @DocsEditable() | 2917 @DocsEditable() |
| 2918 num get valueInSpecifiedUnits => _blink.BlinkSVGLength.valueInSpecifiedUnits_G
etter(this); | 2918 num get valueInSpecifiedUnits => _blink.BlinkSVGLength.valueInSpecifiedUnits_G
etter(this); |
| 2919 | 2919 |
| 2920 @DomName('SVGLength.valueInSpecifiedUnits') | 2920 @DomName('SVGLength.valueInSpecifiedUnits') |
| 2921 @DocsEditable() | 2921 @DocsEditable() |
| 2922 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.valueInSpec
ifiedUnits_Setter_float(this, value); | 2922 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.valueInSpec
ifiedUnits_Setter(this, value); |
| 2923 | 2923 |
| 2924 @DomName('SVGLength.convertToSpecifiedUnits') | 2924 @DomName('SVGLength.convertToSpecifiedUnits') |
| 2925 @DocsEditable() | 2925 @DocsEditable() |
| 2926 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.convertToS
pecifiedUnits_Callback_us(this, unitType); | 2926 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.convertToS
pecifiedUnits_Callback_1(this, unitType); |
| 2927 | 2927 |
| 2928 @DomName('SVGLength.newValueSpecifiedUnits') | 2928 @DomName('SVGLength.newValueSpecifiedUnits') |
| 2929 @DocsEditable() | 2929 @DocsEditable() |
| 2930 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGLength.newValueSpecifiedUnits_Callback_us_float(this, unitType, valueIn
SpecifiedUnits); | 2930 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGLength.newValueSpecifiedUnits_Callback_2(this, unitType, valueInSpecifi
edUnits); |
| 2931 | 2931 |
| 2932 } | 2932 } |
| 2933 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2933 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2934 // for details. All rights reserved. Use of this source code is governed by a | 2934 // for details. All rights reserved. Use of this source code is governed by a |
| 2935 // BSD-style license that can be found in the LICENSE file. | 2935 // BSD-style license that can be found in the LICENSE file. |
| 2936 | 2936 |
| 2937 // WARNING: Do not edit - generated code. | 2937 // WARNING: Do not edit - generated code. |
| 2938 | 2938 |
| 2939 | 2939 |
| 2940 @DocsEditable() | 2940 @DocsEditable() |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2993 if (len == 0) throw new StateError("No elements"); | 2993 if (len == 0) throw new StateError("No elements"); |
| 2994 throw new StateError("More than one element"); | 2994 throw new StateError("More than one element"); |
| 2995 } | 2995 } |
| 2996 | 2996 |
| 2997 Length elementAt(int index) => this[index]; | 2997 Length elementAt(int index) => this[index]; |
| 2998 // -- end List<Length> mixins. | 2998 // -- end List<Length> mixins. |
| 2999 | 2999 |
| 3000 @DomName('SVGLengthList.__setter__') | 3000 @DomName('SVGLengthList.__setter__') |
| 3001 @DocsEditable() | 3001 @DocsEditable() |
| 3002 @Experimental() // untriaged | 3002 @Experimental() // untriaged |
| 3003 void __setter__(int index, Length value) => _blink.BlinkSVGLengthList.$__sette
r___Callback_ul_SVGLength(this, index, value); | 3003 void __setter__(int index, Length value) => _blink.BlinkSVGLengthList.$__sette
r___Callback_2(this, index, value); |
| 3004 | 3004 |
| 3005 @DomName('SVGLengthList.appendItem') | 3005 @DomName('SVGLengthList.appendItem') |
| 3006 @DocsEditable() | 3006 @DocsEditable() |
| 3007 Length appendItem(Length item) => _blink.BlinkSVGLengthList.appendItem_Callbac
k_SVGLength(this, item); | 3007 Length appendItem(Length item) => _blink.BlinkSVGLengthList.appendItem_Callbac
k_1(this, item); |
| 3008 | 3008 |
| 3009 @DomName('SVGLengthList.clear') | 3009 @DomName('SVGLengthList.clear') |
| 3010 @DocsEditable() | 3010 @DocsEditable() |
| 3011 void clear() => _blink.BlinkSVGLengthList.clear_Callback(this); | 3011 void clear() => _blink.BlinkSVGLengthList.clear_Callback(this); |
| 3012 | 3012 |
| 3013 @DomName('SVGLengthList.getItem') | 3013 @DomName('SVGLengthList.getItem') |
| 3014 @DocsEditable() | 3014 @DocsEditable() |
| 3015 Length getItem(int index) => _blink.BlinkSVGLengthList.getItem_Callback_ul(thi
s, index); | 3015 Length getItem(int index) => _blink.BlinkSVGLengthList.getItem_Callback_1(this
, index); |
| 3016 | 3016 |
| 3017 @DomName('SVGLengthList.initialize') | 3017 @DomName('SVGLengthList.initialize') |
| 3018 @DocsEditable() | 3018 @DocsEditable() |
| 3019 Length initialize(Length item) => _blink.BlinkSVGLengthList.initialize_Callbac
k_SVGLength(this, item); | 3019 Length initialize(Length item) => _blink.BlinkSVGLengthList.initialize_Callbac
k_1(this, item); |
| 3020 | 3020 |
| 3021 @DomName('SVGLengthList.insertItemBefore') | 3021 @DomName('SVGLengthList.insertItemBefore') |
| 3022 @DocsEditable() | 3022 @DocsEditable() |
| 3023 Length insertItemBefore(Length item, int index) => _blink.BlinkSVGLengthList.i
nsertItemBefore_Callback_SVGLength_ul(this, item, index); | 3023 Length insertItemBefore(Length item, int index) => _blink.BlinkSVGLengthList.i
nsertItemBefore_Callback_2(this, item, index); |
| 3024 | 3024 |
| 3025 @DomName('SVGLengthList.removeItem') | 3025 @DomName('SVGLengthList.removeItem') |
| 3026 @DocsEditable() | 3026 @DocsEditable() |
| 3027 Length removeItem(int index) => _blink.BlinkSVGLengthList.removeItem_Callback_
ul(this, index); | 3027 Length removeItem(int index) => _blink.BlinkSVGLengthList.removeItem_Callback_
1(this, index); |
| 3028 | 3028 |
| 3029 @DomName('SVGLengthList.replaceItem') | 3029 @DomName('SVGLengthList.replaceItem') |
| 3030 @DocsEditable() | 3030 @DocsEditable() |
| 3031 Length replaceItem(Length item, int index) => _blink.BlinkSVGLengthList.replac
eItem_Callback_SVGLength_ul(this, item, index); | 3031 Length replaceItem(Length item, int index) => _blink.BlinkSVGLengthList.replac
eItem_Callback_2(this, item, index); |
| 3032 | 3032 |
| 3033 } | 3033 } |
| 3034 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3034 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3035 // for details. All rights reserved. Use of this source code is governed by a | 3035 // for details. All rights reserved. Use of this source code is governed by a |
| 3036 // BSD-style license that can be found in the LICENSE file. | 3036 // BSD-style license that can be found in the LICENSE file. |
| 3037 | 3037 |
| 3038 // WARNING: Do not edit - generated code. | 3038 // WARNING: Do not edit - generated code. |
| 3039 | 3039 |
| 3040 | 3040 |
| 3041 @DocsEditable() | 3041 @DocsEditable() |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3184 @DomName('SVGMarkerElement.refX') | 3184 @DomName('SVGMarkerElement.refX') |
| 3185 @DocsEditable() | 3185 @DocsEditable() |
| 3186 AnimatedLength get refX => _blink.BlinkSVGMarkerElement.refX_Getter(this); | 3186 AnimatedLength get refX => _blink.BlinkSVGMarkerElement.refX_Getter(this); |
| 3187 | 3187 |
| 3188 @DomName('SVGMarkerElement.refY') | 3188 @DomName('SVGMarkerElement.refY') |
| 3189 @DocsEditable() | 3189 @DocsEditable() |
| 3190 AnimatedLength get refY => _blink.BlinkSVGMarkerElement.refY_Getter(this); | 3190 AnimatedLength get refY => _blink.BlinkSVGMarkerElement.refY_Getter(this); |
| 3191 | 3191 |
| 3192 @DomName('SVGMarkerElement.setOrientToAngle') | 3192 @DomName('SVGMarkerElement.setOrientToAngle') |
| 3193 @DocsEditable() | 3193 @DocsEditable() |
| 3194 void setOrientToAngle(Angle angle) => _blink.BlinkSVGMarkerElement.setOrientTo
Angle_Callback_SVGAngle(this, angle); | 3194 void setOrientToAngle(Angle angle) => _blink.BlinkSVGMarkerElement.setOrientTo
Angle_Callback_1(this, angle); |
| 3195 | 3195 |
| 3196 @DomName('SVGMarkerElement.setOrientToAuto') | 3196 @DomName('SVGMarkerElement.setOrientToAuto') |
| 3197 @DocsEditable() | 3197 @DocsEditable() |
| 3198 void setOrientToAuto() => _blink.BlinkSVGMarkerElement.setOrientToAuto_Callbac
k(this); | 3198 void setOrientToAuto() => _blink.BlinkSVGMarkerElement.setOrientToAuto_Callbac
k(this); |
| 3199 | 3199 |
| 3200 @DomName('SVGMarkerElement.preserveAspectRatio') | 3200 @DomName('SVGMarkerElement.preserveAspectRatio') |
| 3201 @DocsEditable() | 3201 @DocsEditable() |
| 3202 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGMarkerEl
ement.preserveAspectRatio_Getter(this); | 3202 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGMarkerEl
ement.preserveAspectRatio_Getter(this); |
| 3203 | 3203 |
| 3204 @DomName('SVGMarkerElement.viewBox') | 3204 @DomName('SVGMarkerElement.viewBox') |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3261 @DomName('SVGMaskElement.requiredFeatures') | 3261 @DomName('SVGMaskElement.requiredFeatures') |
| 3262 @DocsEditable() | 3262 @DocsEditable() |
| 3263 StringList get requiredFeatures => _blink.BlinkSVGMaskElement.requiredFeatures
_Getter(this); | 3263 StringList get requiredFeatures => _blink.BlinkSVGMaskElement.requiredFeatures
_Getter(this); |
| 3264 | 3264 |
| 3265 @DomName('SVGMaskElement.systemLanguage') | 3265 @DomName('SVGMaskElement.systemLanguage') |
| 3266 @DocsEditable() | 3266 @DocsEditable() |
| 3267 StringList get systemLanguage => _blink.BlinkSVGMaskElement.systemLanguage_Get
ter(this); | 3267 StringList get systemLanguage => _blink.BlinkSVGMaskElement.systemLanguage_Get
ter(this); |
| 3268 | 3268 |
| 3269 @DomName('SVGMaskElement.hasExtension') | 3269 @DomName('SVGMaskElement.hasExtension') |
| 3270 @DocsEditable() | 3270 @DocsEditable() |
| 3271 bool hasExtension(String extension) => _blink.BlinkSVGMaskElement.hasExtension
_Callback_DOMString(this, extension); | 3271 bool hasExtension(String extension) => _blink.BlinkSVGMaskElement.hasExtension
_Callback_1(this, extension); |
| 3272 | 3272 |
| 3273 } | 3273 } |
| 3274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3275 // for details. All rights reserved. Use of this source code is governed by a | 3275 // for details. All rights reserved. Use of this source code is governed by a |
| 3276 // BSD-style license that can be found in the LICENSE file. | 3276 // BSD-style license that can be found in the LICENSE file. |
| 3277 | 3277 |
| 3278 // WARNING: Do not edit - generated code. | 3278 // WARNING: Do not edit - generated code. |
| 3279 | 3279 |
| 3280 | 3280 |
| 3281 @DocsEditable() | 3281 @DocsEditable() |
| 3282 @DomName('SVGMatrix') | 3282 @DomName('SVGMatrix') |
| 3283 @Unstable() | 3283 @Unstable() |
| 3284 class Matrix extends NativeFieldWrapperClass2 { | 3284 class Matrix extends NativeFieldWrapperClass2 { |
| 3285 // To suppress missing implicit constructor warnings. | 3285 // To suppress missing implicit constructor warnings. |
| 3286 factory Matrix._() { throw new UnsupportedError("Not supported"); } | 3286 factory Matrix._() { throw new UnsupportedError("Not supported"); } |
| 3287 | 3287 |
| 3288 @DomName('SVGMatrix.a') | 3288 @DomName('SVGMatrix.a') |
| 3289 @DocsEditable() | 3289 @DocsEditable() |
| 3290 num get a => _blink.BlinkSVGMatrix.a_Getter(this); | 3290 num get a => _blink.BlinkSVGMatrix.a_Getter(this); |
| 3291 | 3291 |
| 3292 @DomName('SVGMatrix.a') | 3292 @DomName('SVGMatrix.a') |
| 3293 @DocsEditable() | 3293 @DocsEditable() |
| 3294 void set a(num value) => _blink.BlinkSVGMatrix.a_Setter_double(this, value); | 3294 void set a(num value) => _blink.BlinkSVGMatrix.a_Setter(this, value); |
| 3295 | 3295 |
| 3296 @DomName('SVGMatrix.b') | 3296 @DomName('SVGMatrix.b') |
| 3297 @DocsEditable() | 3297 @DocsEditable() |
| 3298 num get b => _blink.BlinkSVGMatrix.b_Getter(this); | 3298 num get b => _blink.BlinkSVGMatrix.b_Getter(this); |
| 3299 | 3299 |
| 3300 @DomName('SVGMatrix.b') | 3300 @DomName('SVGMatrix.b') |
| 3301 @DocsEditable() | 3301 @DocsEditable() |
| 3302 void set b(num value) => _blink.BlinkSVGMatrix.b_Setter_double(this, value); | 3302 void set b(num value) => _blink.BlinkSVGMatrix.b_Setter(this, value); |
| 3303 | 3303 |
| 3304 @DomName('SVGMatrix.c') | 3304 @DomName('SVGMatrix.c') |
| 3305 @DocsEditable() | 3305 @DocsEditable() |
| 3306 num get c => _blink.BlinkSVGMatrix.c_Getter(this); | 3306 num get c => _blink.BlinkSVGMatrix.c_Getter(this); |
| 3307 | 3307 |
| 3308 @DomName('SVGMatrix.c') | 3308 @DomName('SVGMatrix.c') |
| 3309 @DocsEditable() | 3309 @DocsEditable() |
| 3310 void set c(num value) => _blink.BlinkSVGMatrix.c_Setter_double(this, value); | 3310 void set c(num value) => _blink.BlinkSVGMatrix.c_Setter(this, value); |
| 3311 | 3311 |
| 3312 @DomName('SVGMatrix.d') | 3312 @DomName('SVGMatrix.d') |
| 3313 @DocsEditable() | 3313 @DocsEditable() |
| 3314 num get d => _blink.BlinkSVGMatrix.d_Getter(this); | 3314 num get d => _blink.BlinkSVGMatrix.d_Getter(this); |
| 3315 | 3315 |
| 3316 @DomName('SVGMatrix.d') | 3316 @DomName('SVGMatrix.d') |
| 3317 @DocsEditable() | 3317 @DocsEditable() |
| 3318 void set d(num value) => _blink.BlinkSVGMatrix.d_Setter_double(this, value); | 3318 void set d(num value) => _blink.BlinkSVGMatrix.d_Setter(this, value); |
| 3319 | 3319 |
| 3320 @DomName('SVGMatrix.e') | 3320 @DomName('SVGMatrix.e') |
| 3321 @DocsEditable() | 3321 @DocsEditable() |
| 3322 num get e => _blink.BlinkSVGMatrix.e_Getter(this); | 3322 num get e => _blink.BlinkSVGMatrix.e_Getter(this); |
| 3323 | 3323 |
| 3324 @DomName('SVGMatrix.e') | 3324 @DomName('SVGMatrix.e') |
| 3325 @DocsEditable() | 3325 @DocsEditable() |
| 3326 void set e(num value) => _blink.BlinkSVGMatrix.e_Setter_double(this, value); | 3326 void set e(num value) => _blink.BlinkSVGMatrix.e_Setter(this, value); |
| 3327 | 3327 |
| 3328 @DomName('SVGMatrix.f') | 3328 @DomName('SVGMatrix.f') |
| 3329 @DocsEditable() | 3329 @DocsEditable() |
| 3330 num get f => _blink.BlinkSVGMatrix.f_Getter(this); | 3330 num get f => _blink.BlinkSVGMatrix.f_Getter(this); |
| 3331 | 3331 |
| 3332 @DomName('SVGMatrix.f') | 3332 @DomName('SVGMatrix.f') |
| 3333 @DocsEditable() | 3333 @DocsEditable() |
| 3334 void set f(num value) => _blink.BlinkSVGMatrix.f_Setter_double(this, value); | 3334 void set f(num value) => _blink.BlinkSVGMatrix.f_Setter(this, value); |
| 3335 | 3335 |
| 3336 @DomName('SVGMatrix.flipX') | 3336 @DomName('SVGMatrix.flipX') |
| 3337 @DocsEditable() | 3337 @DocsEditable() |
| 3338 Matrix flipX() => _blink.BlinkSVGMatrix.flipX_Callback(this); | 3338 Matrix flipX() => _blink.BlinkSVGMatrix.flipX_Callback(this); |
| 3339 | 3339 |
| 3340 @DomName('SVGMatrix.flipY') | 3340 @DomName('SVGMatrix.flipY') |
| 3341 @DocsEditable() | 3341 @DocsEditable() |
| 3342 Matrix flipY() => _blink.BlinkSVGMatrix.flipY_Callback(this); | 3342 Matrix flipY() => _blink.BlinkSVGMatrix.flipY_Callback(this); |
| 3343 | 3343 |
| 3344 @DomName('SVGMatrix.inverse') | 3344 @DomName('SVGMatrix.inverse') |
| 3345 @DocsEditable() | 3345 @DocsEditable() |
| 3346 Matrix inverse() => _blink.BlinkSVGMatrix.inverse_Callback(this); | 3346 Matrix inverse() => _blink.BlinkSVGMatrix.inverse_Callback(this); |
| 3347 | 3347 |
| 3348 @DomName('SVGMatrix.multiply') | 3348 @DomName('SVGMatrix.multiply') |
| 3349 @DocsEditable() | 3349 @DocsEditable() |
| 3350 Matrix multiply(Matrix secondMatrix) => _blink.BlinkSVGMatrix.multiply_Callbac
k_SVGMatrix(this, secondMatrix); | 3350 Matrix multiply(Matrix secondMatrix) => _blink.BlinkSVGMatrix.multiply_Callbac
k_1(this, secondMatrix); |
| 3351 | 3351 |
| 3352 @DomName('SVGMatrix.rotate') | 3352 @DomName('SVGMatrix.rotate') |
| 3353 @DocsEditable() | 3353 @DocsEditable() |
| 3354 Matrix rotate(num angle) => _blink.BlinkSVGMatrix.rotate_Callback_float(this,
angle); | 3354 Matrix rotate(num angle) => _blink.BlinkSVGMatrix.rotate_Callback_1(this, angl
e); |
| 3355 | 3355 |
| 3356 @DomName('SVGMatrix.rotateFromVector') | 3356 @DomName('SVGMatrix.rotateFromVector') |
| 3357 @DocsEditable() | 3357 @DocsEditable() |
| 3358 Matrix rotateFromVector(num x, num y) => _blink.BlinkSVGMatrix.rotateFromVecto
r_Callback_float_float(this, x, y); | 3358 Matrix rotateFromVector(num x, num y) => _blink.BlinkSVGMatrix.rotateFromVecto
r_Callback_2(this, x, y); |
| 3359 | 3359 |
| 3360 @DomName('SVGMatrix.scale') | 3360 @DomName('SVGMatrix.scale') |
| 3361 @DocsEditable() | 3361 @DocsEditable() |
| 3362 Matrix scale(num scaleFactor) => _blink.BlinkSVGMatrix.scale_Callback_float(th
is, scaleFactor); | 3362 Matrix scale(num scaleFactor) => _blink.BlinkSVGMatrix.scale_Callback_1(this,
scaleFactor); |
| 3363 | 3363 |
| 3364 @DomName('SVGMatrix.scaleNonUniform') | 3364 @DomName('SVGMatrix.scaleNonUniform') |
| 3365 @DocsEditable() | 3365 @DocsEditable() |
| 3366 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => _blink.BlinkSVGM
atrix.scaleNonUniform_Callback_float_float(this, scaleFactorX, scaleFactorY); | 3366 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => _blink.BlinkSVGM
atrix.scaleNonUniform_Callback_2(this, scaleFactorX, scaleFactorY); |
| 3367 | 3367 |
| 3368 @DomName('SVGMatrix.skewX') | 3368 @DomName('SVGMatrix.skewX') |
| 3369 @DocsEditable() | 3369 @DocsEditable() |
| 3370 Matrix skewX(num angle) => _blink.BlinkSVGMatrix.skewX_Callback_float(this, an
gle); | 3370 Matrix skewX(num angle) => _blink.BlinkSVGMatrix.skewX_Callback_1(this, angle)
; |
| 3371 | 3371 |
| 3372 @DomName('SVGMatrix.skewY') | 3372 @DomName('SVGMatrix.skewY') |
| 3373 @DocsEditable() | 3373 @DocsEditable() |
| 3374 Matrix skewY(num angle) => _blink.BlinkSVGMatrix.skewY_Callback_float(this, an
gle); | 3374 Matrix skewY(num angle) => _blink.BlinkSVGMatrix.skewY_Callback_1(this, angle)
; |
| 3375 | 3375 |
| 3376 @DomName('SVGMatrix.translate') | 3376 @DomName('SVGMatrix.translate') |
| 3377 @DocsEditable() | 3377 @DocsEditable() |
| 3378 Matrix translate(num x, num y) => _blink.BlinkSVGMatrix.translate_Callback_flo
at_float(this, x, y); | 3378 Matrix translate(num x, num y) => _blink.BlinkSVGMatrix.translate_Callback_2(t
his, x, y); |
| 3379 | 3379 |
| 3380 } | 3380 } |
| 3381 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3381 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3382 // for details. All rights reserved. Use of this source code is governed by a | 3382 // for details. All rights reserved. Use of this source code is governed by a |
| 3383 // BSD-style license that can be found in the LICENSE file. | 3383 // BSD-style license that can be found in the LICENSE file. |
| 3384 | 3384 |
| 3385 // WARNING: Do not edit - generated code. | 3385 // WARNING: Do not edit - generated code. |
| 3386 | 3386 |
| 3387 | 3387 |
| 3388 @DocsEditable() | 3388 @DocsEditable() |
| (...skipping 23 matching lines...) Expand all Loading... |
| 3412 class Number extends NativeFieldWrapperClass2 { | 3412 class Number extends NativeFieldWrapperClass2 { |
| 3413 // To suppress missing implicit constructor warnings. | 3413 // To suppress missing implicit constructor warnings. |
| 3414 factory Number._() { throw new UnsupportedError("Not supported"); } | 3414 factory Number._() { throw new UnsupportedError("Not supported"); } |
| 3415 | 3415 |
| 3416 @DomName('SVGNumber.value') | 3416 @DomName('SVGNumber.value') |
| 3417 @DocsEditable() | 3417 @DocsEditable() |
| 3418 num get value => _blink.BlinkSVGNumber.value_Getter(this); | 3418 num get value => _blink.BlinkSVGNumber.value_Getter(this); |
| 3419 | 3419 |
| 3420 @DomName('SVGNumber.value') | 3420 @DomName('SVGNumber.value') |
| 3421 @DocsEditable() | 3421 @DocsEditable() |
| 3422 void set value(num value) => _blink.BlinkSVGNumber.value_Setter_float(this, va
lue); | 3422 void set value(num value) => _blink.BlinkSVGNumber.value_Setter(this, value); |
| 3423 | 3423 |
| 3424 } | 3424 } |
| 3425 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3425 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3426 // for details. All rights reserved. Use of this source code is governed by a | 3426 // for details. All rights reserved. Use of this source code is governed by a |
| 3427 // BSD-style license that can be found in the LICENSE file. | 3427 // BSD-style license that can be found in the LICENSE file. |
| 3428 | 3428 |
| 3429 // WARNING: Do not edit - generated code. | 3429 // WARNING: Do not edit - generated code. |
| 3430 | 3430 |
| 3431 | 3431 |
| 3432 @DocsEditable() | 3432 @DocsEditable() |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3485 if (len == 0) throw new StateError("No elements"); | 3485 if (len == 0) throw new StateError("No elements"); |
| 3486 throw new StateError("More than one element"); | 3486 throw new StateError("More than one element"); |
| 3487 } | 3487 } |
| 3488 | 3488 |
| 3489 Number elementAt(int index) => this[index]; | 3489 Number elementAt(int index) => this[index]; |
| 3490 // -- end List<Number> mixins. | 3490 // -- end List<Number> mixins. |
| 3491 | 3491 |
| 3492 @DomName('SVGNumberList.__setter__') | 3492 @DomName('SVGNumberList.__setter__') |
| 3493 @DocsEditable() | 3493 @DocsEditable() |
| 3494 @Experimental() // untriaged | 3494 @Experimental() // untriaged |
| 3495 void __setter__(int index, Number value) => _blink.BlinkSVGNumberList.$__sette
r___Callback_ul_SVGNumber(this, index, value); | 3495 void __setter__(int index, Number value) => _blink.BlinkSVGNumberList.$__sette
r___Callback_2(this, index, value); |
| 3496 | 3496 |
| 3497 @DomName('SVGNumberList.appendItem') | 3497 @DomName('SVGNumberList.appendItem') |
| 3498 @DocsEditable() | 3498 @DocsEditable() |
| 3499 Number appendItem(Number item) => _blink.BlinkSVGNumberList.appendItem_Callbac
k_SVGNumber(this, item); | 3499 Number appendItem(Number item) => _blink.BlinkSVGNumberList.appendItem_Callbac
k_1(this, item); |
| 3500 | 3500 |
| 3501 @DomName('SVGNumberList.clear') | 3501 @DomName('SVGNumberList.clear') |
| 3502 @DocsEditable() | 3502 @DocsEditable() |
| 3503 void clear() => _blink.BlinkSVGNumberList.clear_Callback(this); | 3503 void clear() => _blink.BlinkSVGNumberList.clear_Callback(this); |
| 3504 | 3504 |
| 3505 @DomName('SVGNumberList.getItem') | 3505 @DomName('SVGNumberList.getItem') |
| 3506 @DocsEditable() | 3506 @DocsEditable() |
| 3507 Number getItem(int index) => _blink.BlinkSVGNumberList.getItem_Callback_ul(thi
s, index); | 3507 Number getItem(int index) => _blink.BlinkSVGNumberList.getItem_Callback_1(this
, index); |
| 3508 | 3508 |
| 3509 @DomName('SVGNumberList.initialize') | 3509 @DomName('SVGNumberList.initialize') |
| 3510 @DocsEditable() | 3510 @DocsEditable() |
| 3511 Number initialize(Number item) => _blink.BlinkSVGNumberList.initialize_Callbac
k_SVGNumber(this, item); | 3511 Number initialize(Number item) => _blink.BlinkSVGNumberList.initialize_Callbac
k_1(this, item); |
| 3512 | 3512 |
| 3513 @DomName('SVGNumberList.insertItemBefore') | 3513 @DomName('SVGNumberList.insertItemBefore') |
| 3514 @DocsEditable() | 3514 @DocsEditable() |
| 3515 Number insertItemBefore(Number item, int index) => _blink.BlinkSVGNumberList.i
nsertItemBefore_Callback_SVGNumber_ul(this, item, index); | 3515 Number insertItemBefore(Number item, int index) => _blink.BlinkSVGNumberList.i
nsertItemBefore_Callback_2(this, item, index); |
| 3516 | 3516 |
| 3517 @DomName('SVGNumberList.removeItem') | 3517 @DomName('SVGNumberList.removeItem') |
| 3518 @DocsEditable() | 3518 @DocsEditable() |
| 3519 Number removeItem(int index) => _blink.BlinkSVGNumberList.removeItem_Callback_
ul(this, index); | 3519 Number removeItem(int index) => _blink.BlinkSVGNumberList.removeItem_Callback_
1(this, index); |
| 3520 | 3520 |
| 3521 @DomName('SVGNumberList.replaceItem') | 3521 @DomName('SVGNumberList.replaceItem') |
| 3522 @DocsEditable() | 3522 @DocsEditable() |
| 3523 Number replaceItem(Number item, int index) => _blink.BlinkSVGNumberList.replac
eItem_Callback_SVGNumber_ul(this, item, index); | 3523 Number replaceItem(Number item, int index) => _blink.BlinkSVGNumberList.replac
eItem_Callback_2(this, item, index); |
| 3524 | 3524 |
| 3525 } | 3525 } |
| 3526 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3526 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3527 // for details. All rights reserved. Use of this source code is governed by a | 3527 // for details. All rights reserved. Use of this source code is governed by a |
| 3528 // BSD-style license that can be found in the LICENSE file. | 3528 // BSD-style license that can be found in the LICENSE file. |
| 3529 | 3529 |
| 3530 // WARNING: Do not edit - generated code. | 3530 // WARNING: Do not edit - generated code. |
| 3531 | 3531 |
| 3532 | 3532 |
| 3533 @DocsEditable() | 3533 @DocsEditable() |
| (...skipping 28 matching lines...) Expand all Loading... |
| 3562 @DomName('SVGPathElement.pathLength') | 3562 @DomName('SVGPathElement.pathLength') |
| 3563 @DocsEditable() | 3563 @DocsEditable() |
| 3564 AnimatedNumber get pathLength => _blink.BlinkSVGPathElement.pathLength_Getter(
this); | 3564 AnimatedNumber get pathLength => _blink.BlinkSVGPathElement.pathLength_Getter(
this); |
| 3565 | 3565 |
| 3566 @DomName('SVGPathElement.pathSegList') | 3566 @DomName('SVGPathElement.pathSegList') |
| 3567 @DocsEditable() | 3567 @DocsEditable() |
| 3568 PathSegList get pathSegList => _blink.BlinkSVGPathElement.pathSegList_Getter(t
his); | 3568 PathSegList get pathSegList => _blink.BlinkSVGPathElement.pathSegList_Getter(t
his); |
| 3569 | 3569 |
| 3570 @DomName('SVGPathElement.createSVGPathSegArcAbs') | 3570 @DomName('SVGPathElement.createSVGPathSegArcAbs') |
| 3571 @DocsEditable() | 3571 @DocsEditable() |
| 3572 PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.createSVGPathSe
gArcAbs_Callback_float_float_float_float_float_boolean_boolean(this, x, y, r1, r
2, angle, largeArcFlag, sweepFlag); | 3572 PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.createSVGPathSe
gArcAbs_Callback_7(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag); |
| 3573 | 3573 |
| 3574 @DomName('SVGPathElement.createSVGPathSegArcRel') | 3574 @DomName('SVGPathElement.createSVGPathSegArcRel') |
| 3575 @DocsEditable() | 3575 @DocsEditable() |
| 3576 PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.createSVGPathSe
gArcRel_Callback_float_float_float_float_float_boolean_boolean(this, x, y, r1, r
2, angle, largeArcFlag, sweepFlag); | 3576 PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.createSVGPathSe
gArcRel_Callback_7(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag); |
| 3577 | 3577 |
| 3578 @DomName('SVGPathElement.createSVGPathSegClosePath') | 3578 @DomName('SVGPathElement.createSVGPathSegClosePath') |
| 3579 @DocsEditable() | 3579 @DocsEditable() |
| 3580 PathSegClosePath createSvgPathSegClosePath() => _blink.BlinkSVGPathElement.cre
ateSVGPathSegClosePath_Callback(this); | 3580 PathSegClosePath createSvgPathSegClosePath() => _blink.BlinkSVGPathElement.cre
ateSVGPathSegClosePath_Callback(this); |
| 3581 | 3581 |
| 3582 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs') | 3582 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs') |
| 3583 @DocsEditable() | 3583 @DocsEditable() |
| 3584 PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, n
um y1, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubi
cAbs_Callback_float_float_float_float_float_float(this, x, y, x1, y1, x2, y2); | 3584 PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, n
um y1, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubi
cAbs_Callback_6(this, x, y, x1, y1, x2, y2); |
| 3585 | 3585 |
| 3586 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel') | 3586 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel') |
| 3587 @DocsEditable() | 3587 @DocsEditable() |
| 3588 PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, n
um y1, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubi
cRel_Callback_float_float_float_float_float_float(this, x, y, x1, y1, x2, y2); | 3588 PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, n
um y1, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubi
cRel_Callback_6(this, x, y, x1, y1, x2, y2); |
| 3589 | 3589 |
| 3590 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs') | 3590 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs') |
| 3591 @DocsEditable() | 3591 @DocsEditable() |
| 3592 PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num
y, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubicSmo
othAbs_Callback_float_float_float_float(this, x, y, x2, y2); | 3592 PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num
y, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubicSmo
othAbs_Callback_4(this, x, y, x2, y2); |
| 3593 | 3593 |
| 3594 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel') | 3594 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel') |
| 3595 @DocsEditable() | 3595 @DocsEditable() |
| 3596 PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num
y, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubicSmo
othRel_Callback_float_float_float_float(this, x, y, x2, y2); | 3596 PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num
y, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubicSmo
othRel_Callback_4(this, x, y, x2, y2); |
| 3597 | 3597 |
| 3598 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs') | 3598 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs') |
| 3599 @DocsEditable() | 3599 @DocsEditable() |
| 3600 PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, n
um x1, num y1) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticAbs
_Callback_float_float_float_float(this, x, y, x1, y1); | 3600 PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, n
um x1, num y1) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticAbs
_Callback_4(this, x, y, x1, y1); |
| 3601 | 3601 |
| 3602 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel') | 3602 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel') |
| 3603 @DocsEditable() | 3603 @DocsEditable() |
| 3604 PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, n
um x1, num y1) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticRel
_Callback_float_float_float_float(this, x, y, x1, y1); | 3604 PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, n
um x1, num y1) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticRel
_Callback_4(this, x, y, x1, y1); |
| 3605 | 3605 |
| 3606 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs') | 3606 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs') |
| 3607 @DocsEditable() | 3607 @DocsEditable() |
| 3608 PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num
x, num y) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticSmoothA
bs_Callback_float_float(this, x, y); | 3608 PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num
x, num y) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticSmoothA
bs_Callback_2(this, x, y); |
| 3609 | 3609 |
| 3610 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel') | 3610 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel') |
| 3611 @DocsEditable() | 3611 @DocsEditable() |
| 3612 PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num
x, num y) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticSmoothR
el_Callback_float_float(this, x, y); | 3612 PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num
x, num y) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticSmoothR
el_Callback_2(this, x, y); |
| 3613 | 3613 |
| 3614 @DomName('SVGPathElement.createSVGPathSegLinetoAbs') | 3614 @DomName('SVGPathElement.createSVGPathSegLinetoAbs') |
| 3615 @DocsEditable() | 3615 @DocsEditable() |
| 3616 PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => _blink.BlinkSVGPat
hElement.createSVGPathSegLinetoAbs_Callback_float_float(this, x, y); | 3616 PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => _blink.BlinkSVGPat
hElement.createSVGPathSegLinetoAbs_Callback_2(this, x, y); |
| 3617 | 3617 |
| 3618 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs') | 3618 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs') |
| 3619 @DocsEditable() | 3619 @DocsEditable() |
| 3620 PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => _blin
k.BlinkSVGPathElement.createSVGPathSegLinetoHorizontalAbs_Callback_float(this, x
); | 3620 PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => _blin
k.BlinkSVGPathElement.createSVGPathSegLinetoHorizontalAbs_Callback_1(this, x); |
| 3621 | 3621 |
| 3622 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel') | 3622 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel') |
| 3623 @DocsEditable() | 3623 @DocsEditable() |
| 3624 PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => _blin
k.BlinkSVGPathElement.createSVGPathSegLinetoHorizontalRel_Callback_float(this, x
); | 3624 PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => _blin
k.BlinkSVGPathElement.createSVGPathSegLinetoHorizontalRel_Callback_1(this, x); |
| 3625 | 3625 |
| 3626 @DomName('SVGPathElement.createSVGPathSegLinetoRel') | 3626 @DomName('SVGPathElement.createSVGPathSegLinetoRel') |
| 3627 @DocsEditable() | 3627 @DocsEditable() |
| 3628 PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => _blink.BlinkSVGPat
hElement.createSVGPathSegLinetoRel_Callback_float_float(this, x, y); | 3628 PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => _blink.BlinkSVGPat
hElement.createSVGPathSegLinetoRel_Callback_2(this, x, y); |
| 3629 | 3629 |
| 3630 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs') | 3630 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs') |
| 3631 @DocsEditable() | 3631 @DocsEditable() |
| 3632 PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => _blink.Bl
inkSVGPathElement.createSVGPathSegLinetoVerticalAbs_Callback_float(this, y); | 3632 PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => _blink.Bl
inkSVGPathElement.createSVGPathSegLinetoVerticalAbs_Callback_1(this, y); |
| 3633 | 3633 |
| 3634 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel') | 3634 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel') |
| 3635 @DocsEditable() | 3635 @DocsEditable() |
| 3636 PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => _blink.Bl
inkSVGPathElement.createSVGPathSegLinetoVerticalRel_Callback_float(this, y); | 3636 PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => _blink.Bl
inkSVGPathElement.createSVGPathSegLinetoVerticalRel_Callback_1(this, y); |
| 3637 | 3637 |
| 3638 @DomName('SVGPathElement.createSVGPathSegMovetoAbs') | 3638 @DomName('SVGPathElement.createSVGPathSegMovetoAbs') |
| 3639 @DocsEditable() | 3639 @DocsEditable() |
| 3640 PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => _blink.BlinkSVGPat
hElement.createSVGPathSegMovetoAbs_Callback_float_float(this, x, y); | 3640 PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => _blink.BlinkSVGPat
hElement.createSVGPathSegMovetoAbs_Callback_2(this, x, y); |
| 3641 | 3641 |
| 3642 @DomName('SVGPathElement.createSVGPathSegMovetoRel') | 3642 @DomName('SVGPathElement.createSVGPathSegMovetoRel') |
| 3643 @DocsEditable() | 3643 @DocsEditable() |
| 3644 PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => _blink.BlinkSVGPat
hElement.createSVGPathSegMovetoRel_Callback_float_float(this, x, y); | 3644 PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => _blink.BlinkSVGPat
hElement.createSVGPathSegMovetoRel_Callback_2(this, x, y); |
| 3645 | 3645 |
| 3646 @DomName('SVGPathElement.getPathSegAtLength') | 3646 @DomName('SVGPathElement.getPathSegAtLength') |
| 3647 @DocsEditable() | 3647 @DocsEditable() |
| 3648 int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.getPathSegA
tLength_Callback_float(this, distance); | 3648 int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.getPathSegA
tLength_Callback_1(this, distance); |
| 3649 | 3649 |
| 3650 @DomName('SVGPathElement.getPointAtLength') | 3650 @DomName('SVGPathElement.getPointAtLength') |
| 3651 @DocsEditable() | 3651 @DocsEditable() |
| 3652 Point getPointAtLength(num distance) => _blink.BlinkSVGPathElement.getPointAtL
ength_Callback_float(this, distance); | 3652 Point getPointAtLength(num distance) => _blink.BlinkSVGPathElement.getPointAtL
ength_Callback_1(this, distance); |
| 3653 | 3653 |
| 3654 @DomName('SVGPathElement.getTotalLength') | 3654 @DomName('SVGPathElement.getTotalLength') |
| 3655 @DocsEditable() | 3655 @DocsEditable() |
| 3656 double getTotalLength() => _blink.BlinkSVGPathElement.getTotalLength_Callback(
this); | 3656 double getTotalLength() => _blink.BlinkSVGPathElement.getTotalLength_Callback(
this); |
| 3657 | 3657 |
| 3658 } | 3658 } |
| 3659 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3659 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3660 // for details. All rights reserved. Use of this source code is governed by a | 3660 // for details. All rights reserved. Use of this source code is governed by a |
| 3661 // BSD-style license that can be found in the LICENSE file. | 3661 // BSD-style license that can be found in the LICENSE file. |
| 3662 | 3662 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3772 class PathSegArcAbs extends PathSeg { | 3772 class PathSegArcAbs extends PathSeg { |
| 3773 // To suppress missing implicit constructor warnings. | 3773 // To suppress missing implicit constructor warnings. |
| 3774 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); } | 3774 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); } |
| 3775 | 3775 |
| 3776 @DomName('SVGPathSegArcAbs.angle') | 3776 @DomName('SVGPathSegArcAbs.angle') |
| 3777 @DocsEditable() | 3777 @DocsEditable() |
| 3778 num get angle => _blink.BlinkSVGPathSegArcAbs.angle_Getter(this); | 3778 num get angle => _blink.BlinkSVGPathSegArcAbs.angle_Getter(this); |
| 3779 | 3779 |
| 3780 @DomName('SVGPathSegArcAbs.angle') | 3780 @DomName('SVGPathSegArcAbs.angle') |
| 3781 @DocsEditable() | 3781 @DocsEditable() |
| 3782 void set angle(num value) => _blink.BlinkSVGPathSegArcAbs.angle_Setter_float(t
his, value); | 3782 void set angle(num value) => _blink.BlinkSVGPathSegArcAbs.angle_Setter(this, v
alue); |
| 3783 | 3783 |
| 3784 @DomName('SVGPathSegArcAbs.largeArcFlag') | 3784 @DomName('SVGPathSegArcAbs.largeArcFlag') |
| 3785 @DocsEditable() | 3785 @DocsEditable() |
| 3786 bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.largeArcFlag_Getter(this
); | 3786 bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.largeArcFlag_Getter(this
); |
| 3787 | 3787 |
| 3788 @DomName('SVGPathSegArcAbs.largeArcFlag') | 3788 @DomName('SVGPathSegArcAbs.largeArcFlag') |
| 3789 @DocsEditable() | 3789 @DocsEditable() |
| 3790 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.largeArcFlag
_Setter_boolean(this, value); | 3790 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.largeArcFlag
_Setter(this, value); |
| 3791 | 3791 |
| 3792 @DomName('SVGPathSegArcAbs.r1') | 3792 @DomName('SVGPathSegArcAbs.r1') |
| 3793 @DocsEditable() | 3793 @DocsEditable() |
| 3794 num get r1 => _blink.BlinkSVGPathSegArcAbs.r1_Getter(this); | 3794 num get r1 => _blink.BlinkSVGPathSegArcAbs.r1_Getter(this); |
| 3795 | 3795 |
| 3796 @DomName('SVGPathSegArcAbs.r1') | 3796 @DomName('SVGPathSegArcAbs.r1') |
| 3797 @DocsEditable() | 3797 @DocsEditable() |
| 3798 void set r1(num value) => _blink.BlinkSVGPathSegArcAbs.r1_Setter_float(this, v
alue); | 3798 void set r1(num value) => _blink.BlinkSVGPathSegArcAbs.r1_Setter(this, value); |
| 3799 | 3799 |
| 3800 @DomName('SVGPathSegArcAbs.r2') | 3800 @DomName('SVGPathSegArcAbs.r2') |
| 3801 @DocsEditable() | 3801 @DocsEditable() |
| 3802 num get r2 => _blink.BlinkSVGPathSegArcAbs.r2_Getter(this); | 3802 num get r2 => _blink.BlinkSVGPathSegArcAbs.r2_Getter(this); |
| 3803 | 3803 |
| 3804 @DomName('SVGPathSegArcAbs.r2') | 3804 @DomName('SVGPathSegArcAbs.r2') |
| 3805 @DocsEditable() | 3805 @DocsEditable() |
| 3806 void set r2(num value) => _blink.BlinkSVGPathSegArcAbs.r2_Setter_float(this, v
alue); | 3806 void set r2(num value) => _blink.BlinkSVGPathSegArcAbs.r2_Setter(this, value); |
| 3807 | 3807 |
| 3808 @DomName('SVGPathSegArcAbs.sweepFlag') | 3808 @DomName('SVGPathSegArcAbs.sweepFlag') |
| 3809 @DocsEditable() | 3809 @DocsEditable() |
| 3810 bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.sweepFlag_Getter(this); | 3810 bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.sweepFlag_Getter(this); |
| 3811 | 3811 |
| 3812 @DomName('SVGPathSegArcAbs.sweepFlag') | 3812 @DomName('SVGPathSegArcAbs.sweepFlag') |
| 3813 @DocsEditable() | 3813 @DocsEditable() |
| 3814 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.sweepFlag_Sette
r_boolean(this, value); | 3814 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.sweepFlag_Sette
r(this, value); |
| 3815 | 3815 |
| 3816 @DomName('SVGPathSegArcAbs.x') | 3816 @DomName('SVGPathSegArcAbs.x') |
| 3817 @DocsEditable() | 3817 @DocsEditable() |
| 3818 num get x => _blink.BlinkSVGPathSegArcAbs.x_Getter(this); | 3818 num get x => _blink.BlinkSVGPathSegArcAbs.x_Getter(this); |
| 3819 | 3819 |
| 3820 @DomName('SVGPathSegArcAbs.x') | 3820 @DomName('SVGPathSegArcAbs.x') |
| 3821 @DocsEditable() | 3821 @DocsEditable() |
| 3822 void set x(num value) => _blink.BlinkSVGPathSegArcAbs.x_Setter_float(this, val
ue); | 3822 void set x(num value) => _blink.BlinkSVGPathSegArcAbs.x_Setter(this, value); |
| 3823 | 3823 |
| 3824 @DomName('SVGPathSegArcAbs.y') | 3824 @DomName('SVGPathSegArcAbs.y') |
| 3825 @DocsEditable() | 3825 @DocsEditable() |
| 3826 num get y => _blink.BlinkSVGPathSegArcAbs.y_Getter(this); | 3826 num get y => _blink.BlinkSVGPathSegArcAbs.y_Getter(this); |
| 3827 | 3827 |
| 3828 @DomName('SVGPathSegArcAbs.y') | 3828 @DomName('SVGPathSegArcAbs.y') |
| 3829 @DocsEditable() | 3829 @DocsEditable() |
| 3830 void set y(num value) => _blink.BlinkSVGPathSegArcAbs.y_Setter_float(this, val
ue); | 3830 void set y(num value) => _blink.BlinkSVGPathSegArcAbs.y_Setter(this, value); |
| 3831 | 3831 |
| 3832 } | 3832 } |
| 3833 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3833 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3834 // for details. All rights reserved. Use of this source code is governed by a | 3834 // for details. All rights reserved. Use of this source code is governed by a |
| 3835 // BSD-style license that can be found in the LICENSE file. | 3835 // BSD-style license that can be found in the LICENSE file. |
| 3836 | 3836 |
| 3837 // WARNING: Do not edit - generated code. | 3837 // WARNING: Do not edit - generated code. |
| 3838 | 3838 |
| 3839 | 3839 |
| 3840 @DocsEditable() | 3840 @DocsEditable() |
| 3841 @DomName('SVGPathSegArcRel') | 3841 @DomName('SVGPathSegArcRel') |
| 3842 @Unstable() | 3842 @Unstable() |
| 3843 class PathSegArcRel extends PathSeg { | 3843 class PathSegArcRel extends PathSeg { |
| 3844 // To suppress missing implicit constructor warnings. | 3844 // To suppress missing implicit constructor warnings. |
| 3845 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); } | 3845 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); } |
| 3846 | 3846 |
| 3847 @DomName('SVGPathSegArcRel.angle') | 3847 @DomName('SVGPathSegArcRel.angle') |
| 3848 @DocsEditable() | 3848 @DocsEditable() |
| 3849 num get angle => _blink.BlinkSVGPathSegArcRel.angle_Getter(this); | 3849 num get angle => _blink.BlinkSVGPathSegArcRel.angle_Getter(this); |
| 3850 | 3850 |
| 3851 @DomName('SVGPathSegArcRel.angle') | 3851 @DomName('SVGPathSegArcRel.angle') |
| 3852 @DocsEditable() | 3852 @DocsEditable() |
| 3853 void set angle(num value) => _blink.BlinkSVGPathSegArcRel.angle_Setter_float(t
his, value); | 3853 void set angle(num value) => _blink.BlinkSVGPathSegArcRel.angle_Setter(this, v
alue); |
| 3854 | 3854 |
| 3855 @DomName('SVGPathSegArcRel.largeArcFlag') | 3855 @DomName('SVGPathSegArcRel.largeArcFlag') |
| 3856 @DocsEditable() | 3856 @DocsEditable() |
| 3857 bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.largeArcFlag_Getter(this
); | 3857 bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.largeArcFlag_Getter(this
); |
| 3858 | 3858 |
| 3859 @DomName('SVGPathSegArcRel.largeArcFlag') | 3859 @DomName('SVGPathSegArcRel.largeArcFlag') |
| 3860 @DocsEditable() | 3860 @DocsEditable() |
| 3861 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.largeArcFlag
_Setter_boolean(this, value); | 3861 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.largeArcFlag
_Setter(this, value); |
| 3862 | 3862 |
| 3863 @DomName('SVGPathSegArcRel.r1') | 3863 @DomName('SVGPathSegArcRel.r1') |
| 3864 @DocsEditable() | 3864 @DocsEditable() |
| 3865 num get r1 => _blink.BlinkSVGPathSegArcRel.r1_Getter(this); | 3865 num get r1 => _blink.BlinkSVGPathSegArcRel.r1_Getter(this); |
| 3866 | 3866 |
| 3867 @DomName('SVGPathSegArcRel.r1') | 3867 @DomName('SVGPathSegArcRel.r1') |
| 3868 @DocsEditable() | 3868 @DocsEditable() |
| 3869 void set r1(num value) => _blink.BlinkSVGPathSegArcRel.r1_Setter_float(this, v
alue); | 3869 void set r1(num value) => _blink.BlinkSVGPathSegArcRel.r1_Setter(this, value); |
| 3870 | 3870 |
| 3871 @DomName('SVGPathSegArcRel.r2') | 3871 @DomName('SVGPathSegArcRel.r2') |
| 3872 @DocsEditable() | 3872 @DocsEditable() |
| 3873 num get r2 => _blink.BlinkSVGPathSegArcRel.r2_Getter(this); | 3873 num get r2 => _blink.BlinkSVGPathSegArcRel.r2_Getter(this); |
| 3874 | 3874 |
| 3875 @DomName('SVGPathSegArcRel.r2') | 3875 @DomName('SVGPathSegArcRel.r2') |
| 3876 @DocsEditable() | 3876 @DocsEditable() |
| 3877 void set r2(num value) => _blink.BlinkSVGPathSegArcRel.r2_Setter_float(this, v
alue); | 3877 void set r2(num value) => _blink.BlinkSVGPathSegArcRel.r2_Setter(this, value); |
| 3878 | 3878 |
| 3879 @DomName('SVGPathSegArcRel.sweepFlag') | 3879 @DomName('SVGPathSegArcRel.sweepFlag') |
| 3880 @DocsEditable() | 3880 @DocsEditable() |
| 3881 bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.sweepFlag_Getter(this); | 3881 bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.sweepFlag_Getter(this); |
| 3882 | 3882 |
| 3883 @DomName('SVGPathSegArcRel.sweepFlag') | 3883 @DomName('SVGPathSegArcRel.sweepFlag') |
| 3884 @DocsEditable() | 3884 @DocsEditable() |
| 3885 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.sweepFlag_Sette
r_boolean(this, value); | 3885 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.sweepFlag_Sette
r(this, value); |
| 3886 | 3886 |
| 3887 @DomName('SVGPathSegArcRel.x') | 3887 @DomName('SVGPathSegArcRel.x') |
| 3888 @DocsEditable() | 3888 @DocsEditable() |
| 3889 num get x => _blink.BlinkSVGPathSegArcRel.x_Getter(this); | 3889 num get x => _blink.BlinkSVGPathSegArcRel.x_Getter(this); |
| 3890 | 3890 |
| 3891 @DomName('SVGPathSegArcRel.x') | 3891 @DomName('SVGPathSegArcRel.x') |
| 3892 @DocsEditable() | 3892 @DocsEditable() |
| 3893 void set x(num value) => _blink.BlinkSVGPathSegArcRel.x_Setter_float(this, val
ue); | 3893 void set x(num value) => _blink.BlinkSVGPathSegArcRel.x_Setter(this, value); |
| 3894 | 3894 |
| 3895 @DomName('SVGPathSegArcRel.y') | 3895 @DomName('SVGPathSegArcRel.y') |
| 3896 @DocsEditable() | 3896 @DocsEditable() |
| 3897 num get y => _blink.BlinkSVGPathSegArcRel.y_Getter(this); | 3897 num get y => _blink.BlinkSVGPathSegArcRel.y_Getter(this); |
| 3898 | 3898 |
| 3899 @DomName('SVGPathSegArcRel.y') | 3899 @DomName('SVGPathSegArcRel.y') |
| 3900 @DocsEditable() | 3900 @DocsEditable() |
| 3901 void set y(num value) => _blink.BlinkSVGPathSegArcRel.y_Setter_float(this, val
ue); | 3901 void set y(num value) => _blink.BlinkSVGPathSegArcRel.y_Setter(this, value); |
| 3902 | 3902 |
| 3903 } | 3903 } |
| 3904 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3904 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3905 // for details. All rights reserved. Use of this source code is governed by a | 3905 // for details. All rights reserved. Use of this source code is governed by a |
| 3906 // BSD-style license that can be found in the LICENSE file. | 3906 // BSD-style license that can be found in the LICENSE file. |
| 3907 | 3907 |
| 3908 // WARNING: Do not edit - generated code. | 3908 // WARNING: Do not edit - generated code. |
| 3909 | 3909 |
| 3910 | 3910 |
| 3911 @DocsEditable() | 3911 @DocsEditable() |
| (...skipping 17 matching lines...) Expand all Loading... |
| 3929 class PathSegCurvetoCubicAbs extends PathSeg { | 3929 class PathSegCurvetoCubicAbs extends PathSeg { |
| 3930 // To suppress missing implicit constructor warnings. | 3930 // To suppress missing implicit constructor warnings. |
| 3931 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported
"); } | 3931 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported
"); } |
| 3932 | 3932 |
| 3933 @DomName('SVGPathSegCurvetoCubicAbs.x') | 3933 @DomName('SVGPathSegCurvetoCubicAbs.x') |
| 3934 @DocsEditable() | 3934 @DocsEditable() |
| 3935 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.x_Getter(this); | 3935 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.x_Getter(this); |
| 3936 | 3936 |
| 3937 @DomName('SVGPathSegCurvetoCubicAbs.x') | 3937 @DomName('SVGPathSegCurvetoCubicAbs.x') |
| 3938 @DocsEditable() | 3938 @DocsEditable() |
| 3939 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.x_Setter_float(
this, value); | 3939 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.x_Setter(this,
value); |
| 3940 | 3940 |
| 3941 @DomName('SVGPathSegCurvetoCubicAbs.x1') | 3941 @DomName('SVGPathSegCurvetoCubicAbs.x1') |
| 3942 @DocsEditable() | 3942 @DocsEditable() |
| 3943 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.x1_Getter(this); | 3943 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.x1_Getter(this); |
| 3944 | 3944 |
| 3945 @DomName('SVGPathSegCurvetoCubicAbs.x1') | 3945 @DomName('SVGPathSegCurvetoCubicAbs.x1') |
| 3946 @DocsEditable() | 3946 @DocsEditable() |
| 3947 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.x1_Setter_floa
t(this, value); | 3947 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.x1_Setter(this
, value); |
| 3948 | 3948 |
| 3949 @DomName('SVGPathSegCurvetoCubicAbs.x2') | 3949 @DomName('SVGPathSegCurvetoCubicAbs.x2') |
| 3950 @DocsEditable() | 3950 @DocsEditable() |
| 3951 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.x2_Getter(this); | 3951 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.x2_Getter(this); |
| 3952 | 3952 |
| 3953 @DomName('SVGPathSegCurvetoCubicAbs.x2') | 3953 @DomName('SVGPathSegCurvetoCubicAbs.x2') |
| 3954 @DocsEditable() | 3954 @DocsEditable() |
| 3955 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.x2_Setter_floa
t(this, value); | 3955 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.x2_Setter(this
, value); |
| 3956 | 3956 |
| 3957 @DomName('SVGPathSegCurvetoCubicAbs.y') | 3957 @DomName('SVGPathSegCurvetoCubicAbs.y') |
| 3958 @DocsEditable() | 3958 @DocsEditable() |
| 3959 num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.y_Getter(this); | 3959 num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.y_Getter(this); |
| 3960 | 3960 |
| 3961 @DomName('SVGPathSegCurvetoCubicAbs.y') | 3961 @DomName('SVGPathSegCurvetoCubicAbs.y') |
| 3962 @DocsEditable() | 3962 @DocsEditable() |
| 3963 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.y_Setter_float(
this, value); | 3963 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.y_Setter(this,
value); |
| 3964 | 3964 |
| 3965 @DomName('SVGPathSegCurvetoCubicAbs.y1') | 3965 @DomName('SVGPathSegCurvetoCubicAbs.y1') |
| 3966 @DocsEditable() | 3966 @DocsEditable() |
| 3967 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.y1_Getter(this); | 3967 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.y1_Getter(this); |
| 3968 | 3968 |
| 3969 @DomName('SVGPathSegCurvetoCubicAbs.y1') | 3969 @DomName('SVGPathSegCurvetoCubicAbs.y1') |
| 3970 @DocsEditable() | 3970 @DocsEditable() |
| 3971 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.y1_Setter_floa
t(this, value); | 3971 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.y1_Setter(this
, value); |
| 3972 | 3972 |
| 3973 @DomName('SVGPathSegCurvetoCubicAbs.y2') | 3973 @DomName('SVGPathSegCurvetoCubicAbs.y2') |
| 3974 @DocsEditable() | 3974 @DocsEditable() |
| 3975 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.y2_Getter(this); | 3975 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.y2_Getter(this); |
| 3976 | 3976 |
| 3977 @DomName('SVGPathSegCurvetoCubicAbs.y2') | 3977 @DomName('SVGPathSegCurvetoCubicAbs.y2') |
| 3978 @DocsEditable() | 3978 @DocsEditable() |
| 3979 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.y2_Setter_floa
t(this, value); | 3979 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.y2_Setter(this
, value); |
| 3980 | 3980 |
| 3981 } | 3981 } |
| 3982 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3982 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3983 // for details. All rights reserved. Use of this source code is governed by a | 3983 // for details. All rights reserved. Use of this source code is governed by a |
| 3984 // BSD-style license that can be found in the LICENSE file. | 3984 // BSD-style license that can be found in the LICENSE file. |
| 3985 | 3985 |
| 3986 // WARNING: Do not edit - generated code. | 3986 // WARNING: Do not edit - generated code. |
| 3987 | 3987 |
| 3988 | 3988 |
| 3989 @DocsEditable() | 3989 @DocsEditable() |
| 3990 @DomName('SVGPathSegCurvetoCubicRel') | 3990 @DomName('SVGPathSegCurvetoCubicRel') |
| 3991 @Unstable() | 3991 @Unstable() |
| 3992 class PathSegCurvetoCubicRel extends PathSeg { | 3992 class PathSegCurvetoCubicRel extends PathSeg { |
| 3993 // To suppress missing implicit constructor warnings. | 3993 // To suppress missing implicit constructor warnings. |
| 3994 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported
"); } | 3994 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported
"); } |
| 3995 | 3995 |
| 3996 @DomName('SVGPathSegCurvetoCubicRel.x') | 3996 @DomName('SVGPathSegCurvetoCubicRel.x') |
| 3997 @DocsEditable() | 3997 @DocsEditable() |
| 3998 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.x_Getter(this); | 3998 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.x_Getter(this); |
| 3999 | 3999 |
| 4000 @DomName('SVGPathSegCurvetoCubicRel.x') | 4000 @DomName('SVGPathSegCurvetoCubicRel.x') |
| 4001 @DocsEditable() | 4001 @DocsEditable() |
| 4002 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.x_Setter_float(
this, value); | 4002 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.x_Setter(this,
value); |
| 4003 | 4003 |
| 4004 @DomName('SVGPathSegCurvetoCubicRel.x1') | 4004 @DomName('SVGPathSegCurvetoCubicRel.x1') |
| 4005 @DocsEditable() | 4005 @DocsEditable() |
| 4006 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.x1_Getter(this); | 4006 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.x1_Getter(this); |
| 4007 | 4007 |
| 4008 @DomName('SVGPathSegCurvetoCubicRel.x1') | 4008 @DomName('SVGPathSegCurvetoCubicRel.x1') |
| 4009 @DocsEditable() | 4009 @DocsEditable() |
| 4010 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.x1_Setter_floa
t(this, value); | 4010 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.x1_Setter(this
, value); |
| 4011 | 4011 |
| 4012 @DomName('SVGPathSegCurvetoCubicRel.x2') | 4012 @DomName('SVGPathSegCurvetoCubicRel.x2') |
| 4013 @DocsEditable() | 4013 @DocsEditable() |
| 4014 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.x2_Getter(this); | 4014 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.x2_Getter(this); |
| 4015 | 4015 |
| 4016 @DomName('SVGPathSegCurvetoCubicRel.x2') | 4016 @DomName('SVGPathSegCurvetoCubicRel.x2') |
| 4017 @DocsEditable() | 4017 @DocsEditable() |
| 4018 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.x2_Setter_floa
t(this, value); | 4018 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.x2_Setter(this
, value); |
| 4019 | 4019 |
| 4020 @DomName('SVGPathSegCurvetoCubicRel.y') | 4020 @DomName('SVGPathSegCurvetoCubicRel.y') |
| 4021 @DocsEditable() | 4021 @DocsEditable() |
| 4022 num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.y_Getter(this); | 4022 num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.y_Getter(this); |
| 4023 | 4023 |
| 4024 @DomName('SVGPathSegCurvetoCubicRel.y') | 4024 @DomName('SVGPathSegCurvetoCubicRel.y') |
| 4025 @DocsEditable() | 4025 @DocsEditable() |
| 4026 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.y_Setter_float(
this, value); | 4026 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.y_Setter(this,
value); |
| 4027 | 4027 |
| 4028 @DomName('SVGPathSegCurvetoCubicRel.y1') | 4028 @DomName('SVGPathSegCurvetoCubicRel.y1') |
| 4029 @DocsEditable() | 4029 @DocsEditable() |
| 4030 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.y1_Getter(this); | 4030 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.y1_Getter(this); |
| 4031 | 4031 |
| 4032 @DomName('SVGPathSegCurvetoCubicRel.y1') | 4032 @DomName('SVGPathSegCurvetoCubicRel.y1') |
| 4033 @DocsEditable() | 4033 @DocsEditable() |
| 4034 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.y1_Setter_floa
t(this, value); | 4034 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.y1_Setter(this
, value); |
| 4035 | 4035 |
| 4036 @DomName('SVGPathSegCurvetoCubicRel.y2') | 4036 @DomName('SVGPathSegCurvetoCubicRel.y2') |
| 4037 @DocsEditable() | 4037 @DocsEditable() |
| 4038 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.y2_Getter(this); | 4038 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.y2_Getter(this); |
| 4039 | 4039 |
| 4040 @DomName('SVGPathSegCurvetoCubicRel.y2') | 4040 @DomName('SVGPathSegCurvetoCubicRel.y2') |
| 4041 @DocsEditable() | 4041 @DocsEditable() |
| 4042 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.y2_Setter_floa
t(this, value); | 4042 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.y2_Setter(this
, value); |
| 4043 | 4043 |
| 4044 } | 4044 } |
| 4045 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4045 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4046 // for details. All rights reserved. Use of this source code is governed by a | 4046 // for details. All rights reserved. Use of this source code is governed by a |
| 4047 // BSD-style license that can be found in the LICENSE file. | 4047 // BSD-style license that can be found in the LICENSE file. |
| 4048 | 4048 |
| 4049 // WARNING: Do not edit - generated code. | 4049 // WARNING: Do not edit - generated code. |
| 4050 | 4050 |
| 4051 | 4051 |
| 4052 @DocsEditable() | 4052 @DocsEditable() |
| 4053 @DomName('SVGPathSegCurvetoCubicSmoothAbs') | 4053 @DomName('SVGPathSegCurvetoCubicSmoothAbs') |
| 4054 @Unstable() | 4054 @Unstable() |
| 4055 class PathSegCurvetoCubicSmoothAbs extends PathSeg { | 4055 class PathSegCurvetoCubicSmoothAbs extends PathSeg { |
| 4056 // To suppress missing implicit constructor warnings. | 4056 // To suppress missing implicit constructor warnings. |
| 4057 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup
ported"); } | 4057 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup
ported"); } |
| 4058 | 4058 |
| 4059 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') | 4059 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') |
| 4060 @DocsEditable() | 4060 @DocsEditable() |
| 4061 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x_Getter(this); | 4061 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x_Getter(this); |
| 4062 | 4062 |
| 4063 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') | 4063 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') |
| 4064 @DocsEditable() | 4064 @DocsEditable() |
| 4065 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x_Setter_
float(this, value); | 4065 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x_Setter(
this, value); |
| 4066 | 4066 |
| 4067 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') | 4067 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') |
| 4068 @DocsEditable() | 4068 @DocsEditable() |
| 4069 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x2_Getter(this); | 4069 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x2_Getter(this); |
| 4070 | 4070 |
| 4071 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') | 4071 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') |
| 4072 @DocsEditable() | 4072 @DocsEditable() |
| 4073 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x2_Sette
r_float(this, value); | 4073 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x2_Sette
r(this, value); |
| 4074 | 4074 |
| 4075 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') | 4075 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') |
| 4076 @DocsEditable() | 4076 @DocsEditable() |
| 4077 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y_Getter(this); | 4077 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y_Getter(this); |
| 4078 | 4078 |
| 4079 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') | 4079 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') |
| 4080 @DocsEditable() | 4080 @DocsEditable() |
| 4081 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y_Setter_
float(this, value); | 4081 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y_Setter(
this, value); |
| 4082 | 4082 |
| 4083 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') | 4083 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') |
| 4084 @DocsEditable() | 4084 @DocsEditable() |
| 4085 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y2_Getter(this); | 4085 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y2_Getter(this); |
| 4086 | 4086 |
| 4087 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') | 4087 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') |
| 4088 @DocsEditable() | 4088 @DocsEditable() |
| 4089 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y2_Sette
r_float(this, value); | 4089 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y2_Sette
r(this, value); |
| 4090 | 4090 |
| 4091 } | 4091 } |
| 4092 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4092 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4093 // for details. All rights reserved. Use of this source code is governed by a | 4093 // for details. All rights reserved. Use of this source code is governed by a |
| 4094 // BSD-style license that can be found in the LICENSE file. | 4094 // BSD-style license that can be found in the LICENSE file. |
| 4095 | 4095 |
| 4096 // WARNING: Do not edit - generated code. | 4096 // WARNING: Do not edit - generated code. |
| 4097 | 4097 |
| 4098 | 4098 |
| 4099 @DocsEditable() | 4099 @DocsEditable() |
| 4100 @DomName('SVGPathSegCurvetoCubicSmoothRel') | 4100 @DomName('SVGPathSegCurvetoCubicSmoothRel') |
| 4101 @Unstable() | 4101 @Unstable() |
| 4102 class PathSegCurvetoCubicSmoothRel extends PathSeg { | 4102 class PathSegCurvetoCubicSmoothRel extends PathSeg { |
| 4103 // To suppress missing implicit constructor warnings. | 4103 // To suppress missing implicit constructor warnings. |
| 4104 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup
ported"); } | 4104 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup
ported"); } |
| 4105 | 4105 |
| 4106 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') | 4106 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') |
| 4107 @DocsEditable() | 4107 @DocsEditable() |
| 4108 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x_Getter(this); | 4108 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x_Getter(this); |
| 4109 | 4109 |
| 4110 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') | 4110 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') |
| 4111 @DocsEditable() | 4111 @DocsEditable() |
| 4112 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x_Setter_
float(this, value); | 4112 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x_Setter(
this, value); |
| 4113 | 4113 |
| 4114 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') | 4114 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') |
| 4115 @DocsEditable() | 4115 @DocsEditable() |
| 4116 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x2_Getter(this); | 4116 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x2_Getter(this); |
| 4117 | 4117 |
| 4118 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') | 4118 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') |
| 4119 @DocsEditable() | 4119 @DocsEditable() |
| 4120 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x2_Sette
r_float(this, value); | 4120 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x2_Sette
r(this, value); |
| 4121 | 4121 |
| 4122 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') | 4122 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') |
| 4123 @DocsEditable() | 4123 @DocsEditable() |
| 4124 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y_Getter(this); | 4124 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y_Getter(this); |
| 4125 | 4125 |
| 4126 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') | 4126 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') |
| 4127 @DocsEditable() | 4127 @DocsEditable() |
| 4128 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y_Setter_
float(this, value); | 4128 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y_Setter(
this, value); |
| 4129 | 4129 |
| 4130 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') | 4130 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') |
| 4131 @DocsEditable() | 4131 @DocsEditable() |
| 4132 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y2_Getter(this); | 4132 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y2_Getter(this); |
| 4133 | 4133 |
| 4134 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') | 4134 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') |
| 4135 @DocsEditable() | 4135 @DocsEditable() |
| 4136 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y2_Sette
r_float(this, value); | 4136 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y2_Sette
r(this, value); |
| 4137 | 4137 |
| 4138 } | 4138 } |
| 4139 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4139 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4140 // for details. All rights reserved. Use of this source code is governed by a | 4140 // for details. All rights reserved. Use of this source code is governed by a |
| 4141 // BSD-style license that can be found in the LICENSE file. | 4141 // BSD-style license that can be found in the LICENSE file. |
| 4142 | 4142 |
| 4143 // WARNING: Do not edit - generated code. | 4143 // WARNING: Do not edit - generated code. |
| 4144 | 4144 |
| 4145 | 4145 |
| 4146 @DocsEditable() | 4146 @DocsEditable() |
| 4147 @DomName('SVGPathSegCurvetoQuadraticAbs') | 4147 @DomName('SVGPathSegCurvetoQuadraticAbs') |
| 4148 @Unstable() | 4148 @Unstable() |
| 4149 class PathSegCurvetoQuadraticAbs extends PathSeg { | 4149 class PathSegCurvetoQuadraticAbs extends PathSeg { |
| 4150 // To suppress missing implicit constructor warnings. | 4150 // To suppress missing implicit constructor warnings. |
| 4151 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo
rted"); } | 4151 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo
rted"); } |
| 4152 | 4152 |
| 4153 @DomName('SVGPathSegCurvetoQuadraticAbs.x') | 4153 @DomName('SVGPathSegCurvetoQuadraticAbs.x') |
| 4154 @DocsEditable() | 4154 @DocsEditable() |
| 4155 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x_Getter(this); | 4155 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x_Getter(this); |
| 4156 | 4156 |
| 4157 @DomName('SVGPathSegCurvetoQuadraticAbs.x') | 4157 @DomName('SVGPathSegCurvetoQuadraticAbs.x') |
| 4158 @DocsEditable() | 4158 @DocsEditable() |
| 4159 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x_Setter_fl
oat(this, value); | 4159 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x_Setter(th
is, value); |
| 4160 | 4160 |
| 4161 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') | 4161 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') |
| 4162 @DocsEditable() | 4162 @DocsEditable() |
| 4163 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x1_Getter(this); | 4163 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x1_Getter(this); |
| 4164 | 4164 |
| 4165 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') | 4165 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') |
| 4166 @DocsEditable() | 4166 @DocsEditable() |
| 4167 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x1_Setter_
float(this, value); | 4167 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x1_Setter(
this, value); |
| 4168 | 4168 |
| 4169 @DomName('SVGPathSegCurvetoQuadraticAbs.y') | 4169 @DomName('SVGPathSegCurvetoQuadraticAbs.y') |
| 4170 @DocsEditable() | 4170 @DocsEditable() |
| 4171 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y_Getter(this); | 4171 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y_Getter(this); |
| 4172 | 4172 |
| 4173 @DomName('SVGPathSegCurvetoQuadraticAbs.y') | 4173 @DomName('SVGPathSegCurvetoQuadraticAbs.y') |
| 4174 @DocsEditable() | 4174 @DocsEditable() |
| 4175 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y_Setter_fl
oat(this, value); | 4175 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y_Setter(th
is, value); |
| 4176 | 4176 |
| 4177 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') | 4177 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') |
| 4178 @DocsEditable() | 4178 @DocsEditable() |
| 4179 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y1_Getter(this); | 4179 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y1_Getter(this); |
| 4180 | 4180 |
| 4181 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') | 4181 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') |
| 4182 @DocsEditable() | 4182 @DocsEditable() |
| 4183 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y1_Setter_
float(this, value); | 4183 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y1_Setter(
this, value); |
| 4184 | 4184 |
| 4185 } | 4185 } |
| 4186 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4186 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4187 // for details. All rights reserved. Use of this source code is governed by a | 4187 // for details. All rights reserved. Use of this source code is governed by a |
| 4188 // BSD-style license that can be found in the LICENSE file. | 4188 // BSD-style license that can be found in the LICENSE file. |
| 4189 | 4189 |
| 4190 // WARNING: Do not edit - generated code. | 4190 // WARNING: Do not edit - generated code. |
| 4191 | 4191 |
| 4192 | 4192 |
| 4193 @DocsEditable() | 4193 @DocsEditable() |
| 4194 @DomName('SVGPathSegCurvetoQuadraticRel') | 4194 @DomName('SVGPathSegCurvetoQuadraticRel') |
| 4195 @Unstable() | 4195 @Unstable() |
| 4196 class PathSegCurvetoQuadraticRel extends PathSeg { | 4196 class PathSegCurvetoQuadraticRel extends PathSeg { |
| 4197 // To suppress missing implicit constructor warnings. | 4197 // To suppress missing implicit constructor warnings. |
| 4198 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo
rted"); } | 4198 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo
rted"); } |
| 4199 | 4199 |
| 4200 @DomName('SVGPathSegCurvetoQuadraticRel.x') | 4200 @DomName('SVGPathSegCurvetoQuadraticRel.x') |
| 4201 @DocsEditable() | 4201 @DocsEditable() |
| 4202 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x_Getter(this); | 4202 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x_Getter(this); |
| 4203 | 4203 |
| 4204 @DomName('SVGPathSegCurvetoQuadraticRel.x') | 4204 @DomName('SVGPathSegCurvetoQuadraticRel.x') |
| 4205 @DocsEditable() | 4205 @DocsEditable() |
| 4206 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x_Setter_fl
oat(this, value); | 4206 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x_Setter(th
is, value); |
| 4207 | 4207 |
| 4208 @DomName('SVGPathSegCurvetoQuadraticRel.x1') | 4208 @DomName('SVGPathSegCurvetoQuadraticRel.x1') |
| 4209 @DocsEditable() | 4209 @DocsEditable() |
| 4210 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x1_Getter(this); | 4210 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x1_Getter(this); |
| 4211 | 4211 |
| 4212 @DomName('SVGPathSegCurvetoQuadraticRel.x1') | 4212 @DomName('SVGPathSegCurvetoQuadraticRel.x1') |
| 4213 @DocsEditable() | 4213 @DocsEditable() |
| 4214 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x1_Setter_
float(this, value); | 4214 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x1_Setter(
this, value); |
| 4215 | 4215 |
| 4216 @DomName('SVGPathSegCurvetoQuadraticRel.y') | 4216 @DomName('SVGPathSegCurvetoQuadraticRel.y') |
| 4217 @DocsEditable() | 4217 @DocsEditable() |
| 4218 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y_Getter(this); | 4218 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y_Getter(this); |
| 4219 | 4219 |
| 4220 @DomName('SVGPathSegCurvetoQuadraticRel.y') | 4220 @DomName('SVGPathSegCurvetoQuadraticRel.y') |
| 4221 @DocsEditable() | 4221 @DocsEditable() |
| 4222 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y_Setter_fl
oat(this, value); | 4222 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y_Setter(th
is, value); |
| 4223 | 4223 |
| 4224 @DomName('SVGPathSegCurvetoQuadraticRel.y1') | 4224 @DomName('SVGPathSegCurvetoQuadraticRel.y1') |
| 4225 @DocsEditable() | 4225 @DocsEditable() |
| 4226 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y1_Getter(this); | 4226 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y1_Getter(this); |
| 4227 | 4227 |
| 4228 @DomName('SVGPathSegCurvetoQuadraticRel.y1') | 4228 @DomName('SVGPathSegCurvetoQuadraticRel.y1') |
| 4229 @DocsEditable() | 4229 @DocsEditable() |
| 4230 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y1_Setter_
float(this, value); | 4230 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y1_Setter(
this, value); |
| 4231 | 4231 |
| 4232 } | 4232 } |
| 4233 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4233 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4234 // for details. All rights reserved. Use of this source code is governed by a | 4234 // for details. All rights reserved. Use of this source code is governed by a |
| 4235 // BSD-style license that can be found in the LICENSE file. | 4235 // BSD-style license that can be found in the LICENSE file. |
| 4236 | 4236 |
| 4237 // WARNING: Do not edit - generated code. | 4237 // WARNING: Do not edit - generated code. |
| 4238 | 4238 |
| 4239 | 4239 |
| 4240 @DocsEditable() | 4240 @DocsEditable() |
| 4241 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs') | 4241 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs') |
| 4242 @Unstable() | 4242 @Unstable() |
| 4243 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { | 4243 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { |
| 4244 // To suppress missing implicit constructor warnings. | 4244 // To suppress missing implicit constructor warnings. |
| 4245 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not
supported"); } | 4245 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not
supported"); } |
| 4246 | 4246 |
| 4247 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') | 4247 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') |
| 4248 @DocsEditable() | 4248 @DocsEditable() |
| 4249 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.x_Getter(this); | 4249 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.x_Getter(this); |
| 4250 | 4250 |
| 4251 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') | 4251 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') |
| 4252 @DocsEditable() | 4252 @DocsEditable() |
| 4253 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.x_Set
ter_float(this, value); | 4253 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.x_Set
ter(this, value); |
| 4254 | 4254 |
| 4255 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') | 4255 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') |
| 4256 @DocsEditable() | 4256 @DocsEditable() |
| 4257 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.y_Getter(this); | 4257 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.y_Getter(this); |
| 4258 | 4258 |
| 4259 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') | 4259 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') |
| 4260 @DocsEditable() | 4260 @DocsEditable() |
| 4261 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.y_Set
ter_float(this, value); | 4261 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.y_Set
ter(this, value); |
| 4262 | 4262 |
| 4263 } | 4263 } |
| 4264 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4264 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4265 // for details. All rights reserved. Use of this source code is governed by a | 4265 // for details. All rights reserved. Use of this source code is governed by a |
| 4266 // BSD-style license that can be found in the LICENSE file. | 4266 // BSD-style license that can be found in the LICENSE file. |
| 4267 | 4267 |
| 4268 // WARNING: Do not edit - generated code. | 4268 // WARNING: Do not edit - generated code. |
| 4269 | 4269 |
| 4270 | 4270 |
| 4271 @DocsEditable() | 4271 @DocsEditable() |
| 4272 @DomName('SVGPathSegCurvetoQuadraticSmoothRel') | 4272 @DomName('SVGPathSegCurvetoQuadraticSmoothRel') |
| 4273 @Unstable() | 4273 @Unstable() |
| 4274 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { | 4274 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { |
| 4275 // To suppress missing implicit constructor warnings. | 4275 // To suppress missing implicit constructor warnings. |
| 4276 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not
supported"); } | 4276 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not
supported"); } |
| 4277 | 4277 |
| 4278 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') | 4278 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') |
| 4279 @DocsEditable() | 4279 @DocsEditable() |
| 4280 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.x_Getter(this); | 4280 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.x_Getter(this); |
| 4281 | 4281 |
| 4282 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') | 4282 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') |
| 4283 @DocsEditable() | 4283 @DocsEditable() |
| 4284 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.x_Set
ter_float(this, value); | 4284 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.x_Set
ter(this, value); |
| 4285 | 4285 |
| 4286 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') | 4286 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') |
| 4287 @DocsEditable() | 4287 @DocsEditable() |
| 4288 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.y_Getter(this); | 4288 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.y_Getter(this); |
| 4289 | 4289 |
| 4290 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') | 4290 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') |
| 4291 @DocsEditable() | 4291 @DocsEditable() |
| 4292 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.y_Set
ter_float(this, value); | 4292 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.y_Set
ter(this, value); |
| 4293 | 4293 |
| 4294 } | 4294 } |
| 4295 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4295 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4296 // for details. All rights reserved. Use of this source code is governed by a | 4296 // for details. All rights reserved. Use of this source code is governed by a |
| 4297 // BSD-style license that can be found in the LICENSE file. | 4297 // BSD-style license that can be found in the LICENSE file. |
| 4298 | 4298 |
| 4299 // WARNING: Do not edit - generated code. | 4299 // WARNING: Do not edit - generated code. |
| 4300 | 4300 |
| 4301 | 4301 |
| 4302 @DocsEditable() | 4302 @DocsEditable() |
| 4303 @DomName('SVGPathSegLinetoAbs') | 4303 @DomName('SVGPathSegLinetoAbs') |
| 4304 @Unstable() | 4304 @Unstable() |
| 4305 class PathSegLinetoAbs extends PathSeg { | 4305 class PathSegLinetoAbs extends PathSeg { |
| 4306 // To suppress missing implicit constructor warnings. | 4306 // To suppress missing implicit constructor warnings. |
| 4307 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); } | 4307 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); } |
| 4308 | 4308 |
| 4309 @DomName('SVGPathSegLinetoAbs.x') | 4309 @DomName('SVGPathSegLinetoAbs.x') |
| 4310 @DocsEditable() | 4310 @DocsEditable() |
| 4311 num get x => _blink.BlinkSVGPathSegLinetoAbs.x_Getter(this); | 4311 num get x => _blink.BlinkSVGPathSegLinetoAbs.x_Getter(this); |
| 4312 | 4312 |
| 4313 @DomName('SVGPathSegLinetoAbs.x') | 4313 @DomName('SVGPathSegLinetoAbs.x') |
| 4314 @DocsEditable() | 4314 @DocsEditable() |
| 4315 void set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.x_Setter_float(this,
value); | 4315 void set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.x_Setter(this, value)
; |
| 4316 | 4316 |
| 4317 @DomName('SVGPathSegLinetoAbs.y') | 4317 @DomName('SVGPathSegLinetoAbs.y') |
| 4318 @DocsEditable() | 4318 @DocsEditable() |
| 4319 num get y => _blink.BlinkSVGPathSegLinetoAbs.y_Getter(this); | 4319 num get y => _blink.BlinkSVGPathSegLinetoAbs.y_Getter(this); |
| 4320 | 4320 |
| 4321 @DomName('SVGPathSegLinetoAbs.y') | 4321 @DomName('SVGPathSegLinetoAbs.y') |
| 4322 @DocsEditable() | 4322 @DocsEditable() |
| 4323 void set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.y_Setter_float(this,
value); | 4323 void set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.y_Setter(this, value)
; |
| 4324 | 4324 |
| 4325 } | 4325 } |
| 4326 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4326 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4327 // for details. All rights reserved. Use of this source code is governed by a | 4327 // for details. All rights reserved. Use of this source code is governed by a |
| 4328 // BSD-style license that can be found in the LICENSE file. | 4328 // BSD-style license that can be found in the LICENSE file. |
| 4329 | 4329 |
| 4330 // WARNING: Do not edit - generated code. | 4330 // WARNING: Do not edit - generated code. |
| 4331 | 4331 |
| 4332 | 4332 |
| 4333 @DocsEditable() | 4333 @DocsEditable() |
| 4334 @DomName('SVGPathSegLinetoHorizontalAbs') | 4334 @DomName('SVGPathSegLinetoHorizontalAbs') |
| 4335 @Unstable() | 4335 @Unstable() |
| 4336 class PathSegLinetoHorizontalAbs extends PathSeg { | 4336 class PathSegLinetoHorizontalAbs extends PathSeg { |
| 4337 // To suppress missing implicit constructor warnings. | 4337 // To suppress missing implicit constructor warnings. |
| 4338 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo
rted"); } | 4338 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo
rted"); } |
| 4339 | 4339 |
| 4340 @DomName('SVGPathSegLinetoHorizontalAbs.x') | 4340 @DomName('SVGPathSegLinetoHorizontalAbs.x') |
| 4341 @DocsEditable() | 4341 @DocsEditable() |
| 4342 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.x_Getter(this); | 4342 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.x_Getter(this); |
| 4343 | 4343 |
| 4344 @DomName('SVGPathSegLinetoHorizontalAbs.x') | 4344 @DomName('SVGPathSegLinetoHorizontalAbs.x') |
| 4345 @DocsEditable() | 4345 @DocsEditable() |
| 4346 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.x_Setter_fl
oat(this, value); | 4346 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.x_Setter(th
is, value); |
| 4347 | 4347 |
| 4348 } | 4348 } |
| 4349 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4349 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4350 // for details. All rights reserved. Use of this source code is governed by a | 4350 // for details. All rights reserved. Use of this source code is governed by a |
| 4351 // BSD-style license that can be found in the LICENSE file. | 4351 // BSD-style license that can be found in the LICENSE file. |
| 4352 | 4352 |
| 4353 // WARNING: Do not edit - generated code. | 4353 // WARNING: Do not edit - generated code. |
| 4354 | 4354 |
| 4355 | 4355 |
| 4356 @DocsEditable() | 4356 @DocsEditable() |
| 4357 @DomName('SVGPathSegLinetoHorizontalRel') | 4357 @DomName('SVGPathSegLinetoHorizontalRel') |
| 4358 @Unstable() | 4358 @Unstable() |
| 4359 class PathSegLinetoHorizontalRel extends PathSeg { | 4359 class PathSegLinetoHorizontalRel extends PathSeg { |
| 4360 // To suppress missing implicit constructor warnings. | 4360 // To suppress missing implicit constructor warnings. |
| 4361 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo
rted"); } | 4361 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo
rted"); } |
| 4362 | 4362 |
| 4363 @DomName('SVGPathSegLinetoHorizontalRel.x') | 4363 @DomName('SVGPathSegLinetoHorizontalRel.x') |
| 4364 @DocsEditable() | 4364 @DocsEditable() |
| 4365 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.x_Getter(this); | 4365 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.x_Getter(this); |
| 4366 | 4366 |
| 4367 @DomName('SVGPathSegLinetoHorizontalRel.x') | 4367 @DomName('SVGPathSegLinetoHorizontalRel.x') |
| 4368 @DocsEditable() | 4368 @DocsEditable() |
| 4369 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.x_Setter_fl
oat(this, value); | 4369 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.x_Setter(th
is, value); |
| 4370 | 4370 |
| 4371 } | 4371 } |
| 4372 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4372 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4373 // for details. All rights reserved. Use of this source code is governed by a | 4373 // for details. All rights reserved. Use of this source code is governed by a |
| 4374 // BSD-style license that can be found in the LICENSE file. | 4374 // BSD-style license that can be found in the LICENSE file. |
| 4375 | 4375 |
| 4376 // WARNING: Do not edit - generated code. | 4376 // WARNING: Do not edit - generated code. |
| 4377 | 4377 |
| 4378 | 4378 |
| 4379 @DocsEditable() | 4379 @DocsEditable() |
| 4380 @DomName('SVGPathSegLinetoRel') | 4380 @DomName('SVGPathSegLinetoRel') |
| 4381 @Unstable() | 4381 @Unstable() |
| 4382 class PathSegLinetoRel extends PathSeg { | 4382 class PathSegLinetoRel extends PathSeg { |
| 4383 // To suppress missing implicit constructor warnings. | 4383 // To suppress missing implicit constructor warnings. |
| 4384 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); } | 4384 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); } |
| 4385 | 4385 |
| 4386 @DomName('SVGPathSegLinetoRel.x') | 4386 @DomName('SVGPathSegLinetoRel.x') |
| 4387 @DocsEditable() | 4387 @DocsEditable() |
| 4388 num get x => _blink.BlinkSVGPathSegLinetoRel.x_Getter(this); | 4388 num get x => _blink.BlinkSVGPathSegLinetoRel.x_Getter(this); |
| 4389 | 4389 |
| 4390 @DomName('SVGPathSegLinetoRel.x') | 4390 @DomName('SVGPathSegLinetoRel.x') |
| 4391 @DocsEditable() | 4391 @DocsEditable() |
| 4392 void set x(num value) => _blink.BlinkSVGPathSegLinetoRel.x_Setter_float(this,
value); | 4392 void set x(num value) => _blink.BlinkSVGPathSegLinetoRel.x_Setter(this, value)
; |
| 4393 | 4393 |
| 4394 @DomName('SVGPathSegLinetoRel.y') | 4394 @DomName('SVGPathSegLinetoRel.y') |
| 4395 @DocsEditable() | 4395 @DocsEditable() |
| 4396 num get y => _blink.BlinkSVGPathSegLinetoRel.y_Getter(this); | 4396 num get y => _blink.BlinkSVGPathSegLinetoRel.y_Getter(this); |
| 4397 | 4397 |
| 4398 @DomName('SVGPathSegLinetoRel.y') | 4398 @DomName('SVGPathSegLinetoRel.y') |
| 4399 @DocsEditable() | 4399 @DocsEditable() |
| 4400 void set y(num value) => _blink.BlinkSVGPathSegLinetoRel.y_Setter_float(this,
value); | 4400 void set y(num value) => _blink.BlinkSVGPathSegLinetoRel.y_Setter(this, value)
; |
| 4401 | 4401 |
| 4402 } | 4402 } |
| 4403 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4403 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4404 // for details. All rights reserved. Use of this source code is governed by a | 4404 // for details. All rights reserved. Use of this source code is governed by a |
| 4405 // BSD-style license that can be found in the LICENSE file. | 4405 // BSD-style license that can be found in the LICENSE file. |
| 4406 | 4406 |
| 4407 // WARNING: Do not edit - generated code. | 4407 // WARNING: Do not edit - generated code. |
| 4408 | 4408 |
| 4409 | 4409 |
| 4410 @DocsEditable() | 4410 @DocsEditable() |
| 4411 @DomName('SVGPathSegLinetoVerticalAbs') | 4411 @DomName('SVGPathSegLinetoVerticalAbs') |
| 4412 @Unstable() | 4412 @Unstable() |
| 4413 class PathSegLinetoVerticalAbs extends PathSeg { | 4413 class PathSegLinetoVerticalAbs extends PathSeg { |
| 4414 // To suppress missing implicit constructor warnings. | 4414 // To suppress missing implicit constructor warnings. |
| 4415 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support
ed"); } | 4415 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support
ed"); } |
| 4416 | 4416 |
| 4417 @DomName('SVGPathSegLinetoVerticalAbs.y') | 4417 @DomName('SVGPathSegLinetoVerticalAbs.y') |
| 4418 @DocsEditable() | 4418 @DocsEditable() |
| 4419 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.y_Getter(this); | 4419 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.y_Getter(this); |
| 4420 | 4420 |
| 4421 @DomName('SVGPathSegLinetoVerticalAbs.y') | 4421 @DomName('SVGPathSegLinetoVerticalAbs.y') |
| 4422 @DocsEditable() | 4422 @DocsEditable() |
| 4423 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.y_Setter_floa
t(this, value); | 4423 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.y_Setter(this
, value); |
| 4424 | 4424 |
| 4425 } | 4425 } |
| 4426 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4426 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4427 // for details. All rights reserved. Use of this source code is governed by a | 4427 // for details. All rights reserved. Use of this source code is governed by a |
| 4428 // BSD-style license that can be found in the LICENSE file. | 4428 // BSD-style license that can be found in the LICENSE file. |
| 4429 | 4429 |
| 4430 // WARNING: Do not edit - generated code. | 4430 // WARNING: Do not edit - generated code. |
| 4431 | 4431 |
| 4432 | 4432 |
| 4433 @DocsEditable() | 4433 @DocsEditable() |
| 4434 @DomName('SVGPathSegLinetoVerticalRel') | 4434 @DomName('SVGPathSegLinetoVerticalRel') |
| 4435 @Unstable() | 4435 @Unstable() |
| 4436 class PathSegLinetoVerticalRel extends PathSeg { | 4436 class PathSegLinetoVerticalRel extends PathSeg { |
| 4437 // To suppress missing implicit constructor warnings. | 4437 // To suppress missing implicit constructor warnings. |
| 4438 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support
ed"); } | 4438 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support
ed"); } |
| 4439 | 4439 |
| 4440 @DomName('SVGPathSegLinetoVerticalRel.y') | 4440 @DomName('SVGPathSegLinetoVerticalRel.y') |
| 4441 @DocsEditable() | 4441 @DocsEditable() |
| 4442 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.y_Getter(this); | 4442 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.y_Getter(this); |
| 4443 | 4443 |
| 4444 @DomName('SVGPathSegLinetoVerticalRel.y') | 4444 @DomName('SVGPathSegLinetoVerticalRel.y') |
| 4445 @DocsEditable() | 4445 @DocsEditable() |
| 4446 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.y_Setter_floa
t(this, value); | 4446 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.y_Setter(this
, value); |
| 4447 | 4447 |
| 4448 } | 4448 } |
| 4449 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4449 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4450 // for details. All rights reserved. Use of this source code is governed by a | 4450 // for details. All rights reserved. Use of this source code is governed by a |
| 4451 // BSD-style license that can be found in the LICENSE file. | 4451 // BSD-style license that can be found in the LICENSE file. |
| 4452 | 4452 |
| 4453 // WARNING: Do not edit - generated code. | 4453 // WARNING: Do not edit - generated code. |
| 4454 | 4454 |
| 4455 | 4455 |
| 4456 @DocsEditable() | 4456 @DocsEditable() |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4509 if (len == 0) throw new StateError("No elements"); | 4509 if (len == 0) throw new StateError("No elements"); |
| 4510 throw new StateError("More than one element"); | 4510 throw new StateError("More than one element"); |
| 4511 } | 4511 } |
| 4512 | 4512 |
| 4513 PathSeg elementAt(int index) => this[index]; | 4513 PathSeg elementAt(int index) => this[index]; |
| 4514 // -- end List<PathSeg> mixins. | 4514 // -- end List<PathSeg> mixins. |
| 4515 | 4515 |
| 4516 @DomName('SVGPathSegList.__setter__') | 4516 @DomName('SVGPathSegList.__setter__') |
| 4517 @DocsEditable() | 4517 @DocsEditable() |
| 4518 @Experimental() // untriaged | 4518 @Experimental() // untriaged |
| 4519 void __setter__(int index, PathSeg value) => _blink.BlinkSVGPathSegList.$__set
ter___Callback_ul_SVGPathSeg(this, index, value); | 4519 void __setter__(int index, PathSeg value) => _blink.BlinkSVGPathSegList.$__set
ter___Callback_2(this, index, value); |
| 4520 | 4520 |
| 4521 @DomName('SVGPathSegList.appendItem') | 4521 @DomName('SVGPathSegList.appendItem') |
| 4522 @DocsEditable() | 4522 @DocsEditable() |
| 4523 PathSeg appendItem(PathSeg newItem) => _blink.BlinkSVGPathSegList.appendItem_C
allback_SVGPathSeg(this, newItem); | 4523 PathSeg appendItem(PathSeg newItem) => _blink.BlinkSVGPathSegList.appendItem_C
allback_1(this, newItem); |
| 4524 | 4524 |
| 4525 @DomName('SVGPathSegList.clear') | 4525 @DomName('SVGPathSegList.clear') |
| 4526 @DocsEditable() | 4526 @DocsEditable() |
| 4527 void clear() => _blink.BlinkSVGPathSegList.clear_Callback(this); | 4527 void clear() => _blink.BlinkSVGPathSegList.clear_Callback(this); |
| 4528 | 4528 |
| 4529 @DomName('SVGPathSegList.getItem') | 4529 @DomName('SVGPathSegList.getItem') |
| 4530 @DocsEditable() | 4530 @DocsEditable() |
| 4531 PathSeg getItem(int index) => _blink.BlinkSVGPathSegList.getItem_Callback_ul(t
his, index); | 4531 PathSeg getItem(int index) => _blink.BlinkSVGPathSegList.getItem_Callback_1(th
is, index); |
| 4532 | 4532 |
| 4533 @DomName('SVGPathSegList.initialize') | 4533 @DomName('SVGPathSegList.initialize') |
| 4534 @DocsEditable() | 4534 @DocsEditable() |
| 4535 PathSeg initialize(PathSeg newItem) => _blink.BlinkSVGPathSegList.initialize_C
allback_SVGPathSeg(this, newItem); | 4535 PathSeg initialize(PathSeg newItem) => _blink.BlinkSVGPathSegList.initialize_C
allback_1(this, newItem); |
| 4536 | 4536 |
| 4537 @DomName('SVGPathSegList.insertItemBefore') | 4537 @DomName('SVGPathSegList.insertItemBefore') |
| 4538 @DocsEditable() | 4538 @DocsEditable() |
| 4539 PathSeg insertItemBefore(PathSeg newItem, int index) => _blink.BlinkSVGPathSeg
List.insertItemBefore_Callback_SVGPathSeg_ul(this, newItem, index); | 4539 PathSeg insertItemBefore(PathSeg newItem, int index) => _blink.BlinkSVGPathSeg
List.insertItemBefore_Callback_2(this, newItem, index); |
| 4540 | 4540 |
| 4541 @DomName('SVGPathSegList.removeItem') | 4541 @DomName('SVGPathSegList.removeItem') |
| 4542 @DocsEditable() | 4542 @DocsEditable() |
| 4543 PathSeg removeItem(int index) => _blink.BlinkSVGPathSegList.removeItem_Callbac
k_ul(this, index); | 4543 PathSeg removeItem(int index) => _blink.BlinkSVGPathSegList.removeItem_Callbac
k_1(this, index); |
| 4544 | 4544 |
| 4545 @DomName('SVGPathSegList.replaceItem') | 4545 @DomName('SVGPathSegList.replaceItem') |
| 4546 @DocsEditable() | 4546 @DocsEditable() |
| 4547 PathSeg replaceItem(PathSeg newItem, int index) => _blink.BlinkSVGPathSegList.
replaceItem_Callback_SVGPathSeg_ul(this, newItem, index); | 4547 PathSeg replaceItem(PathSeg newItem, int index) => _blink.BlinkSVGPathSegList.
replaceItem_Callback_2(this, newItem, index); |
| 4548 | 4548 |
| 4549 } | 4549 } |
| 4550 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4550 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4551 // for details. All rights reserved. Use of this source code is governed by a | 4551 // for details. All rights reserved. Use of this source code is governed by a |
| 4552 // BSD-style license that can be found in the LICENSE file. | 4552 // BSD-style license that can be found in the LICENSE file. |
| 4553 | 4553 |
| 4554 // WARNING: Do not edit - generated code. | 4554 // WARNING: Do not edit - generated code. |
| 4555 | 4555 |
| 4556 | 4556 |
| 4557 @DocsEditable() | 4557 @DocsEditable() |
| 4558 @DomName('SVGPathSegMovetoAbs') | 4558 @DomName('SVGPathSegMovetoAbs') |
| 4559 @Unstable() | 4559 @Unstable() |
| 4560 class PathSegMovetoAbs extends PathSeg { | 4560 class PathSegMovetoAbs extends PathSeg { |
| 4561 // To suppress missing implicit constructor warnings. | 4561 // To suppress missing implicit constructor warnings. |
| 4562 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); } | 4562 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); } |
| 4563 | 4563 |
| 4564 @DomName('SVGPathSegMovetoAbs.x') | 4564 @DomName('SVGPathSegMovetoAbs.x') |
| 4565 @DocsEditable() | 4565 @DocsEditable() |
| 4566 num get x => _blink.BlinkSVGPathSegMovetoAbs.x_Getter(this); | 4566 num get x => _blink.BlinkSVGPathSegMovetoAbs.x_Getter(this); |
| 4567 | 4567 |
| 4568 @DomName('SVGPathSegMovetoAbs.x') | 4568 @DomName('SVGPathSegMovetoAbs.x') |
| 4569 @DocsEditable() | 4569 @DocsEditable() |
| 4570 void set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.x_Setter_float(this,
value); | 4570 void set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.x_Setter(this, value)
; |
| 4571 | 4571 |
| 4572 @DomName('SVGPathSegMovetoAbs.y') | 4572 @DomName('SVGPathSegMovetoAbs.y') |
| 4573 @DocsEditable() | 4573 @DocsEditable() |
| 4574 num get y => _blink.BlinkSVGPathSegMovetoAbs.y_Getter(this); | 4574 num get y => _blink.BlinkSVGPathSegMovetoAbs.y_Getter(this); |
| 4575 | 4575 |
| 4576 @DomName('SVGPathSegMovetoAbs.y') | 4576 @DomName('SVGPathSegMovetoAbs.y') |
| 4577 @DocsEditable() | 4577 @DocsEditable() |
| 4578 void set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.y_Setter_float(this,
value); | 4578 void set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.y_Setter(this, value)
; |
| 4579 | 4579 |
| 4580 } | 4580 } |
| 4581 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4581 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4582 // for details. All rights reserved. Use of this source code is governed by a | 4582 // for details. All rights reserved. Use of this source code is governed by a |
| 4583 // BSD-style license that can be found in the LICENSE file. | 4583 // BSD-style license that can be found in the LICENSE file. |
| 4584 | 4584 |
| 4585 // WARNING: Do not edit - generated code. | 4585 // WARNING: Do not edit - generated code. |
| 4586 | 4586 |
| 4587 | 4587 |
| 4588 @DocsEditable() | 4588 @DocsEditable() |
| 4589 @DomName('SVGPathSegMovetoRel') | 4589 @DomName('SVGPathSegMovetoRel') |
| 4590 @Unstable() | 4590 @Unstable() |
| 4591 class PathSegMovetoRel extends PathSeg { | 4591 class PathSegMovetoRel extends PathSeg { |
| 4592 // To suppress missing implicit constructor warnings. | 4592 // To suppress missing implicit constructor warnings. |
| 4593 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); } | 4593 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); } |
| 4594 | 4594 |
| 4595 @DomName('SVGPathSegMovetoRel.x') | 4595 @DomName('SVGPathSegMovetoRel.x') |
| 4596 @DocsEditable() | 4596 @DocsEditable() |
| 4597 num get x => _blink.BlinkSVGPathSegMovetoRel.x_Getter(this); | 4597 num get x => _blink.BlinkSVGPathSegMovetoRel.x_Getter(this); |
| 4598 | 4598 |
| 4599 @DomName('SVGPathSegMovetoRel.x') | 4599 @DomName('SVGPathSegMovetoRel.x') |
| 4600 @DocsEditable() | 4600 @DocsEditable() |
| 4601 void set x(num value) => _blink.BlinkSVGPathSegMovetoRel.x_Setter_float(this,
value); | 4601 void set x(num value) => _blink.BlinkSVGPathSegMovetoRel.x_Setter(this, value)
; |
| 4602 | 4602 |
| 4603 @DomName('SVGPathSegMovetoRel.y') | 4603 @DomName('SVGPathSegMovetoRel.y') |
| 4604 @DocsEditable() | 4604 @DocsEditable() |
| 4605 num get y => _blink.BlinkSVGPathSegMovetoRel.y_Getter(this); | 4605 num get y => _blink.BlinkSVGPathSegMovetoRel.y_Getter(this); |
| 4606 | 4606 |
| 4607 @DomName('SVGPathSegMovetoRel.y') | 4607 @DomName('SVGPathSegMovetoRel.y') |
| 4608 @DocsEditable() | 4608 @DocsEditable() |
| 4609 void set y(num value) => _blink.BlinkSVGPathSegMovetoRel.y_Setter_float(this,
value); | 4609 void set y(num value) => _blink.BlinkSVGPathSegMovetoRel.y_Setter(this, value)
; |
| 4610 | 4610 |
| 4611 } | 4611 } |
| 4612 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4612 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4613 // for details. All rights reserved. Use of this source code is governed by a | 4613 // for details. All rights reserved. Use of this source code is governed by a |
| 4614 // BSD-style license that can be found in the LICENSE file. | 4614 // BSD-style license that can be found in the LICENSE file. |
| 4615 | 4615 |
| 4616 // WARNING: Do not edit - generated code. | 4616 // WARNING: Do not edit - generated code. |
| 4617 | 4617 |
| 4618 | 4618 |
| 4619 @DocsEditable() | 4619 @DocsEditable() |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4676 @DomName('SVGPatternElement.requiredFeatures') | 4676 @DomName('SVGPatternElement.requiredFeatures') |
| 4677 @DocsEditable() | 4677 @DocsEditable() |
| 4678 StringList get requiredFeatures => _blink.BlinkSVGPatternElement.requiredFeatu
res_Getter(this); | 4678 StringList get requiredFeatures => _blink.BlinkSVGPatternElement.requiredFeatu
res_Getter(this); |
| 4679 | 4679 |
| 4680 @DomName('SVGPatternElement.systemLanguage') | 4680 @DomName('SVGPatternElement.systemLanguage') |
| 4681 @DocsEditable() | 4681 @DocsEditable() |
| 4682 StringList get systemLanguage => _blink.BlinkSVGPatternElement.systemLanguage_
Getter(this); | 4682 StringList get systemLanguage => _blink.BlinkSVGPatternElement.systemLanguage_
Getter(this); |
| 4683 | 4683 |
| 4684 @DomName('SVGPatternElement.hasExtension') | 4684 @DomName('SVGPatternElement.hasExtension') |
| 4685 @DocsEditable() | 4685 @DocsEditable() |
| 4686 bool hasExtension(String extension) => _blink.BlinkSVGPatternElement.hasExtens
ion_Callback_DOMString(this, extension); | 4686 bool hasExtension(String extension) => _blink.BlinkSVGPatternElement.hasExtens
ion_Callback_1(this, extension); |
| 4687 | 4687 |
| 4688 @DomName('SVGPatternElement.href') | 4688 @DomName('SVGPatternElement.href') |
| 4689 @DocsEditable() | 4689 @DocsEditable() |
| 4690 AnimatedString get href => _blink.BlinkSVGPatternElement.href_Getter(this); | 4690 AnimatedString get href => _blink.BlinkSVGPatternElement.href_Getter(this); |
| 4691 | 4691 |
| 4692 } | 4692 } |
| 4693 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4693 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4694 // for details. All rights reserved. Use of this source code is governed by a | 4694 // for details. All rights reserved. Use of this source code is governed by a |
| 4695 // BSD-style license that can be found in the LICENSE file. | 4695 // BSD-style license that can be found in the LICENSE file. |
| 4696 | 4696 |
| 4697 // WARNING: Do not edit - generated code. | 4697 // WARNING: Do not edit - generated code. |
| 4698 | 4698 |
| 4699 | 4699 |
| 4700 @DocsEditable() | 4700 @DocsEditable() |
| 4701 @DomName('SVGPoint') | 4701 @DomName('SVGPoint') |
| 4702 @Unstable() | 4702 @Unstable() |
| 4703 class Point extends NativeFieldWrapperClass2 { | 4703 class Point extends NativeFieldWrapperClass2 { |
| 4704 // To suppress missing implicit constructor warnings. | 4704 // To suppress missing implicit constructor warnings. |
| 4705 factory Point._() { throw new UnsupportedError("Not supported"); } | 4705 factory Point._() { throw new UnsupportedError("Not supported"); } |
| 4706 | 4706 |
| 4707 @DomName('SVGPoint.x') | 4707 @DomName('SVGPoint.x') |
| 4708 @DocsEditable() | 4708 @DocsEditable() |
| 4709 num get x => _blink.BlinkSVGPoint.x_Getter(this); | 4709 num get x => _blink.BlinkSVGPoint.x_Getter(this); |
| 4710 | 4710 |
| 4711 @DomName('SVGPoint.x') | 4711 @DomName('SVGPoint.x') |
| 4712 @DocsEditable() | 4712 @DocsEditable() |
| 4713 void set x(num value) => _blink.BlinkSVGPoint.x_Setter_float(this, value); | 4713 void set x(num value) => _blink.BlinkSVGPoint.x_Setter(this, value); |
| 4714 | 4714 |
| 4715 @DomName('SVGPoint.y') | 4715 @DomName('SVGPoint.y') |
| 4716 @DocsEditable() | 4716 @DocsEditable() |
| 4717 num get y => _blink.BlinkSVGPoint.y_Getter(this); | 4717 num get y => _blink.BlinkSVGPoint.y_Getter(this); |
| 4718 | 4718 |
| 4719 @DomName('SVGPoint.y') | 4719 @DomName('SVGPoint.y') |
| 4720 @DocsEditable() | 4720 @DocsEditable() |
| 4721 void set y(num value) => _blink.BlinkSVGPoint.y_Setter_float(this, value); | 4721 void set y(num value) => _blink.BlinkSVGPoint.y_Setter(this, value); |
| 4722 | 4722 |
| 4723 @DomName('SVGPoint.matrixTransform') | 4723 @DomName('SVGPoint.matrixTransform') |
| 4724 @DocsEditable() | 4724 @DocsEditable() |
| 4725 Point matrixTransform(Matrix matrix) => _blink.BlinkSVGPoint.matrixTransform_C
allback_SVGMatrix(this, matrix); | 4725 Point matrixTransform(Matrix matrix) => _blink.BlinkSVGPoint.matrixTransform_C
allback_1(this, matrix); |
| 4726 | 4726 |
| 4727 } | 4727 } |
| 4728 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4728 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4729 // for details. All rights reserved. Use of this source code is governed by a | 4729 // for details. All rights reserved. Use of this source code is governed by a |
| 4730 // BSD-style license that can be found in the LICENSE file. | 4730 // BSD-style license that can be found in the LICENSE file. |
| 4731 | 4731 |
| 4732 // WARNING: Do not edit - generated code. | 4732 // WARNING: Do not edit - generated code. |
| 4733 | 4733 |
| 4734 | 4734 |
| 4735 @DocsEditable() | 4735 @DocsEditable() |
| 4736 @DomName('SVGPointList') | 4736 @DomName('SVGPointList') |
| 4737 @Unstable() | 4737 @Unstable() |
| 4738 class PointList extends NativeFieldWrapperClass2 { | 4738 class PointList extends NativeFieldWrapperClass2 { |
| 4739 // To suppress missing implicit constructor warnings. | 4739 // To suppress missing implicit constructor warnings. |
| 4740 factory PointList._() { throw new UnsupportedError("Not supported"); } | 4740 factory PointList._() { throw new UnsupportedError("Not supported"); } |
| 4741 | 4741 |
| 4742 @DomName('SVGPointList.length') | 4742 @DomName('SVGPointList.length') |
| 4743 @DocsEditable() | 4743 @DocsEditable() |
| 4744 @Experimental() // untriaged | 4744 @Experimental() // untriaged |
| 4745 int get length => _blink.BlinkSVGPointList.length_Getter(this); | 4745 int get length => _blink.BlinkSVGPointList.length_Getter(this); |
| 4746 | 4746 |
| 4747 @DomName('SVGPointList.numberOfItems') | 4747 @DomName('SVGPointList.numberOfItems') |
| 4748 @DocsEditable() | 4748 @DocsEditable() |
| 4749 int get numberOfItems => _blink.BlinkSVGPointList.numberOfItems_Getter(this); | 4749 int get numberOfItems => _blink.BlinkSVGPointList.numberOfItems_Getter(this); |
| 4750 | 4750 |
| 4751 @DomName('SVGPointList.__setter__') | 4751 @DomName('SVGPointList.__setter__') |
| 4752 @DocsEditable() | 4752 @DocsEditable() |
| 4753 @Experimental() // untriaged | 4753 @Experimental() // untriaged |
| 4754 void __setter__(int index, Point value) => _blink.BlinkSVGPointList.$__setter_
__Callback_ul_SVGPoint(this, index, value); | 4754 void __setter__(int index, Point value) => _blink.BlinkSVGPointList.$__setter_
__Callback_2(this, index, value); |
| 4755 | 4755 |
| 4756 @DomName('SVGPointList.appendItem') | 4756 @DomName('SVGPointList.appendItem') |
| 4757 @DocsEditable() | 4757 @DocsEditable() |
| 4758 Point appendItem(Point item) => _blink.BlinkSVGPointList.appendItem_Callback_S
VGPoint(this, item); | 4758 Point appendItem(Point item) => _blink.BlinkSVGPointList.appendItem_Callback_1
(this, item); |
| 4759 | 4759 |
| 4760 @DomName('SVGPointList.clear') | 4760 @DomName('SVGPointList.clear') |
| 4761 @DocsEditable() | 4761 @DocsEditable() |
| 4762 void clear() => _blink.BlinkSVGPointList.clear_Callback(this); | 4762 void clear() => _blink.BlinkSVGPointList.clear_Callback(this); |
| 4763 | 4763 |
| 4764 @DomName('SVGPointList.getItem') | 4764 @DomName('SVGPointList.getItem') |
| 4765 @DocsEditable() | 4765 @DocsEditable() |
| 4766 Point getItem(int index) => _blink.BlinkSVGPointList.getItem_Callback_ul(this,
index); | 4766 Point getItem(int index) => _blink.BlinkSVGPointList.getItem_Callback_1(this,
index); |
| 4767 | 4767 |
| 4768 @DomName('SVGPointList.initialize') | 4768 @DomName('SVGPointList.initialize') |
| 4769 @DocsEditable() | 4769 @DocsEditable() |
| 4770 Point initialize(Point item) => _blink.BlinkSVGPointList.initialize_Callback_S
VGPoint(this, item); | 4770 Point initialize(Point item) => _blink.BlinkSVGPointList.initialize_Callback_1
(this, item); |
| 4771 | 4771 |
| 4772 @DomName('SVGPointList.insertItemBefore') | 4772 @DomName('SVGPointList.insertItemBefore') |
| 4773 @DocsEditable() | 4773 @DocsEditable() |
| 4774 Point insertItemBefore(Point item, int index) => _blink.BlinkSVGPointList.inse
rtItemBefore_Callback_SVGPoint_ul(this, item, index); | 4774 Point insertItemBefore(Point item, int index) => _blink.BlinkSVGPointList.inse
rtItemBefore_Callback_2(this, item, index); |
| 4775 | 4775 |
| 4776 @DomName('SVGPointList.removeItem') | 4776 @DomName('SVGPointList.removeItem') |
| 4777 @DocsEditable() | 4777 @DocsEditable() |
| 4778 Point removeItem(int index) => _blink.BlinkSVGPointList.removeItem_Callback_ul
(this, index); | 4778 Point removeItem(int index) => _blink.BlinkSVGPointList.removeItem_Callback_1(
this, index); |
| 4779 | 4779 |
| 4780 @DomName('SVGPointList.replaceItem') | 4780 @DomName('SVGPointList.replaceItem') |
| 4781 @DocsEditable() | 4781 @DocsEditable() |
| 4782 Point replaceItem(Point item, int index) => _blink.BlinkSVGPointList.replaceIt
em_Callback_SVGPoint_ul(this, item, index); | 4782 Point replaceItem(Point item, int index) => _blink.BlinkSVGPointList.replaceIt
em_Callback_2(this, item, index); |
| 4783 | 4783 |
| 4784 } | 4784 } |
| 4785 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4785 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4786 // for details. All rights reserved. Use of this source code is governed by a | 4786 // for details. All rights reserved. Use of this source code is governed by a |
| 4787 // BSD-style license that can be found in the LICENSE file. | 4787 // BSD-style license that can be found in the LICENSE file. |
| 4788 | 4788 |
| 4789 // WARNING: Do not edit - generated code. | 4789 // WARNING: Do not edit - generated code. |
| 4790 | 4790 |
| 4791 | 4791 |
| 4792 @DocsEditable() | 4792 @DocsEditable() |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4917 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN') | 4917 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN') |
| 4918 @DocsEditable() | 4918 @DocsEditable() |
| 4919 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; | 4919 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; |
| 4920 | 4920 |
| 4921 @DomName('SVGPreserveAspectRatio.align') | 4921 @DomName('SVGPreserveAspectRatio.align') |
| 4922 @DocsEditable() | 4922 @DocsEditable() |
| 4923 int get align => _blink.BlinkSVGPreserveAspectRatio.align_Getter(this); | 4923 int get align => _blink.BlinkSVGPreserveAspectRatio.align_Getter(this); |
| 4924 | 4924 |
| 4925 @DomName('SVGPreserveAspectRatio.align') | 4925 @DomName('SVGPreserveAspectRatio.align') |
| 4926 @DocsEditable() | 4926 @DocsEditable() |
| 4927 void set align(int value) => _blink.BlinkSVGPreserveAspectRatio.align_Setter_u
s(this, value); | 4927 void set align(int value) => _blink.BlinkSVGPreserveAspectRatio.align_Setter(t
his, value); |
| 4928 | 4928 |
| 4929 @DomName('SVGPreserveAspectRatio.meetOrSlice') | 4929 @DomName('SVGPreserveAspectRatio.meetOrSlice') |
| 4930 @DocsEditable() | 4930 @DocsEditable() |
| 4931 int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.meetOrSlice_Getter(t
his); | 4931 int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.meetOrSlice_Getter(t
his); |
| 4932 | 4932 |
| 4933 @DomName('SVGPreserveAspectRatio.meetOrSlice') | 4933 @DomName('SVGPreserveAspectRatio.meetOrSlice') |
| 4934 @DocsEditable() | 4934 @DocsEditable() |
| 4935 void set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.meetOrSl
ice_Setter_us(this, value); | 4935 void set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.meetOrSl
ice_Setter(this, value); |
| 4936 | 4936 |
| 4937 } | 4937 } |
| 4938 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4938 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4939 // for details. All rights reserved. Use of this source code is governed by a | 4939 // for details. All rights reserved. Use of this source code is governed by a |
| 4940 // BSD-style license that can be found in the LICENSE file. | 4940 // BSD-style license that can be found in the LICENSE file. |
| 4941 | 4941 |
| 4942 // WARNING: Do not edit - generated code. | 4942 // WARNING: Do not edit - generated code. |
| 4943 | 4943 |
| 4944 | 4944 |
| 4945 @DocsEditable() | 4945 @DocsEditable() |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4997 class Rect extends NativeFieldWrapperClass2 { | 4997 class Rect extends NativeFieldWrapperClass2 { |
| 4998 // To suppress missing implicit constructor warnings. | 4998 // To suppress missing implicit constructor warnings. |
| 4999 factory Rect._() { throw new UnsupportedError("Not supported"); } | 4999 factory Rect._() { throw new UnsupportedError("Not supported"); } |
| 5000 | 5000 |
| 5001 @DomName('SVGRect.height') | 5001 @DomName('SVGRect.height') |
| 5002 @DocsEditable() | 5002 @DocsEditable() |
| 5003 num get height => _blink.BlinkSVGRect.height_Getter(this); | 5003 num get height => _blink.BlinkSVGRect.height_Getter(this); |
| 5004 | 5004 |
| 5005 @DomName('SVGRect.height') | 5005 @DomName('SVGRect.height') |
| 5006 @DocsEditable() | 5006 @DocsEditable() |
| 5007 void set height(num value) => _blink.BlinkSVGRect.height_Setter_float(this, va
lue); | 5007 void set height(num value) => _blink.BlinkSVGRect.height_Setter(this, value); |
| 5008 | 5008 |
| 5009 @DomName('SVGRect.width') | 5009 @DomName('SVGRect.width') |
| 5010 @DocsEditable() | 5010 @DocsEditable() |
| 5011 num get width => _blink.BlinkSVGRect.width_Getter(this); | 5011 num get width => _blink.BlinkSVGRect.width_Getter(this); |
| 5012 | 5012 |
| 5013 @DomName('SVGRect.width') | 5013 @DomName('SVGRect.width') |
| 5014 @DocsEditable() | 5014 @DocsEditable() |
| 5015 void set width(num value) => _blink.BlinkSVGRect.width_Setter_float(this, valu
e); | 5015 void set width(num value) => _blink.BlinkSVGRect.width_Setter(this, value); |
| 5016 | 5016 |
| 5017 @DomName('SVGRect.x') | 5017 @DomName('SVGRect.x') |
| 5018 @DocsEditable() | 5018 @DocsEditable() |
| 5019 num get x => _blink.BlinkSVGRect.x_Getter(this); | 5019 num get x => _blink.BlinkSVGRect.x_Getter(this); |
| 5020 | 5020 |
| 5021 @DomName('SVGRect.x') | 5021 @DomName('SVGRect.x') |
| 5022 @DocsEditable() | 5022 @DocsEditable() |
| 5023 void set x(num value) => _blink.BlinkSVGRect.x_Setter_float(this, value); | 5023 void set x(num value) => _blink.BlinkSVGRect.x_Setter(this, value); |
| 5024 | 5024 |
| 5025 @DomName('SVGRect.y') | 5025 @DomName('SVGRect.y') |
| 5026 @DocsEditable() | 5026 @DocsEditable() |
| 5027 num get y => _blink.BlinkSVGRect.y_Getter(this); | 5027 num get y => _blink.BlinkSVGRect.y_Getter(this); |
| 5028 | 5028 |
| 5029 @DomName('SVGRect.y') | 5029 @DomName('SVGRect.y') |
| 5030 @DocsEditable() | 5030 @DocsEditable() |
| 5031 void set y(num value) => _blink.BlinkSVGRect.y_Setter_float(this, value); | 5031 void set y(num value) => _blink.BlinkSVGRect.y_Setter(this, value); |
| 5032 | 5032 |
| 5033 } | 5033 } |
| 5034 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5034 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5035 // for details. All rights reserved. Use of this source code is governed by a | 5035 // for details. All rights reserved. Use of this source code is governed by a |
| 5036 // BSD-style license that can be found in the LICENSE file. | 5036 // BSD-style license that can be found in the LICENSE file. |
| 5037 | 5037 |
| 5038 // WARNING: Do not edit - generated code. | 5038 // WARNING: Do not edit - generated code. |
| 5039 | 5039 |
| 5040 | 5040 |
| 5041 @DocsEditable() | 5041 @DocsEditable() |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5142 * This can only be called by subclasses from their created constructor. | 5142 * This can only be called by subclasses from their created constructor. |
| 5143 */ | 5143 */ |
| 5144 ScriptElement.created() : super.created(); | 5144 ScriptElement.created() : super.created(); |
| 5145 | 5145 |
| 5146 @DomName('SVGScriptElement.type') | 5146 @DomName('SVGScriptElement.type') |
| 5147 @DocsEditable() | 5147 @DocsEditable() |
| 5148 String get type => _blink.BlinkSVGScriptElement.type_Getter(this); | 5148 String get type => _blink.BlinkSVGScriptElement.type_Getter(this); |
| 5149 | 5149 |
| 5150 @DomName('SVGScriptElement.type') | 5150 @DomName('SVGScriptElement.type') |
| 5151 @DocsEditable() | 5151 @DocsEditable() |
| 5152 void set type(String value) => _blink.BlinkSVGScriptElement.type_Setter_DOMStr
ing(this, value); | 5152 void set type(String value) => _blink.BlinkSVGScriptElement.type_Setter(this,
value); |
| 5153 | 5153 |
| 5154 @DomName('SVGScriptElement.href') | 5154 @DomName('SVGScriptElement.href') |
| 5155 @DocsEditable() | 5155 @DocsEditable() |
| 5156 AnimatedString get href => _blink.BlinkSVGScriptElement.href_Getter(this); | 5156 AnimatedString get href => _blink.BlinkSVGScriptElement.href_Getter(this); |
| 5157 | 5157 |
| 5158 } | 5158 } |
| 5159 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5159 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5160 // for details. All rights reserved. Use of this source code is governed by a | 5160 // for details. All rights reserved. Use of this source code is governed by a |
| 5161 // BSD-style license that can be found in the LICENSE file. | 5161 // BSD-style license that can be found in the LICENSE file. |
| 5162 | 5162 |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5279 if (len == 0) throw new StateError("No elements"); | 5279 if (len == 0) throw new StateError("No elements"); |
| 5280 throw new StateError("More than one element"); | 5280 throw new StateError("More than one element"); |
| 5281 } | 5281 } |
| 5282 | 5282 |
| 5283 String elementAt(int index) => this[index]; | 5283 String elementAt(int index) => this[index]; |
| 5284 // -- end List<String> mixins. | 5284 // -- end List<String> mixins. |
| 5285 | 5285 |
| 5286 @DomName('SVGStringList.__setter__') | 5286 @DomName('SVGStringList.__setter__') |
| 5287 @DocsEditable() | 5287 @DocsEditable() |
| 5288 @Experimental() // untriaged | 5288 @Experimental() // untriaged |
| 5289 void __setter__(int index, String value) => _blink.BlinkSVGStringList.$__sette
r___Callback_ul_DOMString(this, index, value); | 5289 void __setter__(int index, String value) => _blink.BlinkSVGStringList.$__sette
r___Callback_2(this, index, value); |
| 5290 | 5290 |
| 5291 @DomName('SVGStringList.appendItem') | 5291 @DomName('SVGStringList.appendItem') |
| 5292 @DocsEditable() | 5292 @DocsEditable() |
| 5293 String appendItem(String item) => _blink.BlinkSVGStringList.appendItem_Callbac
k_DOMString(this, item); | 5293 String appendItem(String item) => _blink.BlinkSVGStringList.appendItem_Callbac
k_1(this, item); |
| 5294 | 5294 |
| 5295 @DomName('SVGStringList.clear') | 5295 @DomName('SVGStringList.clear') |
| 5296 @DocsEditable() | 5296 @DocsEditable() |
| 5297 void clear() => _blink.BlinkSVGStringList.clear_Callback(this); | 5297 void clear() => _blink.BlinkSVGStringList.clear_Callback(this); |
| 5298 | 5298 |
| 5299 @DomName('SVGStringList.getItem') | 5299 @DomName('SVGStringList.getItem') |
| 5300 @DocsEditable() | 5300 @DocsEditable() |
| 5301 String getItem(int index) => _blink.BlinkSVGStringList.getItem_Callback_ul(thi
s, index); | 5301 String getItem(int index) => _blink.BlinkSVGStringList.getItem_Callback_1(this
, index); |
| 5302 | 5302 |
| 5303 @DomName('SVGStringList.initialize') | 5303 @DomName('SVGStringList.initialize') |
| 5304 @DocsEditable() | 5304 @DocsEditable() |
| 5305 String initialize(String item) => _blink.BlinkSVGStringList.initialize_Callbac
k_DOMString(this, item); | 5305 String initialize(String item) => _blink.BlinkSVGStringList.initialize_Callbac
k_1(this, item); |
| 5306 | 5306 |
| 5307 @DomName('SVGStringList.insertItemBefore') | 5307 @DomName('SVGStringList.insertItemBefore') |
| 5308 @DocsEditable() | 5308 @DocsEditable() |
| 5309 String insertItemBefore(String item, int index) => _blink.BlinkSVGStringList.i
nsertItemBefore_Callback_DOMString_ul(this, item, index); | 5309 String insertItemBefore(String item, int index) => _blink.BlinkSVGStringList.i
nsertItemBefore_Callback_2(this, item, index); |
| 5310 | 5310 |
| 5311 @DomName('SVGStringList.removeItem') | 5311 @DomName('SVGStringList.removeItem') |
| 5312 @DocsEditable() | 5312 @DocsEditable() |
| 5313 String removeItem(int index) => _blink.BlinkSVGStringList.removeItem_Callback_
ul(this, index); | 5313 String removeItem(int index) => _blink.BlinkSVGStringList.removeItem_Callback_
1(this, index); |
| 5314 | 5314 |
| 5315 @DomName('SVGStringList.replaceItem') | 5315 @DomName('SVGStringList.replaceItem') |
| 5316 @DocsEditable() | 5316 @DocsEditable() |
| 5317 String replaceItem(String item, int index) => _blink.BlinkSVGStringList.replac
eItem_Callback_DOMString_ul(this, item, index); | 5317 String replaceItem(String item, int index) => _blink.BlinkSVGStringList.replac
eItem_Callback_2(this, item, index); |
| 5318 | 5318 |
| 5319 } | 5319 } |
| 5320 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5320 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5321 // for details. All rights reserved. Use of this source code is governed by a | 5321 // for details. All rights reserved. Use of this source code is governed by a |
| 5322 // BSD-style license that can be found in the LICENSE file. | 5322 // BSD-style license that can be found in the LICENSE file. |
| 5323 | 5323 |
| 5324 // WARNING: Do not edit - generated code. | 5324 // WARNING: Do not edit - generated code. |
| 5325 | 5325 |
| 5326 | 5326 |
| 5327 @DocsEditable() | 5327 @DocsEditable() |
| (...skipping 13 matching lines...) Expand all Loading... |
| 5341 * This can only be called by subclasses from their created constructor. | 5341 * This can only be called by subclasses from their created constructor. |
| 5342 */ | 5342 */ |
| 5343 StyleElement.created() : super.created(); | 5343 StyleElement.created() : super.created(); |
| 5344 | 5344 |
| 5345 @DomName('SVGStyleElement.disabled') | 5345 @DomName('SVGStyleElement.disabled') |
| 5346 @DocsEditable() | 5346 @DocsEditable() |
| 5347 bool get disabled => _blink.BlinkSVGStyleElement.disabled_Getter(this); | 5347 bool get disabled => _blink.BlinkSVGStyleElement.disabled_Getter(this); |
| 5348 | 5348 |
| 5349 @DomName('SVGStyleElement.disabled') | 5349 @DomName('SVGStyleElement.disabled') |
| 5350 @DocsEditable() | 5350 @DocsEditable() |
| 5351 void set disabled(bool value) => _blink.BlinkSVGStyleElement.disabled_Setter_b
oolean(this, value); | 5351 void set disabled(bool value) => _blink.BlinkSVGStyleElement.disabled_Setter(t
his, value); |
| 5352 | 5352 |
| 5353 @DomName('SVGStyleElement.media') | 5353 @DomName('SVGStyleElement.media') |
| 5354 @DocsEditable() | 5354 @DocsEditable() |
| 5355 String get media => _blink.BlinkSVGStyleElement.media_Getter(this); | 5355 String get media => _blink.BlinkSVGStyleElement.media_Getter(this); |
| 5356 | 5356 |
| 5357 @DomName('SVGStyleElement.media') | 5357 @DomName('SVGStyleElement.media') |
| 5358 @DocsEditable() | 5358 @DocsEditable() |
| 5359 void set media(String value) => _blink.BlinkSVGStyleElement.media_Setter_DOMSt
ring(this, value); | 5359 void set media(String value) => _blink.BlinkSVGStyleElement.media_Setter(this,
value); |
| 5360 | 5360 |
| 5361 @DomName('SVGStyleElement.sheet') | 5361 @DomName('SVGStyleElement.sheet') |
| 5362 @DocsEditable() | 5362 @DocsEditable() |
| 5363 @Experimental() // untriaged | 5363 @Experimental() // untriaged |
| 5364 StyleSheet get sheet => _blink.BlinkSVGStyleElement.sheet_Getter(this); | 5364 StyleSheet get sheet => _blink.BlinkSVGStyleElement.sheet_Getter(this); |
| 5365 | 5365 |
| 5366 @DomName('SVGStyleElement.title') | 5366 @DomName('SVGStyleElement.title') |
| 5367 @DocsEditable() | 5367 @DocsEditable() |
| 5368 String get title => _blink.BlinkSVGStyleElement.title_Getter(this); | 5368 String get title => _blink.BlinkSVGStyleElement.title_Getter(this); |
| 5369 | 5369 |
| 5370 @DomName('SVGStyleElement.title') | 5370 @DomName('SVGStyleElement.title') |
| 5371 @DocsEditable() | 5371 @DocsEditable() |
| 5372 void set title(String value) => _blink.BlinkSVGStyleElement.title_Setter_DOMSt
ring(this, value); | 5372 void set title(String value) => _blink.BlinkSVGStyleElement.title_Setter(this,
value); |
| 5373 | 5373 |
| 5374 @DomName('SVGStyleElement.type') | 5374 @DomName('SVGStyleElement.type') |
| 5375 @DocsEditable() | 5375 @DocsEditable() |
| 5376 String get type => _blink.BlinkSVGStyleElement.type_Getter(this); | 5376 String get type => _blink.BlinkSVGStyleElement.type_Getter(this); |
| 5377 | 5377 |
| 5378 @DomName('SVGStyleElement.type') | 5378 @DomName('SVGStyleElement.type') |
| 5379 @DocsEditable() | 5379 @DocsEditable() |
| 5380 void set type(String value) => _blink.BlinkSVGStyleElement.type_Setter_DOMStri
ng(this, value); | 5380 void set type(String value) => _blink.BlinkSVGStyleElement.type_Setter(this, v
alue); |
| 5381 | 5381 |
| 5382 } | 5382 } |
| 5383 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 5383 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 5384 // for details. All rights reserved. Use of this source code is governed by a | 5384 // for details. All rights reserved. Use of this source code is governed by a |
| 5385 // BSD-style license that can be found in the LICENSE file. | 5385 // BSD-style license that can be found in the LICENSE file. |
| 5386 | 5386 |
| 5387 | 5387 |
| 5388 class _AttributeClassSet extends CssClassSetImpl { | 5388 class _AttributeClassSet extends CssClassSetImpl { |
| 5389 final Element _element; | 5389 final Element _element; |
| 5390 | 5390 |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5815 CssStyleDeclaration get style => _blink.BlinkSVGElement.style_Getter(this); | 5815 CssStyleDeclaration get style => _blink.BlinkSVGElement.style_Getter(this); |
| 5816 | 5816 |
| 5817 @DomName('SVGElement.tabIndex') | 5817 @DomName('SVGElement.tabIndex') |
| 5818 @DocsEditable() | 5818 @DocsEditable() |
| 5819 @Experimental() // untriaged | 5819 @Experimental() // untriaged |
| 5820 int get tabIndex => _blink.BlinkSVGElement.tabIndex_Getter(this); | 5820 int get tabIndex => _blink.BlinkSVGElement.tabIndex_Getter(this); |
| 5821 | 5821 |
| 5822 @DomName('SVGElement.tabIndex') | 5822 @DomName('SVGElement.tabIndex') |
| 5823 @DocsEditable() | 5823 @DocsEditable() |
| 5824 @Experimental() // untriaged | 5824 @Experimental() // untriaged |
| 5825 void set tabIndex(int value) => _blink.BlinkSVGElement.tabIndex_Setter_long(th
is, value); | 5825 void set tabIndex(int value) => _blink.BlinkSVGElement.tabIndex_Setter(this, v
alue); |
| 5826 | 5826 |
| 5827 @DomName('SVGElement.viewportElement') | 5827 @DomName('SVGElement.viewportElement') |
| 5828 @DocsEditable() | 5828 @DocsEditable() |
| 5829 SvgElement get viewportElement => _blink.BlinkSVGElement.viewportElement_Gette
r(this); | 5829 SvgElement get viewportElement => _blink.BlinkSVGElement.viewportElement_Gette
r(this); |
| 5830 | 5830 |
| 5831 @DomName('SVGElement.xmlbase') | 5831 @DomName('SVGElement.xmlbase') |
| 5832 @DocsEditable() | 5832 @DocsEditable() |
| 5833 String get xmlbase => _blink.BlinkSVGElement.xmlbase_Getter(this); | 5833 String get xmlbase => _blink.BlinkSVGElement.xmlbase_Getter(this); |
| 5834 | 5834 |
| 5835 @DomName('SVGElement.xmlbase') | 5835 @DomName('SVGElement.xmlbase') |
| 5836 @DocsEditable() | 5836 @DocsEditable() |
| 5837 void set xmlbase(String value) => _blink.BlinkSVGElement.xmlbase_Setter_DOMStr
ing(this, value); | 5837 void set xmlbase(String value) => _blink.BlinkSVGElement.xmlbase_Setter(this,
value); |
| 5838 | 5838 |
| 5839 @DomName('SVGElement.xmllang') | 5839 @DomName('SVGElement.xmllang') |
| 5840 @DocsEditable() | 5840 @DocsEditable() |
| 5841 @Experimental() // untriaged | 5841 @Experimental() // untriaged |
| 5842 String get xmllang => _blink.BlinkSVGElement.xmllang_Getter(this); | 5842 String get xmllang => _blink.BlinkSVGElement.xmllang_Getter(this); |
| 5843 | 5843 |
| 5844 @DomName('SVGElement.xmllang') | 5844 @DomName('SVGElement.xmllang') |
| 5845 @DocsEditable() | 5845 @DocsEditable() |
| 5846 @Experimental() // untriaged | 5846 @Experimental() // untriaged |
| 5847 void set xmllang(String value) => _blink.BlinkSVGElement.xmllang_Setter_DOMStr
ing(this, value); | 5847 void set xmllang(String value) => _blink.BlinkSVGElement.xmllang_Setter(this,
value); |
| 5848 | 5848 |
| 5849 @DomName('SVGElement.xmlspace') | 5849 @DomName('SVGElement.xmlspace') |
| 5850 @DocsEditable() | 5850 @DocsEditable() |
| 5851 @Experimental() // untriaged | 5851 @Experimental() // untriaged |
| 5852 String get xmlspace => _blink.BlinkSVGElement.xmlspace_Getter(this); | 5852 String get xmlspace => _blink.BlinkSVGElement.xmlspace_Getter(this); |
| 5853 | 5853 |
| 5854 @DomName('SVGElement.xmlspace') | 5854 @DomName('SVGElement.xmlspace') |
| 5855 @DocsEditable() | 5855 @DocsEditable() |
| 5856 @Experimental() // untriaged | 5856 @Experimental() // untriaged |
| 5857 void set xmlspace(String value) => _blink.BlinkSVGElement.xmlspace_Setter_DOMS
tring(this, value); | 5857 void set xmlspace(String value) => _blink.BlinkSVGElement.xmlspace_Setter(this
, value); |
| 5858 | 5858 |
| 5859 @DomName('SVGElement.onabort') | 5859 @DomName('SVGElement.onabort') |
| 5860 @DocsEditable() | 5860 @DocsEditable() |
| 5861 @Experimental() // untriaged | 5861 @Experimental() // untriaged |
| 5862 ElementStream<Event> get onAbort => abortEvent.forElement(this); | 5862 ElementStream<Event> get onAbort => abortEvent.forElement(this); |
| 5863 | 5863 |
| 5864 @DomName('SVGElement.onblur') | 5864 @DomName('SVGElement.onblur') |
| 5865 @DocsEditable() | 5865 @DocsEditable() |
| 5866 @Experimental() // untriaged | 5866 @Experimental() // untriaged |
| 5867 ElementStream<Event> get onBlur => blurEvent.forElement(this); | 5867 ElementStream<Event> get onBlur => blurEvent.forElement(this); |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6140 * This can only be called by subclasses from their created constructor. | 6140 * This can only be called by subclasses from their created constructor. |
| 6141 */ | 6141 */ |
| 6142 SvgSvgElement.created() : super.created(); | 6142 SvgSvgElement.created() : super.created(); |
| 6143 | 6143 |
| 6144 @DomName('SVGSVGElement.currentScale') | 6144 @DomName('SVGSVGElement.currentScale') |
| 6145 @DocsEditable() | 6145 @DocsEditable() |
| 6146 num get currentScale => _blink.BlinkSVGSVGElement.currentScale_Getter(this); | 6146 num get currentScale => _blink.BlinkSVGSVGElement.currentScale_Getter(this); |
| 6147 | 6147 |
| 6148 @DomName('SVGSVGElement.currentScale') | 6148 @DomName('SVGSVGElement.currentScale') |
| 6149 @DocsEditable() | 6149 @DocsEditable() |
| 6150 void set currentScale(num value) => _blink.BlinkSVGSVGElement.currentScale_Set
ter_float(this, value); | 6150 void set currentScale(num value) => _blink.BlinkSVGSVGElement.currentScale_Set
ter(this, value); |
| 6151 | 6151 |
| 6152 @DomName('SVGSVGElement.currentTranslate') | 6152 @DomName('SVGSVGElement.currentTranslate') |
| 6153 @DocsEditable() | 6153 @DocsEditable() |
| 6154 Point get currentTranslate => _blink.BlinkSVGSVGElement.currentTranslate_Gette
r(this); | 6154 Point get currentTranslate => _blink.BlinkSVGSVGElement.currentTranslate_Gette
r(this); |
| 6155 | 6155 |
| 6156 @DomName('SVGSVGElement.currentView') | 6156 @DomName('SVGSVGElement.currentView') |
| 6157 @DocsEditable() | 6157 @DocsEditable() |
| 6158 ViewSpec get currentView => _blink.BlinkSVGSVGElement.currentView_Getter(this)
; | 6158 ViewSpec get currentView => _blink.BlinkSVGSVGElement.currentView_Getter(this)
; |
| 6159 | 6159 |
| 6160 @DomName('SVGSVGElement.height') | 6160 @DomName('SVGSVGElement.height') |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6196 @DomName('SVGSVGElement.y') | 6196 @DomName('SVGSVGElement.y') |
| 6197 @DocsEditable() | 6197 @DocsEditable() |
| 6198 AnimatedLength get y => _blink.BlinkSVGSVGElement.y_Getter(this); | 6198 AnimatedLength get y => _blink.BlinkSVGSVGElement.y_Getter(this); |
| 6199 | 6199 |
| 6200 @DomName('SVGSVGElement.animationsPaused') | 6200 @DomName('SVGSVGElement.animationsPaused') |
| 6201 @DocsEditable() | 6201 @DocsEditable() |
| 6202 bool animationsPaused() => _blink.BlinkSVGSVGElement.animationsPaused_Callback
(this); | 6202 bool animationsPaused() => _blink.BlinkSVGSVGElement.animationsPaused_Callback
(this); |
| 6203 | 6203 |
| 6204 @DomName('SVGSVGElement.checkEnclosure') | 6204 @DomName('SVGSVGElement.checkEnclosure') |
| 6205 @DocsEditable() | 6205 @DocsEditable() |
| 6206 bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElemen
t.checkEnclosure_Callback_SVGElement_SVGRect(this, element, rect); | 6206 bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElemen
t.checkEnclosure_Callback_2(this, element, rect); |
| 6207 | 6207 |
| 6208 @DomName('SVGSVGElement.checkIntersection') | 6208 @DomName('SVGSVGElement.checkIntersection') |
| 6209 @DocsEditable() | 6209 @DocsEditable() |
| 6210 bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGEle
ment.checkIntersection_Callback_SVGElement_SVGRect(this, element, rect); | 6210 bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGEle
ment.checkIntersection_Callback_2(this, element, rect); |
| 6211 | 6211 |
| 6212 @DomName('SVGSVGElement.createSVGAngle') | 6212 @DomName('SVGSVGElement.createSVGAngle') |
| 6213 @DocsEditable() | 6213 @DocsEditable() |
| 6214 Angle createSvgAngle() => _blink.BlinkSVGSVGElement.createSVGAngle_Callback(th
is); | 6214 Angle createSvgAngle() => _blink.BlinkSVGSVGElement.createSVGAngle_Callback(th
is); |
| 6215 | 6215 |
| 6216 @DomName('SVGSVGElement.createSVGLength') | 6216 @DomName('SVGSVGElement.createSVGLength') |
| 6217 @DocsEditable() | 6217 @DocsEditable() |
| 6218 Length createSvgLength() => _blink.BlinkSVGSVGElement.createSVGLength_Callback
(this); | 6218 Length createSvgLength() => _blink.BlinkSVGSVGElement.createSVGLength_Callback
(this); |
| 6219 | 6219 |
| 6220 @DomName('SVGSVGElement.createSVGMatrix') | 6220 @DomName('SVGSVGElement.createSVGMatrix') |
| (...skipping 11 matching lines...) Expand all Loading... |
| 6232 @DomName('SVGSVGElement.createSVGRect') | 6232 @DomName('SVGSVGElement.createSVGRect') |
| 6233 @DocsEditable() | 6233 @DocsEditable() |
| 6234 Rect createSvgRect() => _blink.BlinkSVGSVGElement.createSVGRect_Callback(this)
; | 6234 Rect createSvgRect() => _blink.BlinkSVGSVGElement.createSVGRect_Callback(this)
; |
| 6235 | 6235 |
| 6236 @DomName('SVGSVGElement.createSVGTransform') | 6236 @DomName('SVGSVGElement.createSVGTransform') |
| 6237 @DocsEditable() | 6237 @DocsEditable() |
| 6238 Transform createSvgTransform() => _blink.BlinkSVGSVGElement.createSVGTransform
_Callback(this); | 6238 Transform createSvgTransform() => _blink.BlinkSVGSVGElement.createSVGTransform
_Callback(this); |
| 6239 | 6239 |
| 6240 @DomName('SVGSVGElement.createSVGTransformFromMatrix') | 6240 @DomName('SVGSVGElement.createSVGTransformFromMatrix') |
| 6241 @DocsEditable() | 6241 @DocsEditable() |
| 6242 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGSVGEle
ment.createSVGTransformFromMatrix_Callback_SVGMatrix(this, matrix); | 6242 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGSVGEle
ment.createSVGTransformFromMatrix_Callback_1(this, matrix); |
| 6243 | 6243 |
| 6244 @DomName('SVGSVGElement.deselectAll') | 6244 @DomName('SVGSVGElement.deselectAll') |
| 6245 @DocsEditable() | 6245 @DocsEditable() |
| 6246 void deselectAll() => _blink.BlinkSVGSVGElement.deselectAll_Callback(this); | 6246 void deselectAll() => _blink.BlinkSVGSVGElement.deselectAll_Callback(this); |
| 6247 | 6247 |
| 6248 @DomName('SVGSVGElement.forceRedraw') | 6248 @DomName('SVGSVGElement.forceRedraw') |
| 6249 @DocsEditable() | 6249 @DocsEditable() |
| 6250 void forceRedraw() => _blink.BlinkSVGSVGElement.forceRedraw_Callback(this); | 6250 void forceRedraw() => _blink.BlinkSVGSVGElement.forceRedraw_Callback(this); |
| 6251 | 6251 |
| 6252 @DomName('SVGSVGElement.getCurrentTime') | 6252 @DomName('SVGSVGElement.getCurrentTime') |
| 6253 @DocsEditable() | 6253 @DocsEditable() |
| 6254 double getCurrentTime() => _blink.BlinkSVGSVGElement.getCurrentTime_Callback(t
his); | 6254 double getCurrentTime() => _blink.BlinkSVGSVGElement.getCurrentTime_Callback(t
his); |
| 6255 | 6255 |
| 6256 @DomName('SVGSVGElement.getElementById') | 6256 @DomName('SVGSVGElement.getElementById') |
| 6257 @DocsEditable() | 6257 @DocsEditable() |
| 6258 Element getElementById(String elementId) => _blink.BlinkSVGSVGElement.getEleme
ntById_Callback_DOMString(this, elementId); | 6258 Element getElementById(String elementId) => _blink.BlinkSVGSVGElement.getEleme
ntById_Callback_1(this, elementId); |
| 6259 | 6259 |
| 6260 @DomName('SVGSVGElement.getEnclosureList') | 6260 @DomName('SVGSVGElement.getEnclosureList') |
| 6261 @DocsEditable() | 6261 @DocsEditable() |
| 6262 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => _blink.
BlinkSVGSVGElement.getEnclosureList_Callback_SVGRect_SVGElement(this, rect, refe
renceElement); | 6262 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => _blink.
BlinkSVGSVGElement.getEnclosureList_Callback_2(this, rect, referenceElement); |
| 6263 | 6263 |
| 6264 @DomName('SVGSVGElement.getIntersectionList') | 6264 @DomName('SVGSVGElement.getIntersectionList') |
| 6265 @DocsEditable() | 6265 @DocsEditable() |
| 6266 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => _bli
nk.BlinkSVGSVGElement.getIntersectionList_Callback_SVGRect_SVGElement(this, rect
, referenceElement); | 6266 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => _bli
nk.BlinkSVGSVGElement.getIntersectionList_Callback_2(this, rect, referenceElemen
t); |
| 6267 | 6267 |
| 6268 @DomName('SVGSVGElement.pauseAnimations') | 6268 @DomName('SVGSVGElement.pauseAnimations') |
| 6269 @DocsEditable() | 6269 @DocsEditable() |
| 6270 void pauseAnimations() => _blink.BlinkSVGSVGElement.pauseAnimations_Callback(t
his); | 6270 void pauseAnimations() => _blink.BlinkSVGSVGElement.pauseAnimations_Callback(t
his); |
| 6271 | 6271 |
| 6272 @DomName('SVGSVGElement.setCurrentTime') | 6272 @DomName('SVGSVGElement.setCurrentTime') |
| 6273 @DocsEditable() | 6273 @DocsEditable() |
| 6274 void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.setCurrentTime_C
allback_float(this, seconds); | 6274 void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.setCurrentTime_C
allback_1(this, seconds); |
| 6275 | 6275 |
| 6276 @DomName('SVGSVGElement.suspendRedraw') | 6276 @DomName('SVGSVGElement.suspendRedraw') |
| 6277 @DocsEditable() | 6277 @DocsEditable() |
| 6278 int suspendRedraw(int maxWaitMilliseconds) => _blink.BlinkSVGSVGElement.suspen
dRedraw_Callback_ul(this, maxWaitMilliseconds); | 6278 int suspendRedraw(int maxWaitMilliseconds) => _blink.BlinkSVGSVGElement.suspen
dRedraw_Callback_1(this, maxWaitMilliseconds); |
| 6279 | 6279 |
| 6280 @DomName('SVGSVGElement.unpauseAnimations') | 6280 @DomName('SVGSVGElement.unpauseAnimations') |
| 6281 @DocsEditable() | 6281 @DocsEditable() |
| 6282 void unpauseAnimations() => _blink.BlinkSVGSVGElement.unpauseAnimations_Callba
ck(this); | 6282 void unpauseAnimations() => _blink.BlinkSVGSVGElement.unpauseAnimations_Callba
ck(this); |
| 6283 | 6283 |
| 6284 @DomName('SVGSVGElement.unsuspendRedraw') | 6284 @DomName('SVGSVGElement.unsuspendRedraw') |
| 6285 @DocsEditable() | 6285 @DocsEditable() |
| 6286 void unsuspendRedraw(int suspendHandleId) => _blink.BlinkSVGSVGElement.unsuspe
ndRedraw_Callback_ul(this, suspendHandleId); | 6286 void unsuspendRedraw(int suspendHandleId) => _blink.BlinkSVGSVGElement.unsuspe
ndRedraw_Callback_1(this, suspendHandleId); |
| 6287 | 6287 |
| 6288 @DomName('SVGSVGElement.unsuspendRedrawAll') | 6288 @DomName('SVGSVGElement.unsuspendRedrawAll') |
| 6289 @DocsEditable() | 6289 @DocsEditable() |
| 6290 void unsuspendRedrawAll() => _blink.BlinkSVGSVGElement.unsuspendRedrawAll_Call
back(this); | 6290 void unsuspendRedrawAll() => _blink.BlinkSVGSVGElement.unsuspendRedrawAll_Call
back(this); |
| 6291 | 6291 |
| 6292 @DomName('SVGSVGElement.preserveAspectRatio') | 6292 @DomName('SVGSVGElement.preserveAspectRatio') |
| 6293 @DocsEditable() | 6293 @DocsEditable() |
| 6294 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSVGEleme
nt.preserveAspectRatio_Getter(this); | 6294 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSVGEleme
nt.preserveAspectRatio_Getter(this); |
| 6295 | 6295 |
| 6296 @DomName('SVGSVGElement.viewBox') | 6296 @DomName('SVGSVGElement.viewBox') |
| 6297 @DocsEditable() | 6297 @DocsEditable() |
| 6298 AnimatedRect get viewBox => _blink.BlinkSVGSVGElement.viewBox_Getter(this); | 6298 AnimatedRect get viewBox => _blink.BlinkSVGSVGElement.viewBox_Getter(this); |
| 6299 | 6299 |
| 6300 @DomName('SVGSVGElement.zoomAndPan') | 6300 @DomName('SVGSVGElement.zoomAndPan') |
| 6301 @DocsEditable() | 6301 @DocsEditable() |
| 6302 int get zoomAndPan => _blink.BlinkSVGSVGElement.zoomAndPan_Getter(this); | 6302 int get zoomAndPan => _blink.BlinkSVGSVGElement.zoomAndPan_Getter(this); |
| 6303 | 6303 |
| 6304 @DomName('SVGSVGElement.zoomAndPan') | 6304 @DomName('SVGSVGElement.zoomAndPan') |
| 6305 @DocsEditable() | 6305 @DocsEditable() |
| 6306 void set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.zoomAndPan_Setter_
us(this, value); | 6306 void set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.zoomAndPan_Setter(
this, value); |
| 6307 | 6307 |
| 6308 } | 6308 } |
| 6309 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6309 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6310 // for details. All rights reserved. Use of this source code is governed by a | 6310 // for details. All rights reserved. Use of this source code is governed by a |
| 6311 // BSD-style license that can be found in the LICENSE file. | 6311 // BSD-style license that can be found in the LICENSE file. |
| 6312 | 6312 |
| 6313 // WARNING: Do not edit - generated code. | 6313 // WARNING: Do not edit - generated code. |
| 6314 | 6314 |
| 6315 | 6315 |
| 6316 @DocsEditable() | 6316 @DocsEditable() |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6410 @DomName('SVGTests.requiredFeatures') | 6410 @DomName('SVGTests.requiredFeatures') |
| 6411 @DocsEditable() | 6411 @DocsEditable() |
| 6412 StringList get requiredFeatures => _blink.BlinkSVGTests.requiredFeatures_Gette
r(this); | 6412 StringList get requiredFeatures => _blink.BlinkSVGTests.requiredFeatures_Gette
r(this); |
| 6413 | 6413 |
| 6414 @DomName('SVGTests.systemLanguage') | 6414 @DomName('SVGTests.systemLanguage') |
| 6415 @DocsEditable() | 6415 @DocsEditable() |
| 6416 StringList get systemLanguage => _blink.BlinkSVGTests.systemLanguage_Getter(th
is); | 6416 StringList get systemLanguage => _blink.BlinkSVGTests.systemLanguage_Getter(th
is); |
| 6417 | 6417 |
| 6418 @DomName('SVGTests.hasExtension') | 6418 @DomName('SVGTests.hasExtension') |
| 6419 @DocsEditable() | 6419 @DocsEditable() |
| 6420 bool hasExtension(String extension) => _blink.BlinkSVGTests.hasExtension_Callb
ack_DOMString(this, extension); | 6420 bool hasExtension(String extension) => _blink.BlinkSVGTests.hasExtension_Callb
ack_1(this, extension); |
| 6421 | 6421 |
| 6422 } | 6422 } |
| 6423 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6423 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6424 // for details. All rights reserved. Use of this source code is governed by a | 6424 // for details. All rights reserved. Use of this source code is governed by a |
| 6425 // BSD-style license that can be found in the LICENSE file. | 6425 // BSD-style license that can be found in the LICENSE file. |
| 6426 | 6426 |
| 6427 // WARNING: Do not edit - generated code. | 6427 // WARNING: Do not edit - generated code. |
| 6428 | 6428 |
| 6429 | 6429 |
| 6430 @DocsEditable() | 6430 @DocsEditable() |
| (...skipping 24 matching lines...) Expand all Loading... |
| 6455 @DomName('SVGTextContentElement.lengthAdjust') | 6455 @DomName('SVGTextContentElement.lengthAdjust') |
| 6456 @DocsEditable() | 6456 @DocsEditable() |
| 6457 AnimatedEnumeration get lengthAdjust => _blink.BlinkSVGTextContentElement.leng
thAdjust_Getter(this); | 6457 AnimatedEnumeration get lengthAdjust => _blink.BlinkSVGTextContentElement.leng
thAdjust_Getter(this); |
| 6458 | 6458 |
| 6459 @DomName('SVGTextContentElement.textLength') | 6459 @DomName('SVGTextContentElement.textLength') |
| 6460 @DocsEditable() | 6460 @DocsEditable() |
| 6461 AnimatedLength get textLength => _blink.BlinkSVGTextContentElement.textLength_
Getter(this); | 6461 AnimatedLength get textLength => _blink.BlinkSVGTextContentElement.textLength_
Getter(this); |
| 6462 | 6462 |
| 6463 @DomName('SVGTextContentElement.getCharNumAtPosition') | 6463 @DomName('SVGTextContentElement.getCharNumAtPosition') |
| 6464 @DocsEditable() | 6464 @DocsEditable() |
| 6465 int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.get
CharNumAtPosition_Callback_SVGPoint(this, point); | 6465 int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.get
CharNumAtPosition_Callback_1(this, point); |
| 6466 | 6466 |
| 6467 @DomName('SVGTextContentElement.getComputedTextLength') | 6467 @DomName('SVGTextContentElement.getComputedTextLength') |
| 6468 @DocsEditable() | 6468 @DocsEditable() |
| 6469 double getComputedTextLength() => _blink.BlinkSVGTextContentElement.getCompute
dTextLength_Callback(this); | 6469 double getComputedTextLength() => _blink.BlinkSVGTextContentElement.getCompute
dTextLength_Callback(this); |
| 6470 | 6470 |
| 6471 @DomName('SVGTextContentElement.getEndPositionOfChar') | 6471 @DomName('SVGTextContentElement.getEndPositionOfChar') |
| 6472 @DocsEditable() | 6472 @DocsEditable() |
| 6473 Point getEndPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.ge
tEndPositionOfChar_Callback_ul(this, offset); | 6473 Point getEndPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.ge
tEndPositionOfChar_Callback_1(this, offset); |
| 6474 | 6474 |
| 6475 @DomName('SVGTextContentElement.getExtentOfChar') | 6475 @DomName('SVGTextContentElement.getExtentOfChar') |
| 6476 @DocsEditable() | 6476 @DocsEditable() |
| 6477 Rect getExtentOfChar(int offset) => _blink.BlinkSVGTextContentElement.getExten
tOfChar_Callback_ul(this, offset); | 6477 Rect getExtentOfChar(int offset) => _blink.BlinkSVGTextContentElement.getExten
tOfChar_Callback_1(this, offset); |
| 6478 | 6478 |
| 6479 @DomName('SVGTextContentElement.getNumberOfChars') | 6479 @DomName('SVGTextContentElement.getNumberOfChars') |
| 6480 @DocsEditable() | 6480 @DocsEditable() |
| 6481 int getNumberOfChars() => _blink.BlinkSVGTextContentElement.getNumberOfChars_C
allback(this); | 6481 int getNumberOfChars() => _blink.BlinkSVGTextContentElement.getNumberOfChars_C
allback(this); |
| 6482 | 6482 |
| 6483 @DomName('SVGTextContentElement.getRotationOfChar') | 6483 @DomName('SVGTextContentElement.getRotationOfChar') |
| 6484 @DocsEditable() | 6484 @DocsEditable() |
| 6485 double getRotationOfChar(int offset) => _blink.BlinkSVGTextContentElement.getR
otationOfChar_Callback_ul(this, offset); | 6485 double getRotationOfChar(int offset) => _blink.BlinkSVGTextContentElement.getR
otationOfChar_Callback_1(this, offset); |
| 6486 | 6486 |
| 6487 @DomName('SVGTextContentElement.getStartPositionOfChar') | 6487 @DomName('SVGTextContentElement.getStartPositionOfChar') |
| 6488 @DocsEditable() | 6488 @DocsEditable() |
| 6489 Point getStartPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.
getStartPositionOfChar_Callback_ul(this, offset); | 6489 Point getStartPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.
getStartPositionOfChar_Callback_1(this, offset); |
| 6490 | 6490 |
| 6491 @DomName('SVGTextContentElement.getSubStringLength') | 6491 @DomName('SVGTextContentElement.getSubStringLength') |
| 6492 @DocsEditable() | 6492 @DocsEditable() |
| 6493 double getSubStringLength(int offset, int length) => _blink.BlinkSVGTextConten
tElement.getSubStringLength_Callback_ul_ul(this, offset, length); | 6493 double getSubStringLength(int offset, int length) => _blink.BlinkSVGTextConten
tElement.getSubStringLength_Callback_2(this, offset, length); |
| 6494 | 6494 |
| 6495 @DomName('SVGTextContentElement.selectSubString') | 6495 @DomName('SVGTextContentElement.selectSubString') |
| 6496 @DocsEditable() | 6496 @DocsEditable() |
| 6497 void selectSubString(int offset, int length) => _blink.BlinkSVGTextContentElem
ent.selectSubString_Callback_ul_ul(this, offset, length); | 6497 void selectSubString(int offset, int length) => _blink.BlinkSVGTextContentElem
ent.selectSubString_Callback_2(this, offset, length); |
| 6498 | 6498 |
| 6499 } | 6499 } |
| 6500 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6500 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6501 // for details. All rights reserved. Use of this source code is governed by a | 6501 // for details. All rights reserved. Use of this source code is governed by a |
| 6502 // BSD-style license that can be found in the LICENSE file. | 6502 // BSD-style license that can be found in the LICENSE file. |
| 6503 | 6503 |
| 6504 // WARNING: Do not edit - generated code. | 6504 // WARNING: Do not edit - generated code. |
| 6505 | 6505 |
| 6506 | 6506 |
| 6507 @DocsEditable() | 6507 @DocsEditable() |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6698 @DomName('SVGTransform.matrix') | 6698 @DomName('SVGTransform.matrix') |
| 6699 @DocsEditable() | 6699 @DocsEditable() |
| 6700 Matrix get matrix => _blink.BlinkSVGTransform.matrix_Getter(this); | 6700 Matrix get matrix => _blink.BlinkSVGTransform.matrix_Getter(this); |
| 6701 | 6701 |
| 6702 @DomName('SVGTransform.type') | 6702 @DomName('SVGTransform.type') |
| 6703 @DocsEditable() | 6703 @DocsEditable() |
| 6704 int get type => _blink.BlinkSVGTransform.type_Getter(this); | 6704 int get type => _blink.BlinkSVGTransform.type_Getter(this); |
| 6705 | 6705 |
| 6706 @DomName('SVGTransform.setMatrix') | 6706 @DomName('SVGTransform.setMatrix') |
| 6707 @DocsEditable() | 6707 @DocsEditable() |
| 6708 void setMatrix(Matrix matrix) => _blink.BlinkSVGTransform.setMatrix_Callback_S
VGMatrix(this, matrix); | 6708 void setMatrix(Matrix matrix) => _blink.BlinkSVGTransform.setMatrix_Callback_1
(this, matrix); |
| 6709 | 6709 |
| 6710 @DomName('SVGTransform.setRotate') | 6710 @DomName('SVGTransform.setRotate') |
| 6711 @DocsEditable() | 6711 @DocsEditable() |
| 6712 void setRotate(num angle, num cx, num cy) => _blink.BlinkSVGTransform.setRotat
e_Callback_float_float_float(this, angle, cx, cy); | 6712 void setRotate(num angle, num cx, num cy) => _blink.BlinkSVGTransform.setRotat
e_Callback_3(this, angle, cx, cy); |
| 6713 | 6713 |
| 6714 @DomName('SVGTransform.setScale') | 6714 @DomName('SVGTransform.setScale') |
| 6715 @DocsEditable() | 6715 @DocsEditable() |
| 6716 void setScale(num sx, num sy) => _blink.BlinkSVGTransform.setScale_Callback_fl
oat_float(this, sx, sy); | 6716 void setScale(num sx, num sy) => _blink.BlinkSVGTransform.setScale_Callback_2(
this, sx, sy); |
| 6717 | 6717 |
| 6718 @DomName('SVGTransform.setSkewX') | 6718 @DomName('SVGTransform.setSkewX') |
| 6719 @DocsEditable() | 6719 @DocsEditable() |
| 6720 void setSkewX(num angle) => _blink.BlinkSVGTransform.setSkewX_Callback_float(t
his, angle); | 6720 void setSkewX(num angle) => _blink.BlinkSVGTransform.setSkewX_Callback_1(this,
angle); |
| 6721 | 6721 |
| 6722 @DomName('SVGTransform.setSkewY') | 6722 @DomName('SVGTransform.setSkewY') |
| 6723 @DocsEditable() | 6723 @DocsEditable() |
| 6724 void setSkewY(num angle) => _blink.BlinkSVGTransform.setSkewY_Callback_float(t
his, angle); | 6724 void setSkewY(num angle) => _blink.BlinkSVGTransform.setSkewY_Callback_1(this,
angle); |
| 6725 | 6725 |
| 6726 @DomName('SVGTransform.setTranslate') | 6726 @DomName('SVGTransform.setTranslate') |
| 6727 @DocsEditable() | 6727 @DocsEditable() |
| 6728 void setTranslate(num tx, num ty) => _blink.BlinkSVGTransform.setTranslate_Cal
lback_float_float(this, tx, ty); | 6728 void setTranslate(num tx, num ty) => _blink.BlinkSVGTransform.setTranslate_Cal
lback_2(this, tx, ty); |
| 6729 | 6729 |
| 6730 } | 6730 } |
| 6731 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6731 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6732 // for details. All rights reserved. Use of this source code is governed by a | 6732 // for details. All rights reserved. Use of this source code is governed by a |
| 6733 // BSD-style license that can be found in the LICENSE file. | 6733 // BSD-style license that can be found in the LICENSE file. |
| 6734 | 6734 |
| 6735 // WARNING: Do not edit - generated code. | 6735 // WARNING: Do not edit - generated code. |
| 6736 | 6736 |
| 6737 | 6737 |
| 6738 @DocsEditable() | 6738 @DocsEditable() |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6791 if (len == 0) throw new StateError("No elements"); | 6791 if (len == 0) throw new StateError("No elements"); |
| 6792 throw new StateError("More than one element"); | 6792 throw new StateError("More than one element"); |
| 6793 } | 6793 } |
| 6794 | 6794 |
| 6795 Transform elementAt(int index) => this[index]; | 6795 Transform elementAt(int index) => this[index]; |
| 6796 // -- end List<Transform> mixins. | 6796 // -- end List<Transform> mixins. |
| 6797 | 6797 |
| 6798 @DomName('SVGTransformList.__setter__') | 6798 @DomName('SVGTransformList.__setter__') |
| 6799 @DocsEditable() | 6799 @DocsEditable() |
| 6800 @Experimental() // untriaged | 6800 @Experimental() // untriaged |
| 6801 void __setter__(int index, Transform value) => _blink.BlinkSVGTransformList.$_
_setter___Callback_ul_SVGTransform(this, index, value); | 6801 void __setter__(int index, Transform value) => _blink.BlinkSVGTransformList.$_
_setter___Callback_2(this, index, value); |
| 6802 | 6802 |
| 6803 @DomName('SVGTransformList.appendItem') | 6803 @DomName('SVGTransformList.appendItem') |
| 6804 @DocsEditable() | 6804 @DocsEditable() |
| 6805 Transform appendItem(Transform item) => _blink.BlinkSVGTransformList.appendIte
m_Callback_SVGTransform(this, item); | 6805 Transform appendItem(Transform item) => _blink.BlinkSVGTransformList.appendIte
m_Callback_1(this, item); |
| 6806 | 6806 |
| 6807 @DomName('SVGTransformList.clear') | 6807 @DomName('SVGTransformList.clear') |
| 6808 @DocsEditable() | 6808 @DocsEditable() |
| 6809 void clear() => _blink.BlinkSVGTransformList.clear_Callback(this); | 6809 void clear() => _blink.BlinkSVGTransformList.clear_Callback(this); |
| 6810 | 6810 |
| 6811 @DomName('SVGTransformList.consolidate') | 6811 @DomName('SVGTransformList.consolidate') |
| 6812 @DocsEditable() | 6812 @DocsEditable() |
| 6813 Transform consolidate() => _blink.BlinkSVGTransformList.consolidate_Callback(t
his); | 6813 Transform consolidate() => _blink.BlinkSVGTransformList.consolidate_Callback(t
his); |
| 6814 | 6814 |
| 6815 @DomName('SVGTransformList.createSVGTransformFromMatrix') | 6815 @DomName('SVGTransformList.createSVGTransformFromMatrix') |
| 6816 @DocsEditable() | 6816 @DocsEditable() |
| 6817 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGTransf
ormList.createSVGTransformFromMatrix_Callback_SVGMatrix(this, matrix); | 6817 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGTransf
ormList.createSVGTransformFromMatrix_Callback_1(this, matrix); |
| 6818 | 6818 |
| 6819 @DomName('SVGTransformList.getItem') | 6819 @DomName('SVGTransformList.getItem') |
| 6820 @DocsEditable() | 6820 @DocsEditable() |
| 6821 Transform getItem(int index) => _blink.BlinkSVGTransformList.getItem_Callback_
ul(this, index); | 6821 Transform getItem(int index) => _blink.BlinkSVGTransformList.getItem_Callback_
1(this, index); |
| 6822 | 6822 |
| 6823 @DomName('SVGTransformList.initialize') | 6823 @DomName('SVGTransformList.initialize') |
| 6824 @DocsEditable() | 6824 @DocsEditable() |
| 6825 Transform initialize(Transform item) => _blink.BlinkSVGTransformList.initializ
e_Callback_SVGTransform(this, item); | 6825 Transform initialize(Transform item) => _blink.BlinkSVGTransformList.initializ
e_Callback_1(this, item); |
| 6826 | 6826 |
| 6827 @DomName('SVGTransformList.insertItemBefore') | 6827 @DomName('SVGTransformList.insertItemBefore') |
| 6828 @DocsEditable() | 6828 @DocsEditable() |
| 6829 Transform insertItemBefore(Transform item, int index) => _blink.BlinkSVGTransf
ormList.insertItemBefore_Callback_SVGTransform_ul(this, item, index); | 6829 Transform insertItemBefore(Transform item, int index) => _blink.BlinkSVGTransf
ormList.insertItemBefore_Callback_2(this, item, index); |
| 6830 | 6830 |
| 6831 @DomName('SVGTransformList.removeItem') | 6831 @DomName('SVGTransformList.removeItem') |
| 6832 @DocsEditable() | 6832 @DocsEditable() |
| 6833 Transform removeItem(int index) => _blink.BlinkSVGTransformList.removeItem_Cal
lback_ul(this, index); | 6833 Transform removeItem(int index) => _blink.BlinkSVGTransformList.removeItem_Cal
lback_1(this, index); |
| 6834 | 6834 |
| 6835 @DomName('SVGTransformList.replaceItem') | 6835 @DomName('SVGTransformList.replaceItem') |
| 6836 @DocsEditable() | 6836 @DocsEditable() |
| 6837 Transform replaceItem(Transform item, int index) => _blink.BlinkSVGTransformLi
st.replaceItem_Callback_SVGTransform_ul(this, item, index); | 6837 Transform replaceItem(Transform item, int index) => _blink.BlinkSVGTransformLi
st.replaceItem_Callback_2(this, item, index); |
| 6838 | 6838 |
| 6839 } | 6839 } |
| 6840 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6840 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6841 // for details. All rights reserved. Use of this source code is governed by a | 6841 // for details. All rights reserved. Use of this source code is governed by a |
| 6842 // BSD-style license that can be found in the LICENSE file. | 6842 // BSD-style license that can be found in the LICENSE file. |
| 6843 | 6843 |
| 6844 // WARNING: Do not edit - generated code. | 6844 // WARNING: Do not edit - generated code. |
| 6845 | 6845 |
| 6846 | 6846 |
| 6847 @DocsEditable() | 6847 @DocsEditable() |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6963 @DomName('SVGViewElement.viewBox') | 6963 @DomName('SVGViewElement.viewBox') |
| 6964 @DocsEditable() | 6964 @DocsEditable() |
| 6965 AnimatedRect get viewBox => _blink.BlinkSVGViewElement.viewBox_Getter(this); | 6965 AnimatedRect get viewBox => _blink.BlinkSVGViewElement.viewBox_Getter(this); |
| 6966 | 6966 |
| 6967 @DomName('SVGViewElement.zoomAndPan') | 6967 @DomName('SVGViewElement.zoomAndPan') |
| 6968 @DocsEditable() | 6968 @DocsEditable() |
| 6969 int get zoomAndPan => _blink.BlinkSVGViewElement.zoomAndPan_Getter(this); | 6969 int get zoomAndPan => _blink.BlinkSVGViewElement.zoomAndPan_Getter(this); |
| 6970 | 6970 |
| 6971 @DomName('SVGViewElement.zoomAndPan') | 6971 @DomName('SVGViewElement.zoomAndPan') |
| 6972 @DocsEditable() | 6972 @DocsEditable() |
| 6973 void set zoomAndPan(int value) => _blink.BlinkSVGViewElement.zoomAndPan_Setter
_us(this, value); | 6973 void set zoomAndPan(int value) => _blink.BlinkSVGViewElement.zoomAndPan_Setter
(this, value); |
| 6974 | 6974 |
| 6975 } | 6975 } |
| 6976 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6976 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6977 // for details. All rights reserved. Use of this source code is governed by a | 6977 // for details. All rights reserved. Use of this source code is governed by a |
| 6978 // BSD-style license that can be found in the LICENSE file. | 6978 // BSD-style license that can be found in the LICENSE file. |
| 6979 | 6979 |
| 6980 // WARNING: Do not edit - generated code. | 6980 // WARNING: Do not edit - generated code. |
| 6981 | 6981 |
| 6982 | 6982 |
| 6983 @DocsEditable() | 6983 @DocsEditable() |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7022 AnimatedRect get viewBox => _blink.BlinkSVGViewSpec.viewBox_Getter(this); | 7022 AnimatedRect get viewBox => _blink.BlinkSVGViewSpec.viewBox_Getter(this); |
| 7023 | 7023 |
| 7024 @DomName('SVGViewSpec.zoomAndPan') | 7024 @DomName('SVGViewSpec.zoomAndPan') |
| 7025 @DocsEditable() | 7025 @DocsEditable() |
| 7026 @Experimental() // nonstandard | 7026 @Experimental() // nonstandard |
| 7027 int get zoomAndPan => _blink.BlinkSVGViewSpec.zoomAndPan_Getter(this); | 7027 int get zoomAndPan => _blink.BlinkSVGViewSpec.zoomAndPan_Getter(this); |
| 7028 | 7028 |
| 7029 @DomName('SVGViewSpec.zoomAndPan') | 7029 @DomName('SVGViewSpec.zoomAndPan') |
| 7030 @DocsEditable() | 7030 @DocsEditable() |
| 7031 @Experimental() // nonstandard | 7031 @Experimental() // nonstandard |
| 7032 void set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.zoomAndPan_Setter_us
(this, value); | 7032 void set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.zoomAndPan_Setter(th
is, value); |
| 7033 | 7033 |
| 7034 } | 7034 } |
| 7035 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7035 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7036 // for details. All rights reserved. Use of this source code is governed by a | 7036 // for details. All rights reserved. Use of this source code is governed by a |
| 7037 // BSD-style license that can be found in the LICENSE file. | 7037 // BSD-style license that can be found in the LICENSE file. |
| 7038 | 7038 |
| 7039 // WARNING: Do not edit - generated code. | 7039 // WARNING: Do not edit - generated code. |
| 7040 | 7040 |
| 7041 | 7041 |
| 7042 @DocsEditable() | 7042 @DocsEditable() |
| (...skipping 14 matching lines...) Expand all Loading... |
| 7057 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN') | 7057 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN') |
| 7058 @DocsEditable() | 7058 @DocsEditable() |
| 7059 static const int SVG_ZOOMANDPAN_UNKNOWN = 0; | 7059 static const int SVG_ZOOMANDPAN_UNKNOWN = 0; |
| 7060 | 7060 |
| 7061 @DomName('SVGZoomAndPan.zoomAndPan') | 7061 @DomName('SVGZoomAndPan.zoomAndPan') |
| 7062 @DocsEditable() | 7062 @DocsEditable() |
| 7063 int get zoomAndPan => _blink.BlinkSVGZoomAndPan.zoomAndPan_Getter(this); | 7063 int get zoomAndPan => _blink.BlinkSVGZoomAndPan.zoomAndPan_Getter(this); |
| 7064 | 7064 |
| 7065 @DomName('SVGZoomAndPan.zoomAndPan') | 7065 @DomName('SVGZoomAndPan.zoomAndPan') |
| 7066 @DocsEditable() | 7066 @DocsEditable() |
| 7067 void set zoomAndPan(int value) => _blink.BlinkSVGZoomAndPan.zoomAndPan_Setter_
us(this, value); | 7067 void set zoomAndPan(int value) => _blink.BlinkSVGZoomAndPan.zoomAndPan_Setter(
this, value); |
| 7068 | 7068 |
| 7069 } | 7069 } |
| 7070 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7070 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7071 // for details. All rights reserved. Use of this source code is governed by a | 7071 // for details. All rights reserved. Use of this source code is governed by a |
| 7072 // BSD-style license that can be found in the LICENSE file. | 7072 // BSD-style license that can be found in the LICENSE file. |
| 7073 | 7073 |
| 7074 // WARNING: Do not edit - generated code. | 7074 // WARNING: Do not edit - generated code. |
| 7075 | 7075 |
| 7076 | 7076 |
| 7077 @DocsEditable() | 7077 @DocsEditable() |
| (...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7527 @DocsEditable() | 7527 @DocsEditable() |
| 7528 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 7528 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); |
| 7529 /** | 7529 /** |
| 7530 * Constructor instantiated by the DOM when a custom element has been created. | 7530 * Constructor instantiated by the DOM when a custom element has been created. |
| 7531 * | 7531 * |
| 7532 * This can only be called by subclasses from their created constructor. | 7532 * This can only be called by subclasses from their created constructor. |
| 7533 */ | 7533 */ |
| 7534 _SVGVKernElement.created() : super.created(); | 7534 _SVGVKernElement.created() : super.created(); |
| 7535 | 7535 |
| 7536 } | 7536 } |
| OLD | NEW |