| OLD | NEW |
| 1 /** | 1 /** |
| 2 * Scalable Vector Graphics: | 2 * Scalable Vector Graphics: |
| 3 * Two-dimensional vector graphics with support for events and animation. | 3 * Two-dimensional vector graphics with support for events and animation. |
| 4 * | 4 * |
| 5 * For details about the features and syntax of SVG, a W3C standard, | 5 * For details about the features and syntax of SVG, a W3C standard, |
| 6 * refer to the | 6 * refer to the |
| 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). | 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). |
| 8 */ | 8 */ |
| 9 library dart.dom.svg; | 9 library dart.dom.svg; |
| 10 | 10 |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 | 346 |
| 347 @Deprecated("Internal Use Only") | 347 @Deprecated("Internal Use Only") |
| 348 static AElement internalCreateAElement() { | 348 static AElement internalCreateAElement() { |
| 349 return new AElement._internalWrap(); | 349 return new AElement._internalWrap(); |
| 350 } | 350 } |
| 351 | 351 |
| 352 factory AElement._internalWrap() { | 352 factory AElement._internalWrap() { |
| 353 return new AElement.internal_(); | 353 return new AElement.internal_(); |
| 354 } | 354 } |
| 355 | 355 |
| 356 @Deprecated("Internal Use Only") |
| 356 AElement.internal_() : super.internal_(); | 357 AElement.internal_() : super.internal_(); |
| 357 | 358 |
| 358 /** | 359 /** |
| 359 * Constructor instantiated by the DOM when a custom element has been created. | 360 * Constructor instantiated by the DOM when a custom element has been created. |
| 360 * | 361 * |
| 361 * This can only be called by subclasses from their created constructor. | 362 * This can only be called by subclasses from their created constructor. |
| 362 */ | 363 */ |
| 363 AElement.created() : super.created(); | 364 AElement.created() : super.created(); |
| 364 | 365 |
| 365 @DomName('SVGAElement.target') | 366 @DomName('SVGAElement.target') |
| (...skipping 29 matching lines...) Expand all Loading... |
| 395 | 396 |
| 396 @Deprecated("Internal Use Only") | 397 @Deprecated("Internal Use Only") |
| 397 static AltGlyphElement internalCreateAltGlyphElement() { | 398 static AltGlyphElement internalCreateAltGlyphElement() { |
| 398 return new AltGlyphElement._internalWrap(); | 399 return new AltGlyphElement._internalWrap(); |
| 399 } | 400 } |
| 400 | 401 |
| 401 factory AltGlyphElement._internalWrap() { | 402 factory AltGlyphElement._internalWrap() { |
| 402 return new AltGlyphElement.internal_(); | 403 return new AltGlyphElement.internal_(); |
| 403 } | 404 } |
| 404 | 405 |
| 406 @Deprecated("Internal Use Only") |
| 405 AltGlyphElement.internal_() : super.internal_(); | 407 AltGlyphElement.internal_() : super.internal_(); |
| 406 | 408 |
| 407 /** | 409 /** |
| 408 * Constructor instantiated by the DOM when a custom element has been created. | 410 * Constructor instantiated by the DOM when a custom element has been created. |
| 409 * | 411 * |
| 410 * This can only be called by subclasses from their created constructor. | 412 * This can only be called by subclasses from their created constructor. |
| 411 */ | 413 */ |
| 412 AltGlyphElement.created() : super.created(); | 414 AltGlyphElement.created() : super.created(); |
| 413 | 415 |
| 414 /// Checks if this type is supported on the current platform. | 416 /// Checks if this type is supported on the current platform. |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 | 453 |
| 452 @Deprecated("Internal Use Only") | 454 @Deprecated("Internal Use Only") |
| 453 static Angle internalCreateAngle() { | 455 static Angle internalCreateAngle() { |
| 454 return new Angle._internalWrap(); | 456 return new Angle._internalWrap(); |
| 455 } | 457 } |
| 456 | 458 |
| 457 factory Angle._internalWrap() { | 459 factory Angle._internalWrap() { |
| 458 return new Angle.internal_(); | 460 return new Angle.internal_(); |
| 459 } | 461 } |
| 460 | 462 |
| 463 @Deprecated("Internal Use Only") |
| 461 Angle.internal_() { } | 464 Angle.internal_() { } |
| 462 | 465 |
| 463 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 466 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 464 int get hashCode => unwrap_jso(this).hashCode; | 467 int get hashCode => unwrap_jso(this).hashCode; |
| 465 | 468 |
| 466 @DomName('SVGAngle.SVG_ANGLETYPE_DEG') | 469 @DomName('SVGAngle.SVG_ANGLETYPE_DEG') |
| 467 @DocsEditable() | 470 @DocsEditable() |
| 468 static const int SVG_ANGLETYPE_DEG = 2; | 471 static const int SVG_ANGLETYPE_DEG = 2; |
| 469 | 472 |
| 470 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD') | 473 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD') |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 | 547 |
| 545 @Deprecated("Internal Use Only") | 548 @Deprecated("Internal Use Only") |
| 546 static AnimateElement internalCreateAnimateElement() { | 549 static AnimateElement internalCreateAnimateElement() { |
| 547 return new AnimateElement._internalWrap(); | 550 return new AnimateElement._internalWrap(); |
| 548 } | 551 } |
| 549 | 552 |
| 550 factory AnimateElement._internalWrap() { | 553 factory AnimateElement._internalWrap() { |
| 551 return new AnimateElement.internal_(); | 554 return new AnimateElement.internal_(); |
| 552 } | 555 } |
| 553 | 556 |
| 557 @Deprecated("Internal Use Only") |
| 554 AnimateElement.internal_() : super.internal_(); | 558 AnimateElement.internal_() : super.internal_(); |
| 555 | 559 |
| 556 /** | 560 /** |
| 557 * Constructor instantiated by the DOM when a custom element has been created. | 561 * Constructor instantiated by the DOM when a custom element has been created. |
| 558 * | 562 * |
| 559 * This can only be called by subclasses from their created constructor. | 563 * This can only be called by subclasses from their created constructor. |
| 560 */ | 564 */ |
| 561 AnimateElement.created() : super.created(); | 565 AnimateElement.created() : super.created(); |
| 562 | 566 |
| 563 /// Checks if this type is supported on the current platform. | 567 /// Checks if this type is supported on the current platform. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 588 | 592 |
| 589 @Deprecated("Internal Use Only") | 593 @Deprecated("Internal Use Only") |
| 590 static AnimateMotionElement internalCreateAnimateMotionElement() { | 594 static AnimateMotionElement internalCreateAnimateMotionElement() { |
| 591 return new AnimateMotionElement._internalWrap(); | 595 return new AnimateMotionElement._internalWrap(); |
| 592 } | 596 } |
| 593 | 597 |
| 594 factory AnimateMotionElement._internalWrap() { | 598 factory AnimateMotionElement._internalWrap() { |
| 595 return new AnimateMotionElement.internal_(); | 599 return new AnimateMotionElement.internal_(); |
| 596 } | 600 } |
| 597 | 601 |
| 602 @Deprecated("Internal Use Only") |
| 598 AnimateMotionElement.internal_() : super.internal_(); | 603 AnimateMotionElement.internal_() : super.internal_(); |
| 599 | 604 |
| 600 /** | 605 /** |
| 601 * Constructor instantiated by the DOM when a custom element has been created. | 606 * Constructor instantiated by the DOM when a custom element has been created. |
| 602 * | 607 * |
| 603 * This can only be called by subclasses from their created constructor. | 608 * This can only be called by subclasses from their created constructor. |
| 604 */ | 609 */ |
| 605 AnimateMotionElement.created() : super.created(); | 610 AnimateMotionElement.created() : super.created(); |
| 606 | 611 |
| 607 /// Checks if this type is supported on the current platform. | 612 /// Checks if this type is supported on the current platform. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 632 | 637 |
| 633 @Deprecated("Internal Use Only") | 638 @Deprecated("Internal Use Only") |
| 634 static AnimateTransformElement internalCreateAnimateTransformElement() { | 639 static AnimateTransformElement internalCreateAnimateTransformElement() { |
| 635 return new AnimateTransformElement._internalWrap(); | 640 return new AnimateTransformElement._internalWrap(); |
| 636 } | 641 } |
| 637 | 642 |
| 638 factory AnimateTransformElement._internalWrap() { | 643 factory AnimateTransformElement._internalWrap() { |
| 639 return new AnimateTransformElement.internal_(); | 644 return new AnimateTransformElement.internal_(); |
| 640 } | 645 } |
| 641 | 646 |
| 647 @Deprecated("Internal Use Only") |
| 642 AnimateTransformElement.internal_() : super.internal_(); | 648 AnimateTransformElement.internal_() : super.internal_(); |
| 643 | 649 |
| 644 /** | 650 /** |
| 645 * Constructor instantiated by the DOM when a custom element has been created. | 651 * Constructor instantiated by the DOM when a custom element has been created. |
| 646 * | 652 * |
| 647 * This can only be called by subclasses from their created constructor. | 653 * This can only be called by subclasses from their created constructor. |
| 648 */ | 654 */ |
| 649 AnimateTransformElement.created() : super.created(); | 655 AnimateTransformElement.created() : super.created(); |
| 650 | 656 |
| 651 /// Checks if this type is supported on the current platform. | 657 /// Checks if this type is supported on the current platform. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 668 | 674 |
| 669 @Deprecated("Internal Use Only") | 675 @Deprecated("Internal Use Only") |
| 670 static AnimatedAngle internalCreateAnimatedAngle() { | 676 static AnimatedAngle internalCreateAnimatedAngle() { |
| 671 return new AnimatedAngle._internalWrap(); | 677 return new AnimatedAngle._internalWrap(); |
| 672 } | 678 } |
| 673 | 679 |
| 674 factory AnimatedAngle._internalWrap() { | 680 factory AnimatedAngle._internalWrap() { |
| 675 return new AnimatedAngle.internal_(); | 681 return new AnimatedAngle.internal_(); |
| 676 } | 682 } |
| 677 | 683 |
| 684 @Deprecated("Internal Use Only") |
| 678 AnimatedAngle.internal_() { } | 685 AnimatedAngle.internal_() { } |
| 679 | 686 |
| 680 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 687 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 681 int get hashCode => unwrap_jso(this).hashCode; | 688 int get hashCode => unwrap_jso(this).hashCode; |
| 682 | 689 |
| 683 @DomName('SVGAnimatedAngle.animVal') | 690 @DomName('SVGAnimatedAngle.animVal') |
| 684 @DocsEditable() | 691 @DocsEditable() |
| 685 Angle get animVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.animVal_Ge
tter_(unwrap_jso(this))); | 692 Angle get animVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.animVal_Ge
tter_(unwrap_jso(this))); |
| 686 | 693 |
| 687 @DomName('SVGAnimatedAngle.baseVal') | 694 @DomName('SVGAnimatedAngle.baseVal') |
| (...skipping 17 matching lines...) Expand all Loading... |
| 705 | 712 |
| 706 @Deprecated("Internal Use Only") | 713 @Deprecated("Internal Use Only") |
| 707 static AnimatedBoolean internalCreateAnimatedBoolean() { | 714 static AnimatedBoolean internalCreateAnimatedBoolean() { |
| 708 return new AnimatedBoolean._internalWrap(); | 715 return new AnimatedBoolean._internalWrap(); |
| 709 } | 716 } |
| 710 | 717 |
| 711 factory AnimatedBoolean._internalWrap() { | 718 factory AnimatedBoolean._internalWrap() { |
| 712 return new AnimatedBoolean.internal_(); | 719 return new AnimatedBoolean.internal_(); |
| 713 } | 720 } |
| 714 | 721 |
| 722 @Deprecated("Internal Use Only") |
| 715 AnimatedBoolean.internal_() { } | 723 AnimatedBoolean.internal_() { } |
| 716 | 724 |
| 717 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 725 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 718 int get hashCode => unwrap_jso(this).hashCode; | 726 int get hashCode => unwrap_jso(this).hashCode; |
| 719 | 727 |
| 720 @DomName('SVGAnimatedBoolean.animVal') | 728 @DomName('SVGAnimatedBoolean.animVal') |
| 721 @DocsEditable() | 729 @DocsEditable() |
| 722 bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(un
wrap_jso(this)); | 730 bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(un
wrap_jso(this)); |
| 723 | 731 |
| 724 @DomName('SVGAnimatedBoolean.baseVal') | 732 @DomName('SVGAnimatedBoolean.baseVal') |
| (...skipping 21 matching lines...) Expand all Loading... |
| 746 | 754 |
| 747 @Deprecated("Internal Use Only") | 755 @Deprecated("Internal Use Only") |
| 748 static AnimatedEnumeration internalCreateAnimatedEnumeration() { | 756 static AnimatedEnumeration internalCreateAnimatedEnumeration() { |
| 749 return new AnimatedEnumeration._internalWrap(); | 757 return new AnimatedEnumeration._internalWrap(); |
| 750 } | 758 } |
| 751 | 759 |
| 752 factory AnimatedEnumeration._internalWrap() { | 760 factory AnimatedEnumeration._internalWrap() { |
| 753 return new AnimatedEnumeration.internal_(); | 761 return new AnimatedEnumeration.internal_(); |
| 754 } | 762 } |
| 755 | 763 |
| 764 @Deprecated("Internal Use Only") |
| 756 AnimatedEnumeration.internal_() { } | 765 AnimatedEnumeration.internal_() { } |
| 757 | 766 |
| 758 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 767 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 759 int get hashCode => unwrap_jso(this).hashCode; | 768 int get hashCode => unwrap_jso(this).hashCode; |
| 760 | 769 |
| 761 @DomName('SVGAnimatedEnumeration.animVal') | 770 @DomName('SVGAnimatedEnumeration.animVal') |
| 762 @DocsEditable() | 771 @DocsEditable() |
| 763 int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_
(unwrap_jso(this)); | 772 int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_
(unwrap_jso(this)); |
| 764 | 773 |
| 765 @DomName('SVGAnimatedEnumeration.baseVal') | 774 @DomName('SVGAnimatedEnumeration.baseVal') |
| (...skipping 21 matching lines...) Expand all Loading... |
| 787 | 796 |
| 788 @Deprecated("Internal Use Only") | 797 @Deprecated("Internal Use Only") |
| 789 static AnimatedInteger internalCreateAnimatedInteger() { | 798 static AnimatedInteger internalCreateAnimatedInteger() { |
| 790 return new AnimatedInteger._internalWrap(); | 799 return new AnimatedInteger._internalWrap(); |
| 791 } | 800 } |
| 792 | 801 |
| 793 factory AnimatedInteger._internalWrap() { | 802 factory AnimatedInteger._internalWrap() { |
| 794 return new AnimatedInteger.internal_(); | 803 return new AnimatedInteger.internal_(); |
| 795 } | 804 } |
| 796 | 805 |
| 806 @Deprecated("Internal Use Only") |
| 797 AnimatedInteger.internal_() { } | 807 AnimatedInteger.internal_() { } |
| 798 | 808 |
| 799 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 809 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 800 int get hashCode => unwrap_jso(this).hashCode; | 810 int get hashCode => unwrap_jso(this).hashCode; |
| 801 | 811 |
| 802 @DomName('SVGAnimatedInteger.animVal') | 812 @DomName('SVGAnimatedInteger.animVal') |
| 803 @DocsEditable() | 813 @DocsEditable() |
| 804 int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(unw
rap_jso(this)); | 814 int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(unw
rap_jso(this)); |
| 805 | 815 |
| 806 @DomName('SVGAnimatedInteger.baseVal') | 816 @DomName('SVGAnimatedInteger.baseVal') |
| (...skipping 21 matching lines...) Expand all Loading... |
| 828 | 838 |
| 829 @Deprecated("Internal Use Only") | 839 @Deprecated("Internal Use Only") |
| 830 static AnimatedLength internalCreateAnimatedLength() { | 840 static AnimatedLength internalCreateAnimatedLength() { |
| 831 return new AnimatedLength._internalWrap(); | 841 return new AnimatedLength._internalWrap(); |
| 832 } | 842 } |
| 833 | 843 |
| 834 factory AnimatedLength._internalWrap() { | 844 factory AnimatedLength._internalWrap() { |
| 835 return new AnimatedLength.internal_(); | 845 return new AnimatedLength.internal_(); |
| 836 } | 846 } |
| 837 | 847 |
| 848 @Deprecated("Internal Use Only") |
| 838 AnimatedLength.internal_() { } | 849 AnimatedLength.internal_() { } |
| 839 | 850 |
| 840 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 851 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 841 int get hashCode => unwrap_jso(this).hashCode; | 852 int get hashCode => unwrap_jso(this).hashCode; |
| 842 | 853 |
| 843 @DomName('SVGAnimatedLength.animVal') | 854 @DomName('SVGAnimatedLength.animVal') |
| 844 @DocsEditable() | 855 @DocsEditable() |
| 845 Length get animVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.animVal_
Getter_(unwrap_jso(this))); | 856 Length get animVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.animVal_
Getter_(unwrap_jso(this))); |
| 846 | 857 |
| 847 @DomName('SVGAnimatedLength.baseVal') | 858 @DomName('SVGAnimatedLength.baseVal') |
| (...skipping 17 matching lines...) Expand all Loading... |
| 865 | 876 |
| 866 @Deprecated("Internal Use Only") | 877 @Deprecated("Internal Use Only") |
| 867 static AnimatedLengthList internalCreateAnimatedLengthList() { | 878 static AnimatedLengthList internalCreateAnimatedLengthList() { |
| 868 return new AnimatedLengthList._internalWrap(); | 879 return new AnimatedLengthList._internalWrap(); |
| 869 } | 880 } |
| 870 | 881 |
| 871 factory AnimatedLengthList._internalWrap() { | 882 factory AnimatedLengthList._internalWrap() { |
| 872 return new AnimatedLengthList.internal_(); | 883 return new AnimatedLengthList.internal_(); |
| 873 } | 884 } |
| 874 | 885 |
| 886 @Deprecated("Internal Use Only") |
| 875 AnimatedLengthList.internal_() { } | 887 AnimatedLengthList.internal_() { } |
| 876 | 888 |
| 877 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 889 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 878 int get hashCode => unwrap_jso(this).hashCode; | 890 int get hashCode => unwrap_jso(this).hashCode; |
| 879 | 891 |
| 880 @DomName('SVGAnimatedLengthList.animVal') | 892 @DomName('SVGAnimatedLengthList.animVal') |
| 881 @DocsEditable() | 893 @DocsEditable() |
| 882 LengthList get animVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
animVal_Getter_(unwrap_jso(this))); | 894 LengthList get animVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
animVal_Getter_(unwrap_jso(this))); |
| 883 | 895 |
| 884 @DomName('SVGAnimatedLengthList.baseVal') | 896 @DomName('SVGAnimatedLengthList.baseVal') |
| (...skipping 17 matching lines...) Expand all Loading... |
| 902 | 914 |
| 903 @Deprecated("Internal Use Only") | 915 @Deprecated("Internal Use Only") |
| 904 static AnimatedNumber internalCreateAnimatedNumber() { | 916 static AnimatedNumber internalCreateAnimatedNumber() { |
| 905 return new AnimatedNumber._internalWrap(); | 917 return new AnimatedNumber._internalWrap(); |
| 906 } | 918 } |
| 907 | 919 |
| 908 factory AnimatedNumber._internalWrap() { | 920 factory AnimatedNumber._internalWrap() { |
| 909 return new AnimatedNumber.internal_(); | 921 return new AnimatedNumber.internal_(); |
| 910 } | 922 } |
| 911 | 923 |
| 924 @Deprecated("Internal Use Only") |
| 912 AnimatedNumber.internal_() { } | 925 AnimatedNumber.internal_() { } |
| 913 | 926 |
| 914 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 927 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 915 int get hashCode => unwrap_jso(this).hashCode; | 928 int get hashCode => unwrap_jso(this).hashCode; |
| 916 | 929 |
| 917 @DomName('SVGAnimatedNumber.animVal') | 930 @DomName('SVGAnimatedNumber.animVal') |
| 918 @DocsEditable() | 931 @DocsEditable() |
| 919 num get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(unwr
ap_jso(this)); | 932 num get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(unwr
ap_jso(this)); |
| 920 | 933 |
| 921 @DomName('SVGAnimatedNumber.baseVal') | 934 @DomName('SVGAnimatedNumber.baseVal') |
| (...skipping 21 matching lines...) Expand all Loading... |
| 943 | 956 |
| 944 @Deprecated("Internal Use Only") | 957 @Deprecated("Internal Use Only") |
| 945 static AnimatedNumberList internalCreateAnimatedNumberList() { | 958 static AnimatedNumberList internalCreateAnimatedNumberList() { |
| 946 return new AnimatedNumberList._internalWrap(); | 959 return new AnimatedNumberList._internalWrap(); |
| 947 } | 960 } |
| 948 | 961 |
| 949 factory AnimatedNumberList._internalWrap() { | 962 factory AnimatedNumberList._internalWrap() { |
| 950 return new AnimatedNumberList.internal_(); | 963 return new AnimatedNumberList.internal_(); |
| 951 } | 964 } |
| 952 | 965 |
| 966 @Deprecated("Internal Use Only") |
| 953 AnimatedNumberList.internal_() { } | 967 AnimatedNumberList.internal_() { } |
| 954 | 968 |
| 955 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 969 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 956 int get hashCode => unwrap_jso(this).hashCode; | 970 int get hashCode => unwrap_jso(this).hashCode; |
| 957 | 971 |
| 958 @DomName('SVGAnimatedNumberList.animVal') | 972 @DomName('SVGAnimatedNumberList.animVal') |
| 959 @DocsEditable() | 973 @DocsEditable() |
| 960 NumberList get animVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
animVal_Getter_(unwrap_jso(this))); | 974 NumberList get animVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
animVal_Getter_(unwrap_jso(this))); |
| 961 | 975 |
| 962 @DomName('SVGAnimatedNumberList.baseVal') | 976 @DomName('SVGAnimatedNumberList.baseVal') |
| (...skipping 17 matching lines...) Expand all Loading... |
| 980 | 994 |
| 981 @Deprecated("Internal Use Only") | 995 @Deprecated("Internal Use Only") |
| 982 static AnimatedPreserveAspectRatio internalCreateAnimatedPreserveAspectRatio()
{ | 996 static AnimatedPreserveAspectRatio internalCreateAnimatedPreserveAspectRatio()
{ |
| 983 return new AnimatedPreserveAspectRatio._internalWrap(); | 997 return new AnimatedPreserveAspectRatio._internalWrap(); |
| 984 } | 998 } |
| 985 | 999 |
| 986 factory AnimatedPreserveAspectRatio._internalWrap() { | 1000 factory AnimatedPreserveAspectRatio._internalWrap() { |
| 987 return new AnimatedPreserveAspectRatio.internal_(); | 1001 return new AnimatedPreserveAspectRatio.internal_(); |
| 988 } | 1002 } |
| 989 | 1003 |
| 1004 @Deprecated("Internal Use Only") |
| 990 AnimatedPreserveAspectRatio.internal_() { } | 1005 AnimatedPreserveAspectRatio.internal_() { } |
| 991 | 1006 |
| 992 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1007 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 993 int get hashCode => unwrap_jso(this).hashCode; | 1008 int get hashCode => unwrap_jso(this).hashCode; |
| 994 | 1009 |
| 995 @DomName('SVGAnimatedPreserveAspectRatio.animVal') | 1010 @DomName('SVGAnimatedPreserveAspectRatio.animVal') |
| 996 @DocsEditable() | 1011 @DocsEditable() |
| 997 PreserveAspectRatio get animVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.animVal_Getter_(unwrap_jso(this))); | 1012 PreserveAspectRatio get animVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.animVal_Getter_(unwrap_jso(this))); |
| 998 | 1013 |
| 999 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') | 1014 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') |
| (...skipping 17 matching lines...) Expand all Loading... |
| 1017 | 1032 |
| 1018 @Deprecated("Internal Use Only") | 1033 @Deprecated("Internal Use Only") |
| 1019 static AnimatedRect internalCreateAnimatedRect() { | 1034 static AnimatedRect internalCreateAnimatedRect() { |
| 1020 return new AnimatedRect._internalWrap(); | 1035 return new AnimatedRect._internalWrap(); |
| 1021 } | 1036 } |
| 1022 | 1037 |
| 1023 factory AnimatedRect._internalWrap() { | 1038 factory AnimatedRect._internalWrap() { |
| 1024 return new AnimatedRect.internal_(); | 1039 return new AnimatedRect.internal_(); |
| 1025 } | 1040 } |
| 1026 | 1041 |
| 1042 @Deprecated("Internal Use Only") |
| 1027 AnimatedRect.internal_() { } | 1043 AnimatedRect.internal_() { } |
| 1028 | 1044 |
| 1029 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1045 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 1030 int get hashCode => unwrap_jso(this).hashCode; | 1046 int get hashCode => unwrap_jso(this).hashCode; |
| 1031 | 1047 |
| 1032 @DomName('SVGAnimatedRect.animVal') | 1048 @DomName('SVGAnimatedRect.animVal') |
| 1033 @DocsEditable() | 1049 @DocsEditable() |
| 1034 Rect get animVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.animVal_Gett
er_(unwrap_jso(this))); | 1050 Rect get animVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.animVal_Gett
er_(unwrap_jso(this))); |
| 1035 | 1051 |
| 1036 @DomName('SVGAnimatedRect.baseVal') | 1052 @DomName('SVGAnimatedRect.baseVal') |
| (...skipping 17 matching lines...) Expand all Loading... |
| 1054 | 1070 |
| 1055 @Deprecated("Internal Use Only") | 1071 @Deprecated("Internal Use Only") |
| 1056 static AnimatedString internalCreateAnimatedString() { | 1072 static AnimatedString internalCreateAnimatedString() { |
| 1057 return new AnimatedString._internalWrap(); | 1073 return new AnimatedString._internalWrap(); |
| 1058 } | 1074 } |
| 1059 | 1075 |
| 1060 factory AnimatedString._internalWrap() { | 1076 factory AnimatedString._internalWrap() { |
| 1061 return new AnimatedString.internal_(); | 1077 return new AnimatedString.internal_(); |
| 1062 } | 1078 } |
| 1063 | 1079 |
| 1080 @Deprecated("Internal Use Only") |
| 1064 AnimatedString.internal_() { } | 1081 AnimatedString.internal_() { } |
| 1065 | 1082 |
| 1066 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1083 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 1067 int get hashCode => unwrap_jso(this).hashCode; | 1084 int get hashCode => unwrap_jso(this).hashCode; |
| 1068 | 1085 |
| 1069 @DomName('SVGAnimatedString.animVal') | 1086 @DomName('SVGAnimatedString.animVal') |
| 1070 @DocsEditable() | 1087 @DocsEditable() |
| 1071 String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(u
nwrap_jso(this)); | 1088 String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(u
nwrap_jso(this)); |
| 1072 | 1089 |
| 1073 @DomName('SVGAnimatedString.baseVal') | 1090 @DomName('SVGAnimatedString.baseVal') |
| (...skipping 21 matching lines...) Expand all Loading... |
| 1095 | 1112 |
| 1096 @Deprecated("Internal Use Only") | 1113 @Deprecated("Internal Use Only") |
| 1097 static AnimatedTransformList internalCreateAnimatedTransformList() { | 1114 static AnimatedTransformList internalCreateAnimatedTransformList() { |
| 1098 return new AnimatedTransformList._internalWrap(); | 1115 return new AnimatedTransformList._internalWrap(); |
| 1099 } | 1116 } |
| 1100 | 1117 |
| 1101 factory AnimatedTransformList._internalWrap() { | 1118 factory AnimatedTransformList._internalWrap() { |
| 1102 return new AnimatedTransformList.internal_(); | 1119 return new AnimatedTransformList.internal_(); |
| 1103 } | 1120 } |
| 1104 | 1121 |
| 1122 @Deprecated("Internal Use Only") |
| 1105 AnimatedTransformList.internal_() { } | 1123 AnimatedTransformList.internal_() { } |
| 1106 | 1124 |
| 1107 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1125 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 1108 int get hashCode => unwrap_jso(this).hashCode; | 1126 int get hashCode => unwrap_jso(this).hashCode; |
| 1109 | 1127 |
| 1110 @DomName('SVGAnimatedTransformList.animVal') | 1128 @DomName('SVGAnimatedTransformList.animVal') |
| 1111 @DocsEditable() | 1129 @DocsEditable() |
| 1112 TransformList get animVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.animVal_Getter_(unwrap_jso(this))); | 1130 TransformList get animVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.animVal_Getter_(unwrap_jso(this))); |
| 1113 | 1131 |
| 1114 @DomName('SVGAnimatedTransformList.baseVal') | 1132 @DomName('SVGAnimatedTransformList.baseVal') |
| (...skipping 22 matching lines...) Expand all Loading... |
| 1137 | 1155 |
| 1138 @Deprecated("Internal Use Only") | 1156 @Deprecated("Internal Use Only") |
| 1139 static AnimationElement internalCreateAnimationElement() { | 1157 static AnimationElement internalCreateAnimationElement() { |
| 1140 return new AnimationElement._internalWrap(); | 1158 return new AnimationElement._internalWrap(); |
| 1141 } | 1159 } |
| 1142 | 1160 |
| 1143 factory AnimationElement._internalWrap() { | 1161 factory AnimationElement._internalWrap() { |
| 1144 return new AnimationElement.internal_(); | 1162 return new AnimationElement.internal_(); |
| 1145 } | 1163 } |
| 1146 | 1164 |
| 1165 @Deprecated("Internal Use Only") |
| 1147 AnimationElement.internal_() : super.internal_(); | 1166 AnimationElement.internal_() : super.internal_(); |
| 1148 | 1167 |
| 1149 /** | 1168 /** |
| 1150 * Constructor instantiated by the DOM when a custom element has been created. | 1169 * Constructor instantiated by the DOM when a custom element has been created. |
| 1151 * | 1170 * |
| 1152 * This can only be called by subclasses from their created constructor. | 1171 * This can only be called by subclasses from their created constructor. |
| 1153 */ | 1172 */ |
| 1154 AnimationElement.created() : super.created(); | 1173 AnimationElement.created() : super.created(); |
| 1155 | 1174 |
| 1156 @DomName('SVGAnimationElement.targetElement') | 1175 @DomName('SVGAnimationElement.targetElement') |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1223 | 1242 |
| 1224 @Deprecated("Internal Use Only") | 1243 @Deprecated("Internal Use Only") |
| 1225 static CircleElement internalCreateCircleElement() { | 1244 static CircleElement internalCreateCircleElement() { |
| 1226 return new CircleElement._internalWrap(); | 1245 return new CircleElement._internalWrap(); |
| 1227 } | 1246 } |
| 1228 | 1247 |
| 1229 factory CircleElement._internalWrap() { | 1248 factory CircleElement._internalWrap() { |
| 1230 return new CircleElement.internal_(); | 1249 return new CircleElement.internal_(); |
| 1231 } | 1250 } |
| 1232 | 1251 |
| 1252 @Deprecated("Internal Use Only") |
| 1233 CircleElement.internal_() : super.internal_(); | 1253 CircleElement.internal_() : super.internal_(); |
| 1234 | 1254 |
| 1235 /** | 1255 /** |
| 1236 * Constructor instantiated by the DOM when a custom element has been created. | 1256 * Constructor instantiated by the DOM when a custom element has been created. |
| 1237 * | 1257 * |
| 1238 * This can only be called by subclasses from their created constructor. | 1258 * This can only be called by subclasses from their created constructor. |
| 1239 */ | 1259 */ |
| 1240 CircleElement.created() : super.created(); | 1260 CircleElement.created() : super.created(); |
| 1241 | 1261 |
| 1242 @DomName('SVGCircleElement.cx') | 1262 @DomName('SVGCircleElement.cx') |
| (...skipping 30 matching lines...) Expand all Loading... |
| 1273 | 1293 |
| 1274 @Deprecated("Internal Use Only") | 1294 @Deprecated("Internal Use Only") |
| 1275 static ClipPathElement internalCreateClipPathElement() { | 1295 static ClipPathElement internalCreateClipPathElement() { |
| 1276 return new ClipPathElement._internalWrap(); | 1296 return new ClipPathElement._internalWrap(); |
| 1277 } | 1297 } |
| 1278 | 1298 |
| 1279 factory ClipPathElement._internalWrap() { | 1299 factory ClipPathElement._internalWrap() { |
| 1280 return new ClipPathElement.internal_(); | 1300 return new ClipPathElement.internal_(); |
| 1281 } | 1301 } |
| 1282 | 1302 |
| 1303 @Deprecated("Internal Use Only") |
| 1283 ClipPathElement.internal_() : super.internal_(); | 1304 ClipPathElement.internal_() : super.internal_(); |
| 1284 | 1305 |
| 1285 /** | 1306 /** |
| 1286 * Constructor instantiated by the DOM when a custom element has been created. | 1307 * Constructor instantiated by the DOM when a custom element has been created. |
| 1287 * | 1308 * |
| 1288 * This can only be called by subclasses from their created constructor. | 1309 * This can only be called by subclasses from their created constructor. |
| 1289 */ | 1310 */ |
| 1290 ClipPathElement.created() : super.created(); | 1311 ClipPathElement.created() : super.created(); |
| 1291 | 1312 |
| 1292 @DomName('SVGClipPathElement.clipPathUnits') | 1313 @DomName('SVGClipPathElement.clipPathUnits') |
| (...skipping 22 matching lines...) Expand all Loading... |
| 1315 | 1336 |
| 1316 @Deprecated("Internal Use Only") | 1337 @Deprecated("Internal Use Only") |
| 1317 static DefsElement internalCreateDefsElement() { | 1338 static DefsElement internalCreateDefsElement() { |
| 1318 return new DefsElement._internalWrap(); | 1339 return new DefsElement._internalWrap(); |
| 1319 } | 1340 } |
| 1320 | 1341 |
| 1321 factory DefsElement._internalWrap() { | 1342 factory DefsElement._internalWrap() { |
| 1322 return new DefsElement.internal_(); | 1343 return new DefsElement.internal_(); |
| 1323 } | 1344 } |
| 1324 | 1345 |
| 1346 @Deprecated("Internal Use Only") |
| 1325 DefsElement.internal_() : super.internal_(); | 1347 DefsElement.internal_() : super.internal_(); |
| 1326 | 1348 |
| 1327 /** | 1349 /** |
| 1328 * Constructor instantiated by the DOM when a custom element has been created. | 1350 * Constructor instantiated by the DOM when a custom element has been created. |
| 1329 * | 1351 * |
| 1330 * This can only be called by subclasses from their created constructor. | 1352 * This can only be called by subclasses from their created constructor. |
| 1331 */ | 1353 */ |
| 1332 DefsElement.created() : super.created(); | 1354 DefsElement.created() : super.created(); |
| 1333 | 1355 |
| 1334 } | 1356 } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 1353 | 1375 |
| 1354 @Deprecated("Internal Use Only") | 1376 @Deprecated("Internal Use Only") |
| 1355 static DescElement internalCreateDescElement() { | 1377 static DescElement internalCreateDescElement() { |
| 1356 return new DescElement._internalWrap(); | 1378 return new DescElement._internalWrap(); |
| 1357 } | 1379 } |
| 1358 | 1380 |
| 1359 factory DescElement._internalWrap() { | 1381 factory DescElement._internalWrap() { |
| 1360 return new DescElement.internal_(); | 1382 return new DescElement.internal_(); |
| 1361 } | 1383 } |
| 1362 | 1384 |
| 1385 @Deprecated("Internal Use Only") |
| 1363 DescElement.internal_() : super.internal_(); | 1386 DescElement.internal_() : super.internal_(); |
| 1364 | 1387 |
| 1365 /** | 1388 /** |
| 1366 * Constructor instantiated by the DOM when a custom element has been created. | 1389 * Constructor instantiated by the DOM when a custom element has been created. |
| 1367 * | 1390 * |
| 1368 * This can only be called by subclasses from their created constructor. | 1391 * This can only be called by subclasses from their created constructor. |
| 1369 */ | 1392 */ |
| 1370 DescElement.created() : super.created(); | 1393 DescElement.created() : super.created(); |
| 1371 | 1394 |
| 1372 } | 1395 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 1387 | 1410 |
| 1388 @Deprecated("Internal Use Only") | 1411 @Deprecated("Internal Use Only") |
| 1389 static DiscardElement internalCreateDiscardElement() { | 1412 static DiscardElement internalCreateDiscardElement() { |
| 1390 return new DiscardElement._internalWrap(); | 1413 return new DiscardElement._internalWrap(); |
| 1391 } | 1414 } |
| 1392 | 1415 |
| 1393 factory DiscardElement._internalWrap() { | 1416 factory DiscardElement._internalWrap() { |
| 1394 return new DiscardElement.internal_(); | 1417 return new DiscardElement.internal_(); |
| 1395 } | 1418 } |
| 1396 | 1419 |
| 1420 @Deprecated("Internal Use Only") |
| 1397 DiscardElement.internal_() : super.internal_(); | 1421 DiscardElement.internal_() : super.internal_(); |
| 1398 | 1422 |
| 1399 /** | 1423 /** |
| 1400 * Constructor instantiated by the DOM when a custom element has been created. | 1424 * Constructor instantiated by the DOM when a custom element has been created. |
| 1401 * | 1425 * |
| 1402 * This can only be called by subclasses from their created constructor. | 1426 * This can only be called by subclasses from their created constructor. |
| 1403 */ | 1427 */ |
| 1404 DiscardElement.created() : super.created(); | 1428 DiscardElement.created() : super.created(); |
| 1405 | 1429 |
| 1406 } | 1430 } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 1425 | 1449 |
| 1426 @Deprecated("Internal Use Only") | 1450 @Deprecated("Internal Use Only") |
| 1427 static EllipseElement internalCreateEllipseElement() { | 1451 static EllipseElement internalCreateEllipseElement() { |
| 1428 return new EllipseElement._internalWrap(); | 1452 return new EllipseElement._internalWrap(); |
| 1429 } | 1453 } |
| 1430 | 1454 |
| 1431 factory EllipseElement._internalWrap() { | 1455 factory EllipseElement._internalWrap() { |
| 1432 return new EllipseElement.internal_(); | 1456 return new EllipseElement.internal_(); |
| 1433 } | 1457 } |
| 1434 | 1458 |
| 1459 @Deprecated("Internal Use Only") |
| 1435 EllipseElement.internal_() : super.internal_(); | 1460 EllipseElement.internal_() : super.internal_(); |
| 1436 | 1461 |
| 1437 /** | 1462 /** |
| 1438 * Constructor instantiated by the DOM when a custom element has been created. | 1463 * Constructor instantiated by the DOM when a custom element has been created. |
| 1439 * | 1464 * |
| 1440 * This can only be called by subclasses from their created constructor. | 1465 * This can only be called by subclasses from their created constructor. |
| 1441 */ | 1466 */ |
| 1442 EllipseElement.created() : super.created(); | 1467 EllipseElement.created() : super.created(); |
| 1443 | 1468 |
| 1444 @DomName('SVGEllipseElement.cx') | 1469 @DomName('SVGEllipseElement.cx') |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1483 | 1508 |
| 1484 @Deprecated("Internal Use Only") | 1509 @Deprecated("Internal Use Only") |
| 1485 static FEBlendElement internalCreateFEBlendElement() { | 1510 static FEBlendElement internalCreateFEBlendElement() { |
| 1486 return new FEBlendElement._internalWrap(); | 1511 return new FEBlendElement._internalWrap(); |
| 1487 } | 1512 } |
| 1488 | 1513 |
| 1489 factory FEBlendElement._internalWrap() { | 1514 factory FEBlendElement._internalWrap() { |
| 1490 return new FEBlendElement.internal_(); | 1515 return new FEBlendElement.internal_(); |
| 1491 } | 1516 } |
| 1492 | 1517 |
| 1518 @Deprecated("Internal Use Only") |
| 1493 FEBlendElement.internal_() : super.internal_(); | 1519 FEBlendElement.internal_() : super.internal_(); |
| 1494 | 1520 |
| 1495 /** | 1521 /** |
| 1496 * Constructor instantiated by the DOM when a custom element has been created. | 1522 * Constructor instantiated by the DOM when a custom element has been created. |
| 1497 * | 1523 * |
| 1498 * This can only be called by subclasses from their created constructor. | 1524 * This can only be called by subclasses from their created constructor. |
| 1499 */ | 1525 */ |
| 1500 FEBlendElement.created() : super.created(); | 1526 FEBlendElement.created() : super.created(); |
| 1501 | 1527 |
| 1502 /// Checks if this type is supported on the current platform. | 1528 /// Checks if this type is supported on the current platform. |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1584 | 1610 |
| 1585 @Deprecated("Internal Use Only") | 1611 @Deprecated("Internal Use Only") |
| 1586 static FEColorMatrixElement internalCreateFEColorMatrixElement() { | 1612 static FEColorMatrixElement internalCreateFEColorMatrixElement() { |
| 1587 return new FEColorMatrixElement._internalWrap(); | 1613 return new FEColorMatrixElement._internalWrap(); |
| 1588 } | 1614 } |
| 1589 | 1615 |
| 1590 factory FEColorMatrixElement._internalWrap() { | 1616 factory FEColorMatrixElement._internalWrap() { |
| 1591 return new FEColorMatrixElement.internal_(); | 1617 return new FEColorMatrixElement.internal_(); |
| 1592 } | 1618 } |
| 1593 | 1619 |
| 1620 @Deprecated("Internal Use Only") |
| 1594 FEColorMatrixElement.internal_() : super.internal_(); | 1621 FEColorMatrixElement.internal_() : super.internal_(); |
| 1595 | 1622 |
| 1596 /** | 1623 /** |
| 1597 * Constructor instantiated by the DOM when a custom element has been created. | 1624 * Constructor instantiated by the DOM when a custom element has been created. |
| 1598 * | 1625 * |
| 1599 * This can only be called by subclasses from their created constructor. | 1626 * This can only be called by subclasses from their created constructor. |
| 1600 */ | 1627 */ |
| 1601 FEColorMatrixElement.created() : super.created(); | 1628 FEColorMatrixElement.created() : super.created(); |
| 1602 | 1629 |
| 1603 /// Checks if this type is supported on the current platform. | 1630 /// Checks if this type is supported on the current platform. |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1681 | 1708 |
| 1682 @Deprecated("Internal Use Only") | 1709 @Deprecated("Internal Use Only") |
| 1683 static FEComponentTransferElement internalCreateFEComponentTransferElement() { | 1710 static FEComponentTransferElement internalCreateFEComponentTransferElement() { |
| 1684 return new FEComponentTransferElement._internalWrap(); | 1711 return new FEComponentTransferElement._internalWrap(); |
| 1685 } | 1712 } |
| 1686 | 1713 |
| 1687 factory FEComponentTransferElement._internalWrap() { | 1714 factory FEComponentTransferElement._internalWrap() { |
| 1688 return new FEComponentTransferElement.internal_(); | 1715 return new FEComponentTransferElement.internal_(); |
| 1689 } | 1716 } |
| 1690 | 1717 |
| 1718 @Deprecated("Internal Use Only") |
| 1691 FEComponentTransferElement.internal_() : super.internal_(); | 1719 FEComponentTransferElement.internal_() : super.internal_(); |
| 1692 | 1720 |
| 1693 /** | 1721 /** |
| 1694 * Constructor instantiated by the DOM when a custom element has been created. | 1722 * Constructor instantiated by the DOM when a custom element has been created. |
| 1695 * | 1723 * |
| 1696 * This can only be called by subclasses from their created constructor. | 1724 * This can only be called by subclasses from their created constructor. |
| 1697 */ | 1725 */ |
| 1698 FEComponentTransferElement.created() : super.created(); | 1726 FEComponentTransferElement.created() : super.created(); |
| 1699 | 1727 |
| 1700 /// Checks if this type is supported on the current platform. | 1728 /// Checks if this type is supported on the current platform. |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1742 | 1770 |
| 1743 @Deprecated("Internal Use Only") | 1771 @Deprecated("Internal Use Only") |
| 1744 static FECompositeElement internalCreateFECompositeElement() { | 1772 static FECompositeElement internalCreateFECompositeElement() { |
| 1745 return new FECompositeElement._internalWrap(); | 1773 return new FECompositeElement._internalWrap(); |
| 1746 } | 1774 } |
| 1747 | 1775 |
| 1748 factory FECompositeElement._internalWrap() { | 1776 factory FECompositeElement._internalWrap() { |
| 1749 return new FECompositeElement.internal_(); | 1777 return new FECompositeElement.internal_(); |
| 1750 } | 1778 } |
| 1751 | 1779 |
| 1780 @Deprecated("Internal Use Only") |
| 1752 FECompositeElement.internal_() : super.internal_(); | 1781 FECompositeElement.internal_() : super.internal_(); |
| 1753 | 1782 |
| 1754 /** | 1783 /** |
| 1755 * Constructor instantiated by the DOM when a custom element has been created. | 1784 * Constructor instantiated by the DOM when a custom element has been created. |
| 1756 * | 1785 * |
| 1757 * This can only be called by subclasses from their created constructor. | 1786 * This can only be called by subclasses from their created constructor. |
| 1758 */ | 1787 */ |
| 1759 FECompositeElement.created() : super.created(); | 1788 FECompositeElement.created() : super.created(); |
| 1760 | 1789 |
| 1761 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC') | 1790 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC') |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1860 | 1889 |
| 1861 @Deprecated("Internal Use Only") | 1890 @Deprecated("Internal Use Only") |
| 1862 static FEConvolveMatrixElement internalCreateFEConvolveMatrixElement() { | 1891 static FEConvolveMatrixElement internalCreateFEConvolveMatrixElement() { |
| 1863 return new FEConvolveMatrixElement._internalWrap(); | 1892 return new FEConvolveMatrixElement._internalWrap(); |
| 1864 } | 1893 } |
| 1865 | 1894 |
| 1866 factory FEConvolveMatrixElement._internalWrap() { | 1895 factory FEConvolveMatrixElement._internalWrap() { |
| 1867 return new FEConvolveMatrixElement.internal_(); | 1896 return new FEConvolveMatrixElement.internal_(); |
| 1868 } | 1897 } |
| 1869 | 1898 |
| 1899 @Deprecated("Internal Use Only") |
| 1870 FEConvolveMatrixElement.internal_() : super.internal_(); | 1900 FEConvolveMatrixElement.internal_() : super.internal_(); |
| 1871 | 1901 |
| 1872 /** | 1902 /** |
| 1873 * Constructor instantiated by the DOM when a custom element has been created. | 1903 * Constructor instantiated by the DOM when a custom element has been created. |
| 1874 * | 1904 * |
| 1875 * This can only be called by subclasses from their created constructor. | 1905 * This can only be called by subclasses from their created constructor. |
| 1876 */ | 1906 */ |
| 1877 FEConvolveMatrixElement.created() : super.created(); | 1907 FEConvolveMatrixElement.created() : super.created(); |
| 1878 | 1908 |
| 1879 /// Checks if this type is supported on the current platform. | 1909 /// Checks if this type is supported on the current platform. |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1989 | 2019 |
| 1990 @Deprecated("Internal Use Only") | 2020 @Deprecated("Internal Use Only") |
| 1991 static FEDiffuseLightingElement internalCreateFEDiffuseLightingElement() { | 2021 static FEDiffuseLightingElement internalCreateFEDiffuseLightingElement() { |
| 1992 return new FEDiffuseLightingElement._internalWrap(); | 2022 return new FEDiffuseLightingElement._internalWrap(); |
| 1993 } | 2023 } |
| 1994 | 2024 |
| 1995 factory FEDiffuseLightingElement._internalWrap() { | 2025 factory FEDiffuseLightingElement._internalWrap() { |
| 1996 return new FEDiffuseLightingElement.internal_(); | 2026 return new FEDiffuseLightingElement.internal_(); |
| 1997 } | 2027 } |
| 1998 | 2028 |
| 2029 @Deprecated("Internal Use Only") |
| 1999 FEDiffuseLightingElement.internal_() : super.internal_(); | 2030 FEDiffuseLightingElement.internal_() : super.internal_(); |
| 2000 | 2031 |
| 2001 /** | 2032 /** |
| 2002 * Constructor instantiated by the DOM when a custom element has been created. | 2033 * Constructor instantiated by the DOM when a custom element has been created. |
| 2003 * | 2034 * |
| 2004 * This can only be called by subclasses from their created constructor. | 2035 * This can only be called by subclasses from their created constructor. |
| 2005 */ | 2036 */ |
| 2006 FEDiffuseLightingElement.created() : super.created(); | 2037 FEDiffuseLightingElement.created() : super.created(); |
| 2007 | 2038 |
| 2008 /// Checks if this type is supported on the current platform. | 2039 /// Checks if this type is supported on the current platform. |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2074 | 2105 |
| 2075 @Deprecated("Internal Use Only") | 2106 @Deprecated("Internal Use Only") |
| 2076 static FEDisplacementMapElement internalCreateFEDisplacementMapElement() { | 2107 static FEDisplacementMapElement internalCreateFEDisplacementMapElement() { |
| 2077 return new FEDisplacementMapElement._internalWrap(); | 2108 return new FEDisplacementMapElement._internalWrap(); |
| 2078 } | 2109 } |
| 2079 | 2110 |
| 2080 factory FEDisplacementMapElement._internalWrap() { | 2111 factory FEDisplacementMapElement._internalWrap() { |
| 2081 return new FEDisplacementMapElement.internal_(); | 2112 return new FEDisplacementMapElement.internal_(); |
| 2082 } | 2113 } |
| 2083 | 2114 |
| 2115 @Deprecated("Internal Use Only") |
| 2084 FEDisplacementMapElement.internal_() : super.internal_(); | 2116 FEDisplacementMapElement.internal_() : super.internal_(); |
| 2085 | 2117 |
| 2086 /** | 2118 /** |
| 2087 * Constructor instantiated by the DOM when a custom element has been created. | 2119 * Constructor instantiated by the DOM when a custom element has been created. |
| 2088 * | 2120 * |
| 2089 * This can only be called by subclasses from their created constructor. | 2121 * This can only be called by subclasses from their created constructor. |
| 2090 */ | 2122 */ |
| 2091 FEDisplacementMapElement.created() : super.created(); | 2123 FEDisplacementMapElement.created() : super.created(); |
| 2092 | 2124 |
| 2093 /// Checks if this type is supported on the current platform. | 2125 /// Checks if this type is supported on the current platform. |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2179 | 2211 |
| 2180 @Deprecated("Internal Use Only") | 2212 @Deprecated("Internal Use Only") |
| 2181 static FEDistantLightElement internalCreateFEDistantLightElement() { | 2213 static FEDistantLightElement internalCreateFEDistantLightElement() { |
| 2182 return new FEDistantLightElement._internalWrap(); | 2214 return new FEDistantLightElement._internalWrap(); |
| 2183 } | 2215 } |
| 2184 | 2216 |
| 2185 factory FEDistantLightElement._internalWrap() { | 2217 factory FEDistantLightElement._internalWrap() { |
| 2186 return new FEDistantLightElement.internal_(); | 2218 return new FEDistantLightElement.internal_(); |
| 2187 } | 2219 } |
| 2188 | 2220 |
| 2221 @Deprecated("Internal Use Only") |
| 2189 FEDistantLightElement.internal_() : super.internal_(); | 2222 FEDistantLightElement.internal_() : super.internal_(); |
| 2190 | 2223 |
| 2191 /** | 2224 /** |
| 2192 * Constructor instantiated by the DOM when a custom element has been created. | 2225 * Constructor instantiated by the DOM when a custom element has been created. |
| 2193 * | 2226 * |
| 2194 * This can only be called by subclasses from their created constructor. | 2227 * This can only be called by subclasses from their created constructor. |
| 2195 */ | 2228 */ |
| 2196 FEDistantLightElement.created() : super.created(); | 2229 FEDistantLightElement.created() : super.created(); |
| 2197 | 2230 |
| 2198 /// Checks if this type is supported on the current platform. | 2231 /// Checks if this type is supported on the current platform. |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2232 | 2265 |
| 2233 @Deprecated("Internal Use Only") | 2266 @Deprecated("Internal Use Only") |
| 2234 static FEFloodElement internalCreateFEFloodElement() { | 2267 static FEFloodElement internalCreateFEFloodElement() { |
| 2235 return new FEFloodElement._internalWrap(); | 2268 return new FEFloodElement._internalWrap(); |
| 2236 } | 2269 } |
| 2237 | 2270 |
| 2238 factory FEFloodElement._internalWrap() { | 2271 factory FEFloodElement._internalWrap() { |
| 2239 return new FEFloodElement.internal_(); | 2272 return new FEFloodElement.internal_(); |
| 2240 } | 2273 } |
| 2241 | 2274 |
| 2275 @Deprecated("Internal Use Only") |
| 2242 FEFloodElement.internal_() : super.internal_(); | 2276 FEFloodElement.internal_() : super.internal_(); |
| 2243 | 2277 |
| 2244 /** | 2278 /** |
| 2245 * Constructor instantiated by the DOM when a custom element has been created. | 2279 * Constructor instantiated by the DOM when a custom element has been created. |
| 2246 * | 2280 * |
| 2247 * This can only be called by subclasses from their created constructor. | 2281 * This can only be called by subclasses from their created constructor. |
| 2248 */ | 2282 */ |
| 2249 FEFloodElement.created() : super.created(); | 2283 FEFloodElement.created() : super.created(); |
| 2250 | 2284 |
| 2251 /// Checks if this type is supported on the current platform. | 2285 /// Checks if this type is supported on the current platform. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2297 | 2331 |
| 2298 @Deprecated("Internal Use Only") | 2332 @Deprecated("Internal Use Only") |
| 2299 static FEFuncAElement internalCreateFEFuncAElement() { | 2333 static FEFuncAElement internalCreateFEFuncAElement() { |
| 2300 return new FEFuncAElement._internalWrap(); | 2334 return new FEFuncAElement._internalWrap(); |
| 2301 } | 2335 } |
| 2302 | 2336 |
| 2303 factory FEFuncAElement._internalWrap() { | 2337 factory FEFuncAElement._internalWrap() { |
| 2304 return new FEFuncAElement.internal_(); | 2338 return new FEFuncAElement.internal_(); |
| 2305 } | 2339 } |
| 2306 | 2340 |
| 2341 @Deprecated("Internal Use Only") |
| 2307 FEFuncAElement.internal_() : super.internal_(); | 2342 FEFuncAElement.internal_() : super.internal_(); |
| 2308 | 2343 |
| 2309 /** | 2344 /** |
| 2310 * Constructor instantiated by the DOM when a custom element has been created. | 2345 * Constructor instantiated by the DOM when a custom element has been created. |
| 2311 * | 2346 * |
| 2312 * This can only be called by subclasses from their created constructor. | 2347 * This can only be called by subclasses from their created constructor. |
| 2313 */ | 2348 */ |
| 2314 FEFuncAElement.created() : super.created(); | 2349 FEFuncAElement.created() : super.created(); |
| 2315 | 2350 |
| 2316 /// Checks if this type is supported on the current platform. | 2351 /// Checks if this type is supported on the current platform. |
| (...skipping 25 matching lines...) Expand all Loading... |
| 2342 | 2377 |
| 2343 @Deprecated("Internal Use Only") | 2378 @Deprecated("Internal Use Only") |
| 2344 static FEFuncBElement internalCreateFEFuncBElement() { | 2379 static FEFuncBElement internalCreateFEFuncBElement() { |
| 2345 return new FEFuncBElement._internalWrap(); | 2380 return new FEFuncBElement._internalWrap(); |
| 2346 } | 2381 } |
| 2347 | 2382 |
| 2348 factory FEFuncBElement._internalWrap() { | 2383 factory FEFuncBElement._internalWrap() { |
| 2349 return new FEFuncBElement.internal_(); | 2384 return new FEFuncBElement.internal_(); |
| 2350 } | 2385 } |
| 2351 | 2386 |
| 2387 @Deprecated("Internal Use Only") |
| 2352 FEFuncBElement.internal_() : super.internal_(); | 2388 FEFuncBElement.internal_() : super.internal_(); |
| 2353 | 2389 |
| 2354 /** | 2390 /** |
| 2355 * Constructor instantiated by the DOM when a custom element has been created. | 2391 * Constructor instantiated by the DOM when a custom element has been created. |
| 2356 * | 2392 * |
| 2357 * This can only be called by subclasses from their created constructor. | 2393 * This can only be called by subclasses from their created constructor. |
| 2358 */ | 2394 */ |
| 2359 FEFuncBElement.created() : super.created(); | 2395 FEFuncBElement.created() : super.created(); |
| 2360 | 2396 |
| 2361 /// Checks if this type is supported on the current platform. | 2397 /// Checks if this type is supported on the current platform. |
| (...skipping 25 matching lines...) Expand all Loading... |
| 2387 | 2423 |
| 2388 @Deprecated("Internal Use Only") | 2424 @Deprecated("Internal Use Only") |
| 2389 static FEFuncGElement internalCreateFEFuncGElement() { | 2425 static FEFuncGElement internalCreateFEFuncGElement() { |
| 2390 return new FEFuncGElement._internalWrap(); | 2426 return new FEFuncGElement._internalWrap(); |
| 2391 } | 2427 } |
| 2392 | 2428 |
| 2393 factory FEFuncGElement._internalWrap() { | 2429 factory FEFuncGElement._internalWrap() { |
| 2394 return new FEFuncGElement.internal_(); | 2430 return new FEFuncGElement.internal_(); |
| 2395 } | 2431 } |
| 2396 | 2432 |
| 2433 @Deprecated("Internal Use Only") |
| 2397 FEFuncGElement.internal_() : super.internal_(); | 2434 FEFuncGElement.internal_() : super.internal_(); |
| 2398 | 2435 |
| 2399 /** | 2436 /** |
| 2400 * Constructor instantiated by the DOM when a custom element has been created. | 2437 * Constructor instantiated by the DOM when a custom element has been created. |
| 2401 * | 2438 * |
| 2402 * This can only be called by subclasses from their created constructor. | 2439 * This can only be called by subclasses from their created constructor. |
| 2403 */ | 2440 */ |
| 2404 FEFuncGElement.created() : super.created(); | 2441 FEFuncGElement.created() : super.created(); |
| 2405 | 2442 |
| 2406 /// Checks if this type is supported on the current platform. | 2443 /// Checks if this type is supported on the current platform. |
| (...skipping 25 matching lines...) Expand all Loading... |
| 2432 | 2469 |
| 2433 @Deprecated("Internal Use Only") | 2470 @Deprecated("Internal Use Only") |
| 2434 static FEFuncRElement internalCreateFEFuncRElement() { | 2471 static FEFuncRElement internalCreateFEFuncRElement() { |
| 2435 return new FEFuncRElement._internalWrap(); | 2472 return new FEFuncRElement._internalWrap(); |
| 2436 } | 2473 } |
| 2437 | 2474 |
| 2438 factory FEFuncRElement._internalWrap() { | 2475 factory FEFuncRElement._internalWrap() { |
| 2439 return new FEFuncRElement.internal_(); | 2476 return new FEFuncRElement.internal_(); |
| 2440 } | 2477 } |
| 2441 | 2478 |
| 2479 @Deprecated("Internal Use Only") |
| 2442 FEFuncRElement.internal_() : super.internal_(); | 2480 FEFuncRElement.internal_() : super.internal_(); |
| 2443 | 2481 |
| 2444 /** | 2482 /** |
| 2445 * Constructor instantiated by the DOM when a custom element has been created. | 2483 * Constructor instantiated by the DOM when a custom element has been created. |
| 2446 * | 2484 * |
| 2447 * This can only be called by subclasses from their created constructor. | 2485 * This can only be called by subclasses from their created constructor. |
| 2448 */ | 2486 */ |
| 2449 FEFuncRElement.created() : super.created(); | 2487 FEFuncRElement.created() : super.created(); |
| 2450 | 2488 |
| 2451 /// Checks if this type is supported on the current platform. | 2489 /// Checks if this type is supported on the current platform. |
| (...skipping 25 matching lines...) Expand all Loading... |
| 2477 | 2515 |
| 2478 @Deprecated("Internal Use Only") | 2516 @Deprecated("Internal Use Only") |
| 2479 static FEGaussianBlurElement internalCreateFEGaussianBlurElement() { | 2517 static FEGaussianBlurElement internalCreateFEGaussianBlurElement() { |
| 2480 return new FEGaussianBlurElement._internalWrap(); | 2518 return new FEGaussianBlurElement._internalWrap(); |
| 2481 } | 2519 } |
| 2482 | 2520 |
| 2483 factory FEGaussianBlurElement._internalWrap() { | 2521 factory FEGaussianBlurElement._internalWrap() { |
| 2484 return new FEGaussianBlurElement.internal_(); | 2522 return new FEGaussianBlurElement.internal_(); |
| 2485 } | 2523 } |
| 2486 | 2524 |
| 2525 @Deprecated("Internal Use Only") |
| 2487 FEGaussianBlurElement.internal_() : super.internal_(); | 2526 FEGaussianBlurElement.internal_() : super.internal_(); |
| 2488 | 2527 |
| 2489 /** | 2528 /** |
| 2490 * Constructor instantiated by the DOM when a custom element has been created. | 2529 * Constructor instantiated by the DOM when a custom element has been created. |
| 2491 * | 2530 * |
| 2492 * This can only be called by subclasses from their created constructor. | 2531 * This can only be called by subclasses from their created constructor. |
| 2493 */ | 2532 */ |
| 2494 FEGaussianBlurElement.created() : super.created(); | 2533 FEGaussianBlurElement.created() : super.created(); |
| 2495 | 2534 |
| 2496 /// Checks if this type is supported on the current platform. | 2535 /// Checks if this type is supported on the current platform. |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2558 | 2597 |
| 2559 @Deprecated("Internal Use Only") | 2598 @Deprecated("Internal Use Only") |
| 2560 static FEImageElement internalCreateFEImageElement() { | 2599 static FEImageElement internalCreateFEImageElement() { |
| 2561 return new FEImageElement._internalWrap(); | 2600 return new FEImageElement._internalWrap(); |
| 2562 } | 2601 } |
| 2563 | 2602 |
| 2564 factory FEImageElement._internalWrap() { | 2603 factory FEImageElement._internalWrap() { |
| 2565 return new FEImageElement.internal_(); | 2604 return new FEImageElement.internal_(); |
| 2566 } | 2605 } |
| 2567 | 2606 |
| 2607 @Deprecated("Internal Use Only") |
| 2568 FEImageElement.internal_() : super.internal_(); | 2608 FEImageElement.internal_() : super.internal_(); |
| 2569 | 2609 |
| 2570 /** | 2610 /** |
| 2571 * Constructor instantiated by the DOM when a custom element has been created. | 2611 * Constructor instantiated by the DOM when a custom element has been created. |
| 2572 * | 2612 * |
| 2573 * This can only be called by subclasses from their created constructor. | 2613 * This can only be called by subclasses from their created constructor. |
| 2574 */ | 2614 */ |
| 2575 FEImageElement.created() : super.created(); | 2615 FEImageElement.created() : super.created(); |
| 2576 | 2616 |
| 2577 /// Checks if this type is supported on the current platform. | 2617 /// Checks if this type is supported on the current platform. |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2631 | 2671 |
| 2632 @Deprecated("Internal Use Only") | 2672 @Deprecated("Internal Use Only") |
| 2633 static FEMergeElement internalCreateFEMergeElement() { | 2673 static FEMergeElement internalCreateFEMergeElement() { |
| 2634 return new FEMergeElement._internalWrap(); | 2674 return new FEMergeElement._internalWrap(); |
| 2635 } | 2675 } |
| 2636 | 2676 |
| 2637 factory FEMergeElement._internalWrap() { | 2677 factory FEMergeElement._internalWrap() { |
| 2638 return new FEMergeElement.internal_(); | 2678 return new FEMergeElement.internal_(); |
| 2639 } | 2679 } |
| 2640 | 2680 |
| 2681 @Deprecated("Internal Use Only") |
| 2641 FEMergeElement.internal_() : super.internal_(); | 2682 FEMergeElement.internal_() : super.internal_(); |
| 2642 | 2683 |
| 2643 /** | 2684 /** |
| 2644 * Constructor instantiated by the DOM when a custom element has been created. | 2685 * Constructor instantiated by the DOM when a custom element has been created. |
| 2645 * | 2686 * |
| 2646 * This can only be called by subclasses from their created constructor. | 2687 * This can only be called by subclasses from their created constructor. |
| 2647 */ | 2688 */ |
| 2648 FEMergeElement.created() : super.created(); | 2689 FEMergeElement.created() : super.created(); |
| 2649 | 2690 |
| 2650 /// Checks if this type is supported on the current platform. | 2691 /// Checks if this type is supported on the current platform. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2696 | 2737 |
| 2697 @Deprecated("Internal Use Only") | 2738 @Deprecated("Internal Use Only") |
| 2698 static FEMergeNodeElement internalCreateFEMergeNodeElement() { | 2739 static FEMergeNodeElement internalCreateFEMergeNodeElement() { |
| 2699 return new FEMergeNodeElement._internalWrap(); | 2740 return new FEMergeNodeElement._internalWrap(); |
| 2700 } | 2741 } |
| 2701 | 2742 |
| 2702 factory FEMergeNodeElement._internalWrap() { | 2743 factory FEMergeNodeElement._internalWrap() { |
| 2703 return new FEMergeNodeElement.internal_(); | 2744 return new FEMergeNodeElement.internal_(); |
| 2704 } | 2745 } |
| 2705 | 2746 |
| 2747 @Deprecated("Internal Use Only") |
| 2706 FEMergeNodeElement.internal_() : super.internal_(); | 2748 FEMergeNodeElement.internal_() : super.internal_(); |
| 2707 | 2749 |
| 2708 /** | 2750 /** |
| 2709 * Constructor instantiated by the DOM when a custom element has been created. | 2751 * Constructor instantiated by the DOM when a custom element has been created. |
| 2710 * | 2752 * |
| 2711 * This can only be called by subclasses from their created constructor. | 2753 * This can only be called by subclasses from their created constructor. |
| 2712 */ | 2754 */ |
| 2713 FEMergeNodeElement.created() : super.created(); | 2755 FEMergeNodeElement.created() : super.created(); |
| 2714 | 2756 |
| 2715 /// Checks if this type is supported on the current platform. | 2757 /// Checks if this type is supported on the current platform. |
| (...skipping 25 matching lines...) Expand all Loading... |
| 2741 | 2783 |
| 2742 @Deprecated("Internal Use Only") | 2784 @Deprecated("Internal Use Only") |
| 2743 static FEMorphologyElement internalCreateFEMorphologyElement() { | 2785 static FEMorphologyElement internalCreateFEMorphologyElement() { |
| 2744 return new FEMorphologyElement._internalWrap(); | 2786 return new FEMorphologyElement._internalWrap(); |
| 2745 } | 2787 } |
| 2746 | 2788 |
| 2747 factory FEMorphologyElement._internalWrap() { | 2789 factory FEMorphologyElement._internalWrap() { |
| 2748 return new FEMorphologyElement.internal_(); | 2790 return new FEMorphologyElement.internal_(); |
| 2749 } | 2791 } |
| 2750 | 2792 |
| 2793 @Deprecated("Internal Use Only") |
| 2751 FEMorphologyElement.internal_() : super.internal_(); | 2794 FEMorphologyElement.internal_() : super.internal_(); |
| 2752 | 2795 |
| 2753 /** | 2796 /** |
| 2754 * Constructor instantiated by the DOM when a custom element has been created. | 2797 * Constructor instantiated by the DOM when a custom element has been created. |
| 2755 * | 2798 * |
| 2756 * This can only be called by subclasses from their created constructor. | 2799 * This can only be called by subclasses from their created constructor. |
| 2757 */ | 2800 */ |
| 2758 FEMorphologyElement.created() : super.created(); | 2801 FEMorphologyElement.created() : super.created(); |
| 2759 | 2802 |
| 2760 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE') | 2803 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE') |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2831 | 2874 |
| 2832 @Deprecated("Internal Use Only") | 2875 @Deprecated("Internal Use Only") |
| 2833 static FEOffsetElement internalCreateFEOffsetElement() { | 2876 static FEOffsetElement internalCreateFEOffsetElement() { |
| 2834 return new FEOffsetElement._internalWrap(); | 2877 return new FEOffsetElement._internalWrap(); |
| 2835 } | 2878 } |
| 2836 | 2879 |
| 2837 factory FEOffsetElement._internalWrap() { | 2880 factory FEOffsetElement._internalWrap() { |
| 2838 return new FEOffsetElement.internal_(); | 2881 return new FEOffsetElement.internal_(); |
| 2839 } | 2882 } |
| 2840 | 2883 |
| 2884 @Deprecated("Internal Use Only") |
| 2841 FEOffsetElement.internal_() : super.internal_(); | 2885 FEOffsetElement.internal_() : super.internal_(); |
| 2842 | 2886 |
| 2843 /** | 2887 /** |
| 2844 * Constructor instantiated by the DOM when a custom element has been created. | 2888 * Constructor instantiated by the DOM when a custom element has been created. |
| 2845 * | 2889 * |
| 2846 * This can only be called by subclasses from their created constructor. | 2890 * This can only be called by subclasses from their created constructor. |
| 2847 */ | 2891 */ |
| 2848 FEOffsetElement.created() : super.created(); | 2892 FEOffsetElement.created() : super.created(); |
| 2849 | 2893 |
| 2850 /// Checks if this type is supported on the current platform. | 2894 /// Checks if this type is supported on the current platform. |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2908 | 2952 |
| 2909 @Deprecated("Internal Use Only") | 2953 @Deprecated("Internal Use Only") |
| 2910 static FEPointLightElement internalCreateFEPointLightElement() { | 2954 static FEPointLightElement internalCreateFEPointLightElement() { |
| 2911 return new FEPointLightElement._internalWrap(); | 2955 return new FEPointLightElement._internalWrap(); |
| 2912 } | 2956 } |
| 2913 | 2957 |
| 2914 factory FEPointLightElement._internalWrap() { | 2958 factory FEPointLightElement._internalWrap() { |
| 2915 return new FEPointLightElement.internal_(); | 2959 return new FEPointLightElement.internal_(); |
| 2916 } | 2960 } |
| 2917 | 2961 |
| 2962 @Deprecated("Internal Use Only") |
| 2918 FEPointLightElement.internal_() : super.internal_(); | 2963 FEPointLightElement.internal_() : super.internal_(); |
| 2919 | 2964 |
| 2920 /** | 2965 /** |
| 2921 * Constructor instantiated by the DOM when a custom element has been created. | 2966 * Constructor instantiated by the DOM when a custom element has been created. |
| 2922 * | 2967 * |
| 2923 * This can only be called by subclasses from their created constructor. | 2968 * This can only be called by subclasses from their created constructor. |
| 2924 */ | 2969 */ |
| 2925 FEPointLightElement.created() : super.created(); | 2970 FEPointLightElement.created() : super.created(); |
| 2926 | 2971 |
| 2927 /// Checks if this type is supported on the current platform. | 2972 /// Checks if this type is supported on the current platform. |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2965 | 3010 |
| 2966 @Deprecated("Internal Use Only") | 3011 @Deprecated("Internal Use Only") |
| 2967 static FESpecularLightingElement internalCreateFESpecularLightingElement() { | 3012 static FESpecularLightingElement internalCreateFESpecularLightingElement() { |
| 2968 return new FESpecularLightingElement._internalWrap(); | 3013 return new FESpecularLightingElement._internalWrap(); |
| 2969 } | 3014 } |
| 2970 | 3015 |
| 2971 factory FESpecularLightingElement._internalWrap() { | 3016 factory FESpecularLightingElement._internalWrap() { |
| 2972 return new FESpecularLightingElement.internal_(); | 3017 return new FESpecularLightingElement.internal_(); |
| 2973 } | 3018 } |
| 2974 | 3019 |
| 3020 @Deprecated("Internal Use Only") |
| 2975 FESpecularLightingElement.internal_() : super.internal_(); | 3021 FESpecularLightingElement.internal_() : super.internal_(); |
| 2976 | 3022 |
| 2977 /** | 3023 /** |
| 2978 * Constructor instantiated by the DOM when a custom element has been created. | 3024 * Constructor instantiated by the DOM when a custom element has been created. |
| 2979 * | 3025 * |
| 2980 * This can only be called by subclasses from their created constructor. | 3026 * This can only be called by subclasses from their created constructor. |
| 2981 */ | 3027 */ |
| 2982 FESpecularLightingElement.created() : super.created(); | 3028 FESpecularLightingElement.created() : super.created(); |
| 2983 | 3029 |
| 2984 /// Checks if this type is supported on the current platform. | 3030 /// Checks if this type is supported on the current platform. |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3046 | 3092 |
| 3047 @Deprecated("Internal Use Only") | 3093 @Deprecated("Internal Use Only") |
| 3048 static FESpotLightElement internalCreateFESpotLightElement() { | 3094 static FESpotLightElement internalCreateFESpotLightElement() { |
| 3049 return new FESpotLightElement._internalWrap(); | 3095 return new FESpotLightElement._internalWrap(); |
| 3050 } | 3096 } |
| 3051 | 3097 |
| 3052 factory FESpotLightElement._internalWrap() { | 3098 factory FESpotLightElement._internalWrap() { |
| 3053 return new FESpotLightElement.internal_(); | 3099 return new FESpotLightElement.internal_(); |
| 3054 } | 3100 } |
| 3055 | 3101 |
| 3102 @Deprecated("Internal Use Only") |
| 3056 FESpotLightElement.internal_() : super.internal_(); | 3103 FESpotLightElement.internal_() : super.internal_(); |
| 3057 | 3104 |
| 3058 /** | 3105 /** |
| 3059 * Constructor instantiated by the DOM when a custom element has been created. | 3106 * Constructor instantiated by the DOM when a custom element has been created. |
| 3060 * | 3107 * |
| 3061 * This can only be called by subclasses from their created constructor. | 3108 * This can only be called by subclasses from their created constructor. |
| 3062 */ | 3109 */ |
| 3063 FESpotLightElement.created() : super.created(); | 3110 FESpotLightElement.created() : super.created(); |
| 3064 | 3111 |
| 3065 /// Checks if this type is supported on the current platform. | 3112 /// Checks if this type is supported on the current platform. |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3123 | 3170 |
| 3124 @Deprecated("Internal Use Only") | 3171 @Deprecated("Internal Use Only") |
| 3125 static FETileElement internalCreateFETileElement() { | 3172 static FETileElement internalCreateFETileElement() { |
| 3126 return new FETileElement._internalWrap(); | 3173 return new FETileElement._internalWrap(); |
| 3127 } | 3174 } |
| 3128 | 3175 |
| 3129 factory FETileElement._internalWrap() { | 3176 factory FETileElement._internalWrap() { |
| 3130 return new FETileElement.internal_(); | 3177 return new FETileElement.internal_(); |
| 3131 } | 3178 } |
| 3132 | 3179 |
| 3180 @Deprecated("Internal Use Only") |
| 3133 FETileElement.internal_() : super.internal_(); | 3181 FETileElement.internal_() : super.internal_(); |
| 3134 | 3182 |
| 3135 /** | 3183 /** |
| 3136 * Constructor instantiated by the DOM when a custom element has been created. | 3184 * Constructor instantiated by the DOM when a custom element has been created. |
| 3137 * | 3185 * |
| 3138 * This can only be called by subclasses from their created constructor. | 3186 * This can only be called by subclasses from their created constructor. |
| 3139 */ | 3187 */ |
| 3140 FETileElement.created() : super.created(); | 3188 FETileElement.created() : super.created(); |
| 3141 | 3189 |
| 3142 /// Checks if this type is supported on the current platform. | 3190 /// Checks if this type is supported on the current platform. |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3192 | 3240 |
| 3193 @Deprecated("Internal Use Only") | 3241 @Deprecated("Internal Use Only") |
| 3194 static FETurbulenceElement internalCreateFETurbulenceElement() { | 3242 static FETurbulenceElement internalCreateFETurbulenceElement() { |
| 3195 return new FETurbulenceElement._internalWrap(); | 3243 return new FETurbulenceElement._internalWrap(); |
| 3196 } | 3244 } |
| 3197 | 3245 |
| 3198 factory FETurbulenceElement._internalWrap() { | 3246 factory FETurbulenceElement._internalWrap() { |
| 3199 return new FETurbulenceElement.internal_(); | 3247 return new FETurbulenceElement.internal_(); |
| 3200 } | 3248 } |
| 3201 | 3249 |
| 3250 @Deprecated("Internal Use Only") |
| 3202 FETurbulenceElement.internal_() : super.internal_(); | 3251 FETurbulenceElement.internal_() : super.internal_(); |
| 3203 | 3252 |
| 3204 /** | 3253 /** |
| 3205 * Constructor instantiated by the DOM when a custom element has been created. | 3254 * Constructor instantiated by the DOM when a custom element has been created. |
| 3206 * | 3255 * |
| 3207 * This can only be called by subclasses from their created constructor. | 3256 * This can only be called by subclasses from their created constructor. |
| 3208 */ | 3257 */ |
| 3209 FETurbulenceElement.created() : super.created(); | 3258 FETurbulenceElement.created() : super.created(); |
| 3210 | 3259 |
| 3211 /// Checks if this type is supported on the current platform. | 3260 /// Checks if this type is supported on the current platform. |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3305 | 3354 |
| 3306 @Deprecated("Internal Use Only") | 3355 @Deprecated("Internal Use Only") |
| 3307 static FilterElement internalCreateFilterElement() { | 3356 static FilterElement internalCreateFilterElement() { |
| 3308 return new FilterElement._internalWrap(); | 3357 return new FilterElement._internalWrap(); |
| 3309 } | 3358 } |
| 3310 | 3359 |
| 3311 factory FilterElement._internalWrap() { | 3360 factory FilterElement._internalWrap() { |
| 3312 return new FilterElement.internal_(); | 3361 return new FilterElement.internal_(); |
| 3313 } | 3362 } |
| 3314 | 3363 |
| 3364 @Deprecated("Internal Use Only") |
| 3315 FilterElement.internal_() : super.internal_(); | 3365 FilterElement.internal_() : super.internal_(); |
| 3316 | 3366 |
| 3317 /** | 3367 /** |
| 3318 * Constructor instantiated by the DOM when a custom element has been created. | 3368 * Constructor instantiated by the DOM when a custom element has been created. |
| 3319 * | 3369 * |
| 3320 * This can only be called by subclasses from their created constructor. | 3370 * This can only be called by subclasses from their created constructor. |
| 3321 */ | 3371 */ |
| 3322 FilterElement.created() : super.created(); | 3372 FilterElement.created() : super.created(); |
| 3323 | 3373 |
| 3324 /// Checks if this type is supported on the current platform. | 3374 /// Checks if this type is supported on the current platform. |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3447 | 3497 |
| 3448 @Deprecated("Internal Use Only") | 3498 @Deprecated("Internal Use Only") |
| 3449 static ForeignObjectElement internalCreateForeignObjectElement() { | 3499 static ForeignObjectElement internalCreateForeignObjectElement() { |
| 3450 return new ForeignObjectElement._internalWrap(); | 3500 return new ForeignObjectElement._internalWrap(); |
| 3451 } | 3501 } |
| 3452 | 3502 |
| 3453 factory ForeignObjectElement._internalWrap() { | 3503 factory ForeignObjectElement._internalWrap() { |
| 3454 return new ForeignObjectElement.internal_(); | 3504 return new ForeignObjectElement.internal_(); |
| 3455 } | 3505 } |
| 3456 | 3506 |
| 3507 @Deprecated("Internal Use Only") |
| 3457 ForeignObjectElement.internal_() : super.internal_(); | 3508 ForeignObjectElement.internal_() : super.internal_(); |
| 3458 | 3509 |
| 3459 /** | 3510 /** |
| 3460 * Constructor instantiated by the DOM when a custom element has been created. | 3511 * Constructor instantiated by the DOM when a custom element has been created. |
| 3461 * | 3512 * |
| 3462 * This can only be called by subclasses from their created constructor. | 3513 * This can only be called by subclasses from their created constructor. |
| 3463 */ | 3514 */ |
| 3464 ForeignObjectElement.created() : super.created(); | 3515 ForeignObjectElement.created() : super.created(); |
| 3465 | 3516 |
| 3466 /// Checks if this type is supported on the current platform. | 3517 /// Checks if this type is supported on the current platform. |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3504 | 3555 |
| 3505 @Deprecated("Internal Use Only") | 3556 @Deprecated("Internal Use Only") |
| 3506 static GElement internalCreateGElement() { | 3557 static GElement internalCreateGElement() { |
| 3507 return new GElement._internalWrap(); | 3558 return new GElement._internalWrap(); |
| 3508 } | 3559 } |
| 3509 | 3560 |
| 3510 factory GElement._internalWrap() { | 3561 factory GElement._internalWrap() { |
| 3511 return new GElement.internal_(); | 3562 return new GElement.internal_(); |
| 3512 } | 3563 } |
| 3513 | 3564 |
| 3565 @Deprecated("Internal Use Only") |
| 3514 GElement.internal_() : super.internal_(); | 3566 GElement.internal_() : super.internal_(); |
| 3515 | 3567 |
| 3516 /** | 3568 /** |
| 3517 * Constructor instantiated by the DOM when a custom element has been created. | 3569 * Constructor instantiated by the DOM when a custom element has been created. |
| 3518 * | 3570 * |
| 3519 * This can only be called by subclasses from their created constructor. | 3571 * This can only be called by subclasses from their created constructor. |
| 3520 */ | 3572 */ |
| 3521 GElement.created() : super.created(); | 3573 GElement.created() : super.created(); |
| 3522 | 3574 |
| 3523 } | 3575 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 3538 | 3590 |
| 3539 @Deprecated("Internal Use Only") | 3591 @Deprecated("Internal Use Only") |
| 3540 static GeometryElement internalCreateGeometryElement() { | 3592 static GeometryElement internalCreateGeometryElement() { |
| 3541 return new GeometryElement._internalWrap(); | 3593 return new GeometryElement._internalWrap(); |
| 3542 } | 3594 } |
| 3543 | 3595 |
| 3544 factory GeometryElement._internalWrap() { | 3596 factory GeometryElement._internalWrap() { |
| 3545 return new GeometryElement.internal_(); | 3597 return new GeometryElement.internal_(); |
| 3546 } | 3598 } |
| 3547 | 3599 |
| 3600 @Deprecated("Internal Use Only") |
| 3548 GeometryElement.internal_() : super.internal_(); | 3601 GeometryElement.internal_() : super.internal_(); |
| 3549 | 3602 |
| 3550 /** | 3603 /** |
| 3551 * Constructor instantiated by the DOM when a custom element has been created. | 3604 * Constructor instantiated by the DOM when a custom element has been created. |
| 3552 * | 3605 * |
| 3553 * This can only be called by subclasses from their created constructor. | 3606 * This can only be called by subclasses from their created constructor. |
| 3554 */ | 3607 */ |
| 3555 GeometryElement.created() : super.created(); | 3608 GeometryElement.created() : super.created(); |
| 3556 | 3609 |
| 3557 @DomName('SVGGeometryElement.isPointInFill') | 3610 @DomName('SVGGeometryElement.isPointInFill') |
| (...skipping 24 matching lines...) Expand all Loading... |
| 3582 | 3635 |
| 3583 @Deprecated("Internal Use Only") | 3636 @Deprecated("Internal Use Only") |
| 3584 static GraphicsElement internalCreateGraphicsElement() { | 3637 static GraphicsElement internalCreateGraphicsElement() { |
| 3585 return new GraphicsElement._internalWrap(); | 3638 return new GraphicsElement._internalWrap(); |
| 3586 } | 3639 } |
| 3587 | 3640 |
| 3588 factory GraphicsElement._internalWrap() { | 3641 factory GraphicsElement._internalWrap() { |
| 3589 return new GraphicsElement.internal_(); | 3642 return new GraphicsElement.internal_(); |
| 3590 } | 3643 } |
| 3591 | 3644 |
| 3645 @Deprecated("Internal Use Only") |
| 3592 GraphicsElement.internal_() : super.internal_(); | 3646 GraphicsElement.internal_() : super.internal_(); |
| 3593 | 3647 |
| 3594 /** | 3648 /** |
| 3595 * Constructor instantiated by the DOM when a custom element has been created. | 3649 * Constructor instantiated by the DOM when a custom element has been created. |
| 3596 * | 3650 * |
| 3597 * This can only be called by subclasses from their created constructor. | 3651 * This can only be called by subclasses from their created constructor. |
| 3598 */ | 3652 */ |
| 3599 GraphicsElement.created() : super.created(); | 3653 GraphicsElement.created() : super.created(); |
| 3600 | 3654 |
| 3601 @DomName('SVGGraphicsElement.farthestViewportElement') | 3655 @DomName('SVGGraphicsElement.farthestViewportElement') |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3675 | 3729 |
| 3676 @Deprecated("Internal Use Only") | 3730 @Deprecated("Internal Use Only") |
| 3677 static ImageElement internalCreateImageElement() { | 3731 static ImageElement internalCreateImageElement() { |
| 3678 return new ImageElement._internalWrap(); | 3732 return new ImageElement._internalWrap(); |
| 3679 } | 3733 } |
| 3680 | 3734 |
| 3681 factory ImageElement._internalWrap() { | 3735 factory ImageElement._internalWrap() { |
| 3682 return new ImageElement.internal_(); | 3736 return new ImageElement.internal_(); |
| 3683 } | 3737 } |
| 3684 | 3738 |
| 3739 @Deprecated("Internal Use Only") |
| 3685 ImageElement.internal_() : super.internal_(); | 3740 ImageElement.internal_() : super.internal_(); |
| 3686 | 3741 |
| 3687 /** | 3742 /** |
| 3688 * Constructor instantiated by the DOM when a custom element has been created. | 3743 * Constructor instantiated by the DOM when a custom element has been created. |
| 3689 * | 3744 * |
| 3690 * This can only be called by subclasses from their created constructor. | 3745 * This can only be called by subclasses from their created constructor. |
| 3691 */ | 3746 */ |
| 3692 ImageElement.created() : super.created(); | 3747 ImageElement.created() : super.created(); |
| 3693 | 3748 |
| 3694 @DomName('SVGImageElement.height') | 3749 @DomName('SVGImageElement.height') |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3732 | 3787 |
| 3733 @Deprecated("Internal Use Only") | 3788 @Deprecated("Internal Use Only") |
| 3734 static Length internalCreateLength() { | 3789 static Length internalCreateLength() { |
| 3735 return new Length._internalWrap(); | 3790 return new Length._internalWrap(); |
| 3736 } | 3791 } |
| 3737 | 3792 |
| 3738 factory Length._internalWrap() { | 3793 factory Length._internalWrap() { |
| 3739 return new Length.internal_(); | 3794 return new Length.internal_(); |
| 3740 } | 3795 } |
| 3741 | 3796 |
| 3797 @Deprecated("Internal Use Only") |
| 3742 Length.internal_() { } | 3798 Length.internal_() { } |
| 3743 | 3799 |
| 3744 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 3800 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 3745 int get hashCode => unwrap_jso(this).hashCode; | 3801 int get hashCode => unwrap_jso(this).hashCode; |
| 3746 | 3802 |
| 3747 @DomName('SVGLength.SVG_LENGTHTYPE_CM') | 3803 @DomName('SVGLength.SVG_LENGTHTYPE_CM') |
| 3748 @DocsEditable() | 3804 @DocsEditable() |
| 3749 static const int SVG_LENGTHTYPE_CM = 6; | 3805 static const int SVG_LENGTHTYPE_CM = 6; |
| 3750 | 3806 |
| 3751 @DomName('SVGLength.SVG_LENGTHTYPE_EMS') | 3807 @DomName('SVGLength.SVG_LENGTHTYPE_EMS') |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3841 | 3897 |
| 3842 @Deprecated("Internal Use Only") | 3898 @Deprecated("Internal Use Only") |
| 3843 static LengthList internalCreateLengthList() { | 3899 static LengthList internalCreateLengthList() { |
| 3844 return new LengthList._internalWrap(); | 3900 return new LengthList._internalWrap(); |
| 3845 } | 3901 } |
| 3846 | 3902 |
| 3847 factory LengthList._internalWrap() { | 3903 factory LengthList._internalWrap() { |
| 3848 return new LengthList.internal_(); | 3904 return new LengthList.internal_(); |
| 3849 } | 3905 } |
| 3850 | 3906 |
| 3907 @Deprecated("Internal Use Only") |
| 3851 LengthList.internal_() { } | 3908 LengthList.internal_() { } |
| 3852 | 3909 |
| 3853 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 3910 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 3854 int get hashCode => unwrap_jso(this).hashCode; | 3911 int get hashCode => unwrap_jso(this).hashCode; |
| 3855 | 3912 |
| 3856 @DomName('SVGLengthList.length') | 3913 @DomName('SVGLengthList.length') |
| 3857 @DocsEditable() | 3914 @DocsEditable() |
| 3858 @Experimental() // untriaged | 3915 @Experimental() // untriaged |
| 3859 int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(unwrap_jso
(this)); | 3916 int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(unwrap_jso
(this)); |
| 3860 | 3917 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3961 | 4018 |
| 3962 @Deprecated("Internal Use Only") | 4019 @Deprecated("Internal Use Only") |
| 3963 static LineElement internalCreateLineElement() { | 4020 static LineElement internalCreateLineElement() { |
| 3964 return new LineElement._internalWrap(); | 4021 return new LineElement._internalWrap(); |
| 3965 } | 4022 } |
| 3966 | 4023 |
| 3967 factory LineElement._internalWrap() { | 4024 factory LineElement._internalWrap() { |
| 3968 return new LineElement.internal_(); | 4025 return new LineElement.internal_(); |
| 3969 } | 4026 } |
| 3970 | 4027 |
| 4028 @Deprecated("Internal Use Only") |
| 3971 LineElement.internal_() : super.internal_(); | 4029 LineElement.internal_() : super.internal_(); |
| 3972 | 4030 |
| 3973 /** | 4031 /** |
| 3974 * Constructor instantiated by the DOM when a custom element has been created. | 4032 * Constructor instantiated by the DOM when a custom element has been created. |
| 3975 * | 4033 * |
| 3976 * This can only be called by subclasses from their created constructor. | 4034 * This can only be called by subclasses from their created constructor. |
| 3977 */ | 4035 */ |
| 3978 LineElement.created() : super.created(); | 4036 LineElement.created() : super.created(); |
| 3979 | 4037 |
| 3980 @DomName('SVGLineElement.x1') | 4038 @DomName('SVGLineElement.x1') |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4015 | 4073 |
| 4016 @Deprecated("Internal Use Only") | 4074 @Deprecated("Internal Use Only") |
| 4017 static LinearGradientElement internalCreateLinearGradientElement() { | 4075 static LinearGradientElement internalCreateLinearGradientElement() { |
| 4018 return new LinearGradientElement._internalWrap(); | 4076 return new LinearGradientElement._internalWrap(); |
| 4019 } | 4077 } |
| 4020 | 4078 |
| 4021 factory LinearGradientElement._internalWrap() { | 4079 factory LinearGradientElement._internalWrap() { |
| 4022 return new LinearGradientElement.internal_(); | 4080 return new LinearGradientElement.internal_(); |
| 4023 } | 4081 } |
| 4024 | 4082 |
| 4083 @Deprecated("Internal Use Only") |
| 4025 LinearGradientElement.internal_() : super.internal_(); | 4084 LinearGradientElement.internal_() : super.internal_(); |
| 4026 | 4085 |
| 4027 /** | 4086 /** |
| 4028 * Constructor instantiated by the DOM when a custom element has been created. | 4087 * Constructor instantiated by the DOM when a custom element has been created. |
| 4029 * | 4088 * |
| 4030 * This can only be called by subclasses from their created constructor. | 4089 * This can only be called by subclasses from their created constructor. |
| 4031 */ | 4090 */ |
| 4032 LinearGradientElement.created() : super.created(); | 4091 LinearGradientElement.created() : super.created(); |
| 4033 | 4092 |
| 4034 @DomName('SVGLinearGradientElement.x1') | 4093 @DomName('SVGLinearGradientElement.x1') |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4069 | 4128 |
| 4070 @Deprecated("Internal Use Only") | 4129 @Deprecated("Internal Use Only") |
| 4071 static MarkerElement internalCreateMarkerElement() { | 4130 static MarkerElement internalCreateMarkerElement() { |
| 4072 return new MarkerElement._internalWrap(); | 4131 return new MarkerElement._internalWrap(); |
| 4073 } | 4132 } |
| 4074 | 4133 |
| 4075 factory MarkerElement._internalWrap() { | 4134 factory MarkerElement._internalWrap() { |
| 4076 return new MarkerElement.internal_(); | 4135 return new MarkerElement.internal_(); |
| 4077 } | 4136 } |
| 4078 | 4137 |
| 4138 @Deprecated("Internal Use Only") |
| 4079 MarkerElement.internal_() : super.internal_(); | 4139 MarkerElement.internal_() : super.internal_(); |
| 4080 | 4140 |
| 4081 /** | 4141 /** |
| 4082 * Constructor instantiated by the DOM when a custom element has been created. | 4142 * Constructor instantiated by the DOM when a custom element has been created. |
| 4083 * | 4143 * |
| 4084 * This can only be called by subclasses from their created constructor. | 4144 * This can only be called by subclasses from their created constructor. |
| 4085 */ | 4145 */ |
| 4086 MarkerElement.created() : super.created(); | 4146 MarkerElement.created() : super.created(); |
| 4087 | 4147 |
| 4088 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') | 4148 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4175 | 4235 |
| 4176 @Deprecated("Internal Use Only") | 4236 @Deprecated("Internal Use Only") |
| 4177 static MaskElement internalCreateMaskElement() { | 4237 static MaskElement internalCreateMaskElement() { |
| 4178 return new MaskElement._internalWrap(); | 4238 return new MaskElement._internalWrap(); |
| 4179 } | 4239 } |
| 4180 | 4240 |
| 4181 factory MaskElement._internalWrap() { | 4241 factory MaskElement._internalWrap() { |
| 4182 return new MaskElement.internal_(); | 4242 return new MaskElement.internal_(); |
| 4183 } | 4243 } |
| 4184 | 4244 |
| 4245 @Deprecated("Internal Use Only") |
| 4185 MaskElement.internal_() : super.internal_(); | 4246 MaskElement.internal_() : super.internal_(); |
| 4186 | 4247 |
| 4187 /** | 4248 /** |
| 4188 * Constructor instantiated by the DOM when a custom element has been created. | 4249 * Constructor instantiated by the DOM when a custom element has been created. |
| 4189 * | 4250 * |
| 4190 * This can only be called by subclasses from their created constructor. | 4251 * This can only be called by subclasses from their created constructor. |
| 4191 */ | 4252 */ |
| 4192 MaskElement.created() : super.created(); | 4253 MaskElement.created() : super.created(); |
| 4193 | 4254 |
| 4194 @DomName('SVGMaskElement.height') | 4255 @DomName('SVGMaskElement.height') |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4248 | 4309 |
| 4249 @Deprecated("Internal Use Only") | 4310 @Deprecated("Internal Use Only") |
| 4250 static Matrix internalCreateMatrix() { | 4311 static Matrix internalCreateMatrix() { |
| 4251 return new Matrix._internalWrap(); | 4312 return new Matrix._internalWrap(); |
| 4252 } | 4313 } |
| 4253 | 4314 |
| 4254 factory Matrix._internalWrap() { | 4315 factory Matrix._internalWrap() { |
| 4255 return new Matrix.internal_(); | 4316 return new Matrix.internal_(); |
| 4256 } | 4317 } |
| 4257 | 4318 |
| 4319 @Deprecated("Internal Use Only") |
| 4258 Matrix.internal_() { } | 4320 Matrix.internal_() { } |
| 4259 | 4321 |
| 4260 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 4322 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 4261 int get hashCode => unwrap_jso(this).hashCode; | 4323 int get hashCode => unwrap_jso(this).hashCode; |
| 4262 | 4324 |
| 4263 @DomName('SVGMatrix.a') | 4325 @DomName('SVGMatrix.a') |
| 4264 @DocsEditable() | 4326 @DocsEditable() |
| 4265 num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(unwrap_jso(this)); | 4327 num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(unwrap_jso(this)); |
| 4266 | 4328 |
| 4267 @DomName('SVGMatrix.a') | 4329 @DomName('SVGMatrix.a') |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4370 | 4432 |
| 4371 @Deprecated("Internal Use Only") | 4433 @Deprecated("Internal Use Only") |
| 4372 static MetadataElement internalCreateMetadataElement() { | 4434 static MetadataElement internalCreateMetadataElement() { |
| 4373 return new MetadataElement._internalWrap(); | 4435 return new MetadataElement._internalWrap(); |
| 4374 } | 4436 } |
| 4375 | 4437 |
| 4376 factory MetadataElement._internalWrap() { | 4438 factory MetadataElement._internalWrap() { |
| 4377 return new MetadataElement.internal_(); | 4439 return new MetadataElement.internal_(); |
| 4378 } | 4440 } |
| 4379 | 4441 |
| 4442 @Deprecated("Internal Use Only") |
| 4380 MetadataElement.internal_() : super.internal_(); | 4443 MetadataElement.internal_() : super.internal_(); |
| 4381 | 4444 |
| 4382 /** | 4445 /** |
| 4383 * Constructor instantiated by the DOM when a custom element has been created. | 4446 * Constructor instantiated by the DOM when a custom element has been created. |
| 4384 * | 4447 * |
| 4385 * This can only be called by subclasses from their created constructor. | 4448 * This can only be called by subclasses from their created constructor. |
| 4386 */ | 4449 */ |
| 4387 MetadataElement.created() : super.created(); | 4450 MetadataElement.created() : super.created(); |
| 4388 | 4451 |
| 4389 } | 4452 } |
| (...skipping 13 matching lines...) Expand all Loading... |
| 4403 | 4466 |
| 4404 @Deprecated("Internal Use Only") | 4467 @Deprecated("Internal Use Only") |
| 4405 static Number internalCreateNumber() { | 4468 static Number internalCreateNumber() { |
| 4406 return new Number._internalWrap(); | 4469 return new Number._internalWrap(); |
| 4407 } | 4470 } |
| 4408 | 4471 |
| 4409 factory Number._internalWrap() { | 4472 factory Number._internalWrap() { |
| 4410 return new Number.internal_(); | 4473 return new Number.internal_(); |
| 4411 } | 4474 } |
| 4412 | 4475 |
| 4476 @Deprecated("Internal Use Only") |
| 4413 Number.internal_() { } | 4477 Number.internal_() { } |
| 4414 | 4478 |
| 4415 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 4479 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 4416 int get hashCode => unwrap_jso(this).hashCode; | 4480 int get hashCode => unwrap_jso(this).hashCode; |
| 4417 | 4481 |
| 4418 @DomName('SVGNumber.value') | 4482 @DomName('SVGNumber.value') |
| 4419 @DocsEditable() | 4483 @DocsEditable() |
| 4420 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(unwrap_jso(this)
); | 4484 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(unwrap_jso(this)
); |
| 4421 | 4485 |
| 4422 @DomName('SVGNumber.value') | 4486 @DomName('SVGNumber.value') |
| (...skipping 17 matching lines...) Expand all Loading... |
| 4440 | 4504 |
| 4441 @Deprecated("Internal Use Only") | 4505 @Deprecated("Internal Use Only") |
| 4442 static NumberList internalCreateNumberList() { | 4506 static NumberList internalCreateNumberList() { |
| 4443 return new NumberList._internalWrap(); | 4507 return new NumberList._internalWrap(); |
| 4444 } | 4508 } |
| 4445 | 4509 |
| 4446 factory NumberList._internalWrap() { | 4510 factory NumberList._internalWrap() { |
| 4447 return new NumberList.internal_(); | 4511 return new NumberList.internal_(); |
| 4448 } | 4512 } |
| 4449 | 4513 |
| 4514 @Deprecated("Internal Use Only") |
| 4450 NumberList.internal_() { } | 4515 NumberList.internal_() { } |
| 4451 | 4516 |
| 4452 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 4517 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 4453 int get hashCode => unwrap_jso(this).hashCode; | 4518 int get hashCode => unwrap_jso(this).hashCode; |
| 4454 | 4519 |
| 4455 @DomName('SVGNumberList.length') | 4520 @DomName('SVGNumberList.length') |
| 4456 @DocsEditable() | 4521 @DocsEditable() |
| 4457 @Experimental() // untriaged | 4522 @Experimental() // untriaged |
| 4458 int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(unwrap_jso
(this)); | 4523 int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(unwrap_jso
(this)); |
| 4459 | 4524 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4560 | 4625 |
| 4561 @Deprecated("Internal Use Only") | 4626 @Deprecated("Internal Use Only") |
| 4562 static PathElement internalCreatePathElement() { | 4627 static PathElement internalCreatePathElement() { |
| 4563 return new PathElement._internalWrap(); | 4628 return new PathElement._internalWrap(); |
| 4564 } | 4629 } |
| 4565 | 4630 |
| 4566 factory PathElement._internalWrap() { | 4631 factory PathElement._internalWrap() { |
| 4567 return new PathElement.internal_(); | 4632 return new PathElement.internal_(); |
| 4568 } | 4633 } |
| 4569 | 4634 |
| 4635 @Deprecated("Internal Use Only") |
| 4570 PathElement.internal_() : super.internal_(); | 4636 PathElement.internal_() : super.internal_(); |
| 4571 | 4637 |
| 4572 /** | 4638 /** |
| 4573 * Constructor instantiated by the DOM when a custom element has been created. | 4639 * Constructor instantiated by the DOM when a custom element has been created. |
| 4574 * | 4640 * |
| 4575 * This can only be called by subclasses from their created constructor. | 4641 * This can only be called by subclasses from their created constructor. |
| 4576 */ | 4642 */ |
| 4577 PathElement.created() : super.created(); | 4643 PathElement.created() : super.created(); |
| 4578 | 4644 |
| 4579 @DomName('SVGPathElement.animatedNormalizedPathSegList') | 4645 @DomName('SVGPathElement.animatedNormalizedPathSegList') |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4701 | 4767 |
| 4702 @Deprecated("Internal Use Only") | 4768 @Deprecated("Internal Use Only") |
| 4703 static PathSeg internalCreatePathSeg() { | 4769 static PathSeg internalCreatePathSeg() { |
| 4704 return new PathSeg._internalWrap(); | 4770 return new PathSeg._internalWrap(); |
| 4705 } | 4771 } |
| 4706 | 4772 |
| 4707 factory PathSeg._internalWrap() { | 4773 factory PathSeg._internalWrap() { |
| 4708 return new PathSeg.internal_(); | 4774 return new PathSeg.internal_(); |
| 4709 } | 4775 } |
| 4710 | 4776 |
| 4777 @Deprecated("Internal Use Only") |
| 4711 PathSeg.internal_() { } | 4778 PathSeg.internal_() { } |
| 4712 | 4779 |
| 4713 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 4780 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 4714 int get hashCode => unwrap_jso(this).hashCode; | 4781 int get hashCode => unwrap_jso(this).hashCode; |
| 4715 | 4782 |
| 4716 @DomName('SVGPathSeg.PATHSEG_ARC_ABS') | 4783 @DomName('SVGPathSeg.PATHSEG_ARC_ABS') |
| 4717 @DocsEditable() | 4784 @DocsEditable() |
| 4718 static const int PATHSEG_ARC_ABS = 10; | 4785 static const int PATHSEG_ARC_ABS = 10; |
| 4719 | 4786 |
| 4720 @DomName('SVGPathSeg.PATHSEG_ARC_REL') | 4787 @DomName('SVGPathSeg.PATHSEG_ARC_REL') |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4819 | 4886 |
| 4820 @Deprecated("Internal Use Only") | 4887 @Deprecated("Internal Use Only") |
| 4821 static PathSegArcAbs internalCreatePathSegArcAbs() { | 4888 static PathSegArcAbs internalCreatePathSegArcAbs() { |
| 4822 return new PathSegArcAbs._internalWrap(); | 4889 return new PathSegArcAbs._internalWrap(); |
| 4823 } | 4890 } |
| 4824 | 4891 |
| 4825 factory PathSegArcAbs._internalWrap() { | 4892 factory PathSegArcAbs._internalWrap() { |
| 4826 return new PathSegArcAbs.internal_(); | 4893 return new PathSegArcAbs.internal_(); |
| 4827 } | 4894 } |
| 4828 | 4895 |
| 4896 @Deprecated("Internal Use Only") |
| 4829 PathSegArcAbs.internal_() : super.internal_(); | 4897 PathSegArcAbs.internal_() : super.internal_(); |
| 4830 | 4898 |
| 4831 | 4899 |
| 4832 @DomName('SVGPathSegArcAbs.angle') | 4900 @DomName('SVGPathSegArcAbs.angle') |
| 4833 @DocsEditable() | 4901 @DocsEditable() |
| 4834 num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(unwrap_js
o(this)); | 4902 num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(unwrap_js
o(this)); |
| 4835 | 4903 |
| 4836 @DomName('SVGPathSegArcAbs.angle') | 4904 @DomName('SVGPathSegArcAbs.angle') |
| 4837 @DocsEditable() | 4905 @DocsEditable() |
| 4838 set angle(num value) => _blink.BlinkSVGPathSegArcAbs.instance.angle_Setter_(un
wrap_jso(this), value); | 4906 set angle(num value) => _blink.BlinkSVGPathSegArcAbs.instance.angle_Setter_(un
wrap_jso(this), value); |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4903 | 4971 |
| 4904 @Deprecated("Internal Use Only") | 4972 @Deprecated("Internal Use Only") |
| 4905 static PathSegArcRel internalCreatePathSegArcRel() { | 4973 static PathSegArcRel internalCreatePathSegArcRel() { |
| 4906 return new PathSegArcRel._internalWrap(); | 4974 return new PathSegArcRel._internalWrap(); |
| 4907 } | 4975 } |
| 4908 | 4976 |
| 4909 factory PathSegArcRel._internalWrap() { | 4977 factory PathSegArcRel._internalWrap() { |
| 4910 return new PathSegArcRel.internal_(); | 4978 return new PathSegArcRel.internal_(); |
| 4911 } | 4979 } |
| 4912 | 4980 |
| 4981 @Deprecated("Internal Use Only") |
| 4913 PathSegArcRel.internal_() : super.internal_(); | 4982 PathSegArcRel.internal_() : super.internal_(); |
| 4914 | 4983 |
| 4915 | 4984 |
| 4916 @DomName('SVGPathSegArcRel.angle') | 4985 @DomName('SVGPathSegArcRel.angle') |
| 4917 @DocsEditable() | 4986 @DocsEditable() |
| 4918 num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(unwrap_js
o(this)); | 4987 num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(unwrap_js
o(this)); |
| 4919 | 4988 |
| 4920 @DomName('SVGPathSegArcRel.angle') | 4989 @DomName('SVGPathSegArcRel.angle') |
| 4921 @DocsEditable() | 4990 @DocsEditable() |
| 4922 set angle(num value) => _blink.BlinkSVGPathSegArcRel.instance.angle_Setter_(un
wrap_jso(this), value); | 4991 set angle(num value) => _blink.BlinkSVGPathSegArcRel.instance.angle_Setter_(un
wrap_jso(this), value); |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4987 | 5056 |
| 4988 @Deprecated("Internal Use Only") | 5057 @Deprecated("Internal Use Only") |
| 4989 static PathSegClosePath internalCreatePathSegClosePath() { | 5058 static PathSegClosePath internalCreatePathSegClosePath() { |
| 4990 return new PathSegClosePath._internalWrap(); | 5059 return new PathSegClosePath._internalWrap(); |
| 4991 } | 5060 } |
| 4992 | 5061 |
| 4993 factory PathSegClosePath._internalWrap() { | 5062 factory PathSegClosePath._internalWrap() { |
| 4994 return new PathSegClosePath.internal_(); | 5063 return new PathSegClosePath.internal_(); |
| 4995 } | 5064 } |
| 4996 | 5065 |
| 5066 @Deprecated("Internal Use Only") |
| 4997 PathSegClosePath.internal_() : super.internal_(); | 5067 PathSegClosePath.internal_() : super.internal_(); |
| 4998 | 5068 |
| 4999 | 5069 |
| 5000 } | 5070 } |
| 5001 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5071 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5002 // for details. All rights reserved. Use of this source code is governed by a | 5072 // for details. All rights reserved. Use of this source code is governed by a |
| 5003 // BSD-style license that can be found in the LICENSE file. | 5073 // BSD-style license that can be found in the LICENSE file. |
| 5004 | 5074 |
| 5005 // WARNING: Do not edit - generated code. | 5075 // WARNING: Do not edit - generated code. |
| 5006 | 5076 |
| 5007 | 5077 |
| 5008 @DocsEditable() | 5078 @DocsEditable() |
| 5009 @DomName('SVGPathSegCurvetoCubicAbs') | 5079 @DomName('SVGPathSegCurvetoCubicAbs') |
| 5010 @Unstable() | 5080 @Unstable() |
| 5011 class PathSegCurvetoCubicAbs extends PathSeg { | 5081 class PathSegCurvetoCubicAbs extends PathSeg { |
| 5012 // To suppress missing implicit constructor warnings. | 5082 // To suppress missing implicit constructor warnings. |
| 5013 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported
"); } | 5083 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported
"); } |
| 5014 | 5084 |
| 5015 | 5085 |
| 5016 @Deprecated("Internal Use Only") | 5086 @Deprecated("Internal Use Only") |
| 5017 static PathSegCurvetoCubicAbs internalCreatePathSegCurvetoCubicAbs() { | 5087 static PathSegCurvetoCubicAbs internalCreatePathSegCurvetoCubicAbs() { |
| 5018 return new PathSegCurvetoCubicAbs._internalWrap(); | 5088 return new PathSegCurvetoCubicAbs._internalWrap(); |
| 5019 } | 5089 } |
| 5020 | 5090 |
| 5021 factory PathSegCurvetoCubicAbs._internalWrap() { | 5091 factory PathSegCurvetoCubicAbs._internalWrap() { |
| 5022 return new PathSegCurvetoCubicAbs.internal_(); | 5092 return new PathSegCurvetoCubicAbs.internal_(); |
| 5023 } | 5093 } |
| 5024 | 5094 |
| 5095 @Deprecated("Internal Use Only") |
| 5025 PathSegCurvetoCubicAbs.internal_() : super.internal_(); | 5096 PathSegCurvetoCubicAbs.internal_() : super.internal_(); |
| 5026 | 5097 |
| 5027 | 5098 |
| 5028 @DomName('SVGPathSegCurvetoCubicAbs.x') | 5099 @DomName('SVGPathSegCurvetoCubicAbs.x') |
| 5029 @DocsEditable() | 5100 @DocsEditable() |
| 5030 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(unwrap_j
so(this)); | 5101 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(unwrap_j
so(this)); |
| 5031 | 5102 |
| 5032 @DomName('SVGPathSegCurvetoCubicAbs.x') | 5103 @DomName('SVGPathSegCurvetoCubicAbs.x') |
| 5033 @DocsEditable() | 5104 @DocsEditable() |
| 5034 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Setter_(u
nwrap_jso(this), value); | 5105 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Setter_(u
nwrap_jso(this), value); |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5091 | 5162 |
| 5092 @Deprecated("Internal Use Only") | 5163 @Deprecated("Internal Use Only") |
| 5093 static PathSegCurvetoCubicRel internalCreatePathSegCurvetoCubicRel() { | 5164 static PathSegCurvetoCubicRel internalCreatePathSegCurvetoCubicRel() { |
| 5094 return new PathSegCurvetoCubicRel._internalWrap(); | 5165 return new PathSegCurvetoCubicRel._internalWrap(); |
| 5095 } | 5166 } |
| 5096 | 5167 |
| 5097 factory PathSegCurvetoCubicRel._internalWrap() { | 5168 factory PathSegCurvetoCubicRel._internalWrap() { |
| 5098 return new PathSegCurvetoCubicRel.internal_(); | 5169 return new PathSegCurvetoCubicRel.internal_(); |
| 5099 } | 5170 } |
| 5100 | 5171 |
| 5172 @Deprecated("Internal Use Only") |
| 5101 PathSegCurvetoCubicRel.internal_() : super.internal_(); | 5173 PathSegCurvetoCubicRel.internal_() : super.internal_(); |
| 5102 | 5174 |
| 5103 | 5175 |
| 5104 @DomName('SVGPathSegCurvetoCubicRel.x') | 5176 @DomName('SVGPathSegCurvetoCubicRel.x') |
| 5105 @DocsEditable() | 5177 @DocsEditable() |
| 5106 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(unwrap_j
so(this)); | 5178 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(unwrap_j
so(this)); |
| 5107 | 5179 |
| 5108 @DomName('SVGPathSegCurvetoCubicRel.x') | 5180 @DomName('SVGPathSegCurvetoCubicRel.x') |
| 5109 @DocsEditable() | 5181 @DocsEditable() |
| 5110 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Setter_(u
nwrap_jso(this), value); | 5182 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Setter_(u
nwrap_jso(this), value); |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5167 | 5239 |
| 5168 @Deprecated("Internal Use Only") | 5240 @Deprecated("Internal Use Only") |
| 5169 static PathSegCurvetoCubicSmoothAbs internalCreatePathSegCurvetoCubicSmoothAbs
() { | 5241 static PathSegCurvetoCubicSmoothAbs internalCreatePathSegCurvetoCubicSmoothAbs
() { |
| 5170 return new PathSegCurvetoCubicSmoothAbs._internalWrap(); | 5242 return new PathSegCurvetoCubicSmoothAbs._internalWrap(); |
| 5171 } | 5243 } |
| 5172 | 5244 |
| 5173 factory PathSegCurvetoCubicSmoothAbs._internalWrap() { | 5245 factory PathSegCurvetoCubicSmoothAbs._internalWrap() { |
| 5174 return new PathSegCurvetoCubicSmoothAbs.internal_(); | 5246 return new PathSegCurvetoCubicSmoothAbs.internal_(); |
| 5175 } | 5247 } |
| 5176 | 5248 |
| 5249 @Deprecated("Internal Use Only") |
| 5177 PathSegCurvetoCubicSmoothAbs.internal_() : super.internal_(); | 5250 PathSegCurvetoCubicSmoothAbs.internal_() : super.internal_(); |
| 5178 | 5251 |
| 5179 | 5252 |
| 5180 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') | 5253 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') |
| 5181 @DocsEditable() | 5254 @DocsEditable() |
| 5182 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(un
wrap_jso(this)); | 5255 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(un
wrap_jso(this)); |
| 5183 | 5256 |
| 5184 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') | 5257 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') |
| 5185 @DocsEditable() | 5258 @DocsEditable() |
| 5186 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Set
ter_(unwrap_jso(this), value); | 5259 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Set
ter_(unwrap_jso(this), value); |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5227 | 5300 |
| 5228 @Deprecated("Internal Use Only") | 5301 @Deprecated("Internal Use Only") |
| 5229 static PathSegCurvetoCubicSmoothRel internalCreatePathSegCurvetoCubicSmoothRel
() { | 5302 static PathSegCurvetoCubicSmoothRel internalCreatePathSegCurvetoCubicSmoothRel
() { |
| 5230 return new PathSegCurvetoCubicSmoothRel._internalWrap(); | 5303 return new PathSegCurvetoCubicSmoothRel._internalWrap(); |
| 5231 } | 5304 } |
| 5232 | 5305 |
| 5233 factory PathSegCurvetoCubicSmoothRel._internalWrap() { | 5306 factory PathSegCurvetoCubicSmoothRel._internalWrap() { |
| 5234 return new PathSegCurvetoCubicSmoothRel.internal_(); | 5307 return new PathSegCurvetoCubicSmoothRel.internal_(); |
| 5235 } | 5308 } |
| 5236 | 5309 |
| 5310 @Deprecated("Internal Use Only") |
| 5237 PathSegCurvetoCubicSmoothRel.internal_() : super.internal_(); | 5311 PathSegCurvetoCubicSmoothRel.internal_() : super.internal_(); |
| 5238 | 5312 |
| 5239 | 5313 |
| 5240 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') | 5314 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') |
| 5241 @DocsEditable() | 5315 @DocsEditable() |
| 5242 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(un
wrap_jso(this)); | 5316 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(un
wrap_jso(this)); |
| 5243 | 5317 |
| 5244 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') | 5318 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') |
| 5245 @DocsEditable() | 5319 @DocsEditable() |
| 5246 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Set
ter_(unwrap_jso(this), value); | 5320 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Set
ter_(unwrap_jso(this), value); |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5287 | 5361 |
| 5288 @Deprecated("Internal Use Only") | 5362 @Deprecated("Internal Use Only") |
| 5289 static PathSegCurvetoQuadraticAbs internalCreatePathSegCurvetoQuadraticAbs() { | 5363 static PathSegCurvetoQuadraticAbs internalCreatePathSegCurvetoQuadraticAbs() { |
| 5290 return new PathSegCurvetoQuadraticAbs._internalWrap(); | 5364 return new PathSegCurvetoQuadraticAbs._internalWrap(); |
| 5291 } | 5365 } |
| 5292 | 5366 |
| 5293 factory PathSegCurvetoQuadraticAbs._internalWrap() { | 5367 factory PathSegCurvetoQuadraticAbs._internalWrap() { |
| 5294 return new PathSegCurvetoQuadraticAbs.internal_(); | 5368 return new PathSegCurvetoQuadraticAbs.internal_(); |
| 5295 } | 5369 } |
| 5296 | 5370 |
| 5371 @Deprecated("Internal Use Only") |
| 5297 PathSegCurvetoQuadraticAbs.internal_() : super.internal_(); | 5372 PathSegCurvetoQuadraticAbs.internal_() : super.internal_(); |
| 5298 | 5373 |
| 5299 | 5374 |
| 5300 @DomName('SVGPathSegCurvetoQuadraticAbs.x') | 5375 @DomName('SVGPathSegCurvetoQuadraticAbs.x') |
| 5301 @DocsEditable() | 5376 @DocsEditable() |
| 5302 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(unwr
ap_jso(this)); | 5377 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(unwr
ap_jso(this)); |
| 5303 | 5378 |
| 5304 @DomName('SVGPathSegCurvetoQuadraticAbs.x') | 5379 @DomName('SVGPathSegCurvetoQuadraticAbs.x') |
| 5305 @DocsEditable() | 5380 @DocsEditable() |
| 5306 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Sette
r_(unwrap_jso(this), value); | 5381 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Sette
r_(unwrap_jso(this), value); |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5347 | 5422 |
| 5348 @Deprecated("Internal Use Only") | 5423 @Deprecated("Internal Use Only") |
| 5349 static PathSegCurvetoQuadraticRel internalCreatePathSegCurvetoQuadraticRel() { | 5424 static PathSegCurvetoQuadraticRel internalCreatePathSegCurvetoQuadraticRel() { |
| 5350 return new PathSegCurvetoQuadraticRel._internalWrap(); | 5425 return new PathSegCurvetoQuadraticRel._internalWrap(); |
| 5351 } | 5426 } |
| 5352 | 5427 |
| 5353 factory PathSegCurvetoQuadraticRel._internalWrap() { | 5428 factory PathSegCurvetoQuadraticRel._internalWrap() { |
| 5354 return new PathSegCurvetoQuadraticRel.internal_(); | 5429 return new PathSegCurvetoQuadraticRel.internal_(); |
| 5355 } | 5430 } |
| 5356 | 5431 |
| 5432 @Deprecated("Internal Use Only") |
| 5357 PathSegCurvetoQuadraticRel.internal_() : super.internal_(); | 5433 PathSegCurvetoQuadraticRel.internal_() : super.internal_(); |
| 5358 | 5434 |
| 5359 | 5435 |
| 5360 @DomName('SVGPathSegCurvetoQuadraticRel.x') | 5436 @DomName('SVGPathSegCurvetoQuadraticRel.x') |
| 5361 @DocsEditable() | 5437 @DocsEditable() |
| 5362 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(unwr
ap_jso(this)); | 5438 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(unwr
ap_jso(this)); |
| 5363 | 5439 |
| 5364 @DomName('SVGPathSegCurvetoQuadraticRel.x') | 5440 @DomName('SVGPathSegCurvetoQuadraticRel.x') |
| 5365 @DocsEditable() | 5441 @DocsEditable() |
| 5366 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Sette
r_(unwrap_jso(this), value); | 5442 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Sette
r_(unwrap_jso(this), value); |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5407 | 5483 |
| 5408 @Deprecated("Internal Use Only") | 5484 @Deprecated("Internal Use Only") |
| 5409 static PathSegCurvetoQuadraticSmoothAbs internalCreatePathSegCurvetoQuadraticS
moothAbs() { | 5485 static PathSegCurvetoQuadraticSmoothAbs internalCreatePathSegCurvetoQuadraticS
moothAbs() { |
| 5410 return new PathSegCurvetoQuadraticSmoothAbs._internalWrap(); | 5486 return new PathSegCurvetoQuadraticSmoothAbs._internalWrap(); |
| 5411 } | 5487 } |
| 5412 | 5488 |
| 5413 factory PathSegCurvetoQuadraticSmoothAbs._internalWrap() { | 5489 factory PathSegCurvetoQuadraticSmoothAbs._internalWrap() { |
| 5414 return new PathSegCurvetoQuadraticSmoothAbs.internal_(); | 5490 return new PathSegCurvetoQuadraticSmoothAbs.internal_(); |
| 5415 } | 5491 } |
| 5416 | 5492 |
| 5493 @Deprecated("Internal Use Only") |
| 5417 PathSegCurvetoQuadraticSmoothAbs.internal_() : super.internal_(); | 5494 PathSegCurvetoQuadraticSmoothAbs.internal_() : super.internal_(); |
| 5418 | 5495 |
| 5419 | 5496 |
| 5420 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') | 5497 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') |
| 5421 @DocsEditable() | 5498 @DocsEditable() |
| 5422 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter
_(unwrap_jso(this)); | 5499 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter
_(unwrap_jso(this)); |
| 5423 | 5500 |
| 5424 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') | 5501 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') |
| 5425 @DocsEditable() | 5502 @DocsEditable() |
| 5426 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x
_Setter_(unwrap_jso(this), value); | 5503 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x
_Setter_(unwrap_jso(this), value); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 5451 | 5528 |
| 5452 @Deprecated("Internal Use Only") | 5529 @Deprecated("Internal Use Only") |
| 5453 static PathSegCurvetoQuadraticSmoothRel internalCreatePathSegCurvetoQuadraticS
moothRel() { | 5530 static PathSegCurvetoQuadraticSmoothRel internalCreatePathSegCurvetoQuadraticS
moothRel() { |
| 5454 return new PathSegCurvetoQuadraticSmoothRel._internalWrap(); | 5531 return new PathSegCurvetoQuadraticSmoothRel._internalWrap(); |
| 5455 } | 5532 } |
| 5456 | 5533 |
| 5457 factory PathSegCurvetoQuadraticSmoothRel._internalWrap() { | 5534 factory PathSegCurvetoQuadraticSmoothRel._internalWrap() { |
| 5458 return new PathSegCurvetoQuadraticSmoothRel.internal_(); | 5535 return new PathSegCurvetoQuadraticSmoothRel.internal_(); |
| 5459 } | 5536 } |
| 5460 | 5537 |
| 5538 @Deprecated("Internal Use Only") |
| 5461 PathSegCurvetoQuadraticSmoothRel.internal_() : super.internal_(); | 5539 PathSegCurvetoQuadraticSmoothRel.internal_() : super.internal_(); |
| 5462 | 5540 |
| 5463 | 5541 |
| 5464 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') | 5542 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') |
| 5465 @DocsEditable() | 5543 @DocsEditable() |
| 5466 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter
_(unwrap_jso(this)); | 5544 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter
_(unwrap_jso(this)); |
| 5467 | 5545 |
| 5468 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') | 5546 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') |
| 5469 @DocsEditable() | 5547 @DocsEditable() |
| 5470 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x
_Setter_(unwrap_jso(this), value); | 5548 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x
_Setter_(unwrap_jso(this), value); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 5495 | 5573 |
| 5496 @Deprecated("Internal Use Only") | 5574 @Deprecated("Internal Use Only") |
| 5497 static PathSegLinetoAbs internalCreatePathSegLinetoAbs() { | 5575 static PathSegLinetoAbs internalCreatePathSegLinetoAbs() { |
| 5498 return new PathSegLinetoAbs._internalWrap(); | 5576 return new PathSegLinetoAbs._internalWrap(); |
| 5499 } | 5577 } |
| 5500 | 5578 |
| 5501 factory PathSegLinetoAbs._internalWrap() { | 5579 factory PathSegLinetoAbs._internalWrap() { |
| 5502 return new PathSegLinetoAbs.internal_(); | 5580 return new PathSegLinetoAbs.internal_(); |
| 5503 } | 5581 } |
| 5504 | 5582 |
| 5583 @Deprecated("Internal Use Only") |
| 5505 PathSegLinetoAbs.internal_() : super.internal_(); | 5584 PathSegLinetoAbs.internal_() : super.internal_(); |
| 5506 | 5585 |
| 5507 | 5586 |
| 5508 @DomName('SVGPathSegLinetoAbs.x') | 5587 @DomName('SVGPathSegLinetoAbs.x') |
| 5509 @DocsEditable() | 5588 @DocsEditable() |
| 5510 num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); | 5589 num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); |
| 5511 | 5590 |
| 5512 @DomName('SVGPathSegLinetoAbs.x') | 5591 @DomName('SVGPathSegLinetoAbs.x') |
| 5513 @DocsEditable() | 5592 @DocsEditable() |
| 5514 set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Setter_(unwrap_
jso(this), value); | 5593 set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Setter_(unwrap_
jso(this), value); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 5539 | 5618 |
| 5540 @Deprecated("Internal Use Only") | 5619 @Deprecated("Internal Use Only") |
| 5541 static PathSegLinetoHorizontalAbs internalCreatePathSegLinetoHorizontalAbs() { | 5620 static PathSegLinetoHorizontalAbs internalCreatePathSegLinetoHorizontalAbs() { |
| 5542 return new PathSegLinetoHorizontalAbs._internalWrap(); | 5621 return new PathSegLinetoHorizontalAbs._internalWrap(); |
| 5543 } | 5622 } |
| 5544 | 5623 |
| 5545 factory PathSegLinetoHorizontalAbs._internalWrap() { | 5624 factory PathSegLinetoHorizontalAbs._internalWrap() { |
| 5546 return new PathSegLinetoHorizontalAbs.internal_(); | 5625 return new PathSegLinetoHorizontalAbs.internal_(); |
| 5547 } | 5626 } |
| 5548 | 5627 |
| 5628 @Deprecated("Internal Use Only") |
| 5549 PathSegLinetoHorizontalAbs.internal_() : super.internal_(); | 5629 PathSegLinetoHorizontalAbs.internal_() : super.internal_(); |
| 5550 | 5630 |
| 5551 | 5631 |
| 5552 @DomName('SVGPathSegLinetoHorizontalAbs.x') | 5632 @DomName('SVGPathSegLinetoHorizontalAbs.x') |
| 5553 @DocsEditable() | 5633 @DocsEditable() |
| 5554 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(unwr
ap_jso(this)); | 5634 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(unwr
ap_jso(this)); |
| 5555 | 5635 |
| 5556 @DomName('SVGPathSegLinetoHorizontalAbs.x') | 5636 @DomName('SVGPathSegLinetoHorizontalAbs.x') |
| 5557 @DocsEditable() | 5637 @DocsEditable() |
| 5558 set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Sette
r_(unwrap_jso(this), value); | 5638 set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Sette
r_(unwrap_jso(this), value); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 5575 | 5655 |
| 5576 @Deprecated("Internal Use Only") | 5656 @Deprecated("Internal Use Only") |
| 5577 static PathSegLinetoHorizontalRel internalCreatePathSegLinetoHorizontalRel() { | 5657 static PathSegLinetoHorizontalRel internalCreatePathSegLinetoHorizontalRel() { |
| 5578 return new PathSegLinetoHorizontalRel._internalWrap(); | 5658 return new PathSegLinetoHorizontalRel._internalWrap(); |
| 5579 } | 5659 } |
| 5580 | 5660 |
| 5581 factory PathSegLinetoHorizontalRel._internalWrap() { | 5661 factory PathSegLinetoHorizontalRel._internalWrap() { |
| 5582 return new PathSegLinetoHorizontalRel.internal_(); | 5662 return new PathSegLinetoHorizontalRel.internal_(); |
| 5583 } | 5663 } |
| 5584 | 5664 |
| 5665 @Deprecated("Internal Use Only") |
| 5585 PathSegLinetoHorizontalRel.internal_() : super.internal_(); | 5666 PathSegLinetoHorizontalRel.internal_() : super.internal_(); |
| 5586 | 5667 |
| 5587 | 5668 |
| 5588 @DomName('SVGPathSegLinetoHorizontalRel.x') | 5669 @DomName('SVGPathSegLinetoHorizontalRel.x') |
| 5589 @DocsEditable() | 5670 @DocsEditable() |
| 5590 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(unwr
ap_jso(this)); | 5671 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(unwr
ap_jso(this)); |
| 5591 | 5672 |
| 5592 @DomName('SVGPathSegLinetoHorizontalRel.x') | 5673 @DomName('SVGPathSegLinetoHorizontalRel.x') |
| 5593 @DocsEditable() | 5674 @DocsEditable() |
| 5594 set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Sette
r_(unwrap_jso(this), value); | 5675 set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Sette
r_(unwrap_jso(this), value); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 5611 | 5692 |
| 5612 @Deprecated("Internal Use Only") | 5693 @Deprecated("Internal Use Only") |
| 5613 static PathSegLinetoRel internalCreatePathSegLinetoRel() { | 5694 static PathSegLinetoRel internalCreatePathSegLinetoRel() { |
| 5614 return new PathSegLinetoRel._internalWrap(); | 5695 return new PathSegLinetoRel._internalWrap(); |
| 5615 } | 5696 } |
| 5616 | 5697 |
| 5617 factory PathSegLinetoRel._internalWrap() { | 5698 factory PathSegLinetoRel._internalWrap() { |
| 5618 return new PathSegLinetoRel.internal_(); | 5699 return new PathSegLinetoRel.internal_(); |
| 5619 } | 5700 } |
| 5620 | 5701 |
| 5702 @Deprecated("Internal Use Only") |
| 5621 PathSegLinetoRel.internal_() : super.internal_(); | 5703 PathSegLinetoRel.internal_() : super.internal_(); |
| 5622 | 5704 |
| 5623 | 5705 |
| 5624 @DomName('SVGPathSegLinetoRel.x') | 5706 @DomName('SVGPathSegLinetoRel.x') |
| 5625 @DocsEditable() | 5707 @DocsEditable() |
| 5626 num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(unwrap_jso(thi
s)); | 5708 num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(unwrap_jso(thi
s)); |
| 5627 | 5709 |
| 5628 @DomName('SVGPathSegLinetoRel.x') | 5710 @DomName('SVGPathSegLinetoRel.x') |
| 5629 @DocsEditable() | 5711 @DocsEditable() |
| 5630 set x(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.x_Setter_(unwrap_
jso(this), value); | 5712 set x(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.x_Setter_(unwrap_
jso(this), value); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 5655 | 5737 |
| 5656 @Deprecated("Internal Use Only") | 5738 @Deprecated("Internal Use Only") |
| 5657 static PathSegLinetoVerticalAbs internalCreatePathSegLinetoVerticalAbs() { | 5739 static PathSegLinetoVerticalAbs internalCreatePathSegLinetoVerticalAbs() { |
| 5658 return new PathSegLinetoVerticalAbs._internalWrap(); | 5740 return new PathSegLinetoVerticalAbs._internalWrap(); |
| 5659 } | 5741 } |
| 5660 | 5742 |
| 5661 factory PathSegLinetoVerticalAbs._internalWrap() { | 5743 factory PathSegLinetoVerticalAbs._internalWrap() { |
| 5662 return new PathSegLinetoVerticalAbs.internal_(); | 5744 return new PathSegLinetoVerticalAbs.internal_(); |
| 5663 } | 5745 } |
| 5664 | 5746 |
| 5747 @Deprecated("Internal Use Only") |
| 5665 PathSegLinetoVerticalAbs.internal_() : super.internal_(); | 5748 PathSegLinetoVerticalAbs.internal_() : super.internal_(); |
| 5666 | 5749 |
| 5667 | 5750 |
| 5668 @DomName('SVGPathSegLinetoVerticalAbs.y') | 5751 @DomName('SVGPathSegLinetoVerticalAbs.y') |
| 5669 @DocsEditable() | 5752 @DocsEditable() |
| 5670 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(unwrap
_jso(this)); | 5753 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(unwrap
_jso(this)); |
| 5671 | 5754 |
| 5672 @DomName('SVGPathSegLinetoVerticalAbs.y') | 5755 @DomName('SVGPathSegLinetoVerticalAbs.y') |
| 5673 @DocsEditable() | 5756 @DocsEditable() |
| 5674 set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Setter_
(unwrap_jso(this), value); | 5757 set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Setter_
(unwrap_jso(this), value); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 5691 | 5774 |
| 5692 @Deprecated("Internal Use Only") | 5775 @Deprecated("Internal Use Only") |
| 5693 static PathSegLinetoVerticalRel internalCreatePathSegLinetoVerticalRel() { | 5776 static PathSegLinetoVerticalRel internalCreatePathSegLinetoVerticalRel() { |
| 5694 return new PathSegLinetoVerticalRel._internalWrap(); | 5777 return new PathSegLinetoVerticalRel._internalWrap(); |
| 5695 } | 5778 } |
| 5696 | 5779 |
| 5697 factory PathSegLinetoVerticalRel._internalWrap() { | 5780 factory PathSegLinetoVerticalRel._internalWrap() { |
| 5698 return new PathSegLinetoVerticalRel.internal_(); | 5781 return new PathSegLinetoVerticalRel.internal_(); |
| 5699 } | 5782 } |
| 5700 | 5783 |
| 5784 @Deprecated("Internal Use Only") |
| 5701 PathSegLinetoVerticalRel.internal_() : super.internal_(); | 5785 PathSegLinetoVerticalRel.internal_() : super.internal_(); |
| 5702 | 5786 |
| 5703 | 5787 |
| 5704 @DomName('SVGPathSegLinetoVerticalRel.y') | 5788 @DomName('SVGPathSegLinetoVerticalRel.y') |
| 5705 @DocsEditable() | 5789 @DocsEditable() |
| 5706 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(unwrap
_jso(this)); | 5790 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(unwrap
_jso(this)); |
| 5707 | 5791 |
| 5708 @DomName('SVGPathSegLinetoVerticalRel.y') | 5792 @DomName('SVGPathSegLinetoVerticalRel.y') |
| 5709 @DocsEditable() | 5793 @DocsEditable() |
| 5710 set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Setter_
(unwrap_jso(this), value); | 5794 set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Setter_
(unwrap_jso(this), value); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 5726 | 5810 |
| 5727 @Deprecated("Internal Use Only") | 5811 @Deprecated("Internal Use Only") |
| 5728 static PathSegList internalCreatePathSegList() { | 5812 static PathSegList internalCreatePathSegList() { |
| 5729 return new PathSegList._internalWrap(); | 5813 return new PathSegList._internalWrap(); |
| 5730 } | 5814 } |
| 5731 | 5815 |
| 5732 factory PathSegList._internalWrap() { | 5816 factory PathSegList._internalWrap() { |
| 5733 return new PathSegList.internal_(); | 5817 return new PathSegList.internal_(); |
| 5734 } | 5818 } |
| 5735 | 5819 |
| 5820 @Deprecated("Internal Use Only") |
| 5736 PathSegList.internal_() { } | 5821 PathSegList.internal_() { } |
| 5737 | 5822 |
| 5738 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 5823 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 5739 int get hashCode => unwrap_jso(this).hashCode; | 5824 int get hashCode => unwrap_jso(this).hashCode; |
| 5740 | 5825 |
| 5741 @DomName('SVGPathSegList.length') | 5826 @DomName('SVGPathSegList.length') |
| 5742 @DocsEditable() | 5827 @DocsEditable() |
| 5743 @Experimental() // untriaged | 5828 @Experimental() // untriaged |
| 5744 int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(unwrap_js
o(this)); | 5829 int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(unwrap_js
o(this)); |
| 5745 | 5830 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5842 | 5927 |
| 5843 @Deprecated("Internal Use Only") | 5928 @Deprecated("Internal Use Only") |
| 5844 static PathSegMovetoAbs internalCreatePathSegMovetoAbs() { | 5929 static PathSegMovetoAbs internalCreatePathSegMovetoAbs() { |
| 5845 return new PathSegMovetoAbs._internalWrap(); | 5930 return new PathSegMovetoAbs._internalWrap(); |
| 5846 } | 5931 } |
| 5847 | 5932 |
| 5848 factory PathSegMovetoAbs._internalWrap() { | 5933 factory PathSegMovetoAbs._internalWrap() { |
| 5849 return new PathSegMovetoAbs.internal_(); | 5934 return new PathSegMovetoAbs.internal_(); |
| 5850 } | 5935 } |
| 5851 | 5936 |
| 5937 @Deprecated("Internal Use Only") |
| 5852 PathSegMovetoAbs.internal_() : super.internal_(); | 5938 PathSegMovetoAbs.internal_() : super.internal_(); |
| 5853 | 5939 |
| 5854 | 5940 |
| 5855 @DomName('SVGPathSegMovetoAbs.x') | 5941 @DomName('SVGPathSegMovetoAbs.x') |
| 5856 @DocsEditable() | 5942 @DocsEditable() |
| 5857 num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); | 5943 num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); |
| 5858 | 5944 |
| 5859 @DomName('SVGPathSegMovetoAbs.x') | 5945 @DomName('SVGPathSegMovetoAbs.x') |
| 5860 @DocsEditable() | 5946 @DocsEditable() |
| 5861 set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Setter_(unwrap_
jso(this), value); | 5947 set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Setter_(unwrap_
jso(this), value); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 5886 | 5972 |
| 5887 @Deprecated("Internal Use Only") | 5973 @Deprecated("Internal Use Only") |
| 5888 static PathSegMovetoRel internalCreatePathSegMovetoRel() { | 5974 static PathSegMovetoRel internalCreatePathSegMovetoRel() { |
| 5889 return new PathSegMovetoRel._internalWrap(); | 5975 return new PathSegMovetoRel._internalWrap(); |
| 5890 } | 5976 } |
| 5891 | 5977 |
| 5892 factory PathSegMovetoRel._internalWrap() { | 5978 factory PathSegMovetoRel._internalWrap() { |
| 5893 return new PathSegMovetoRel.internal_(); | 5979 return new PathSegMovetoRel.internal_(); |
| 5894 } | 5980 } |
| 5895 | 5981 |
| 5982 @Deprecated("Internal Use Only") |
| 5896 PathSegMovetoRel.internal_() : super.internal_(); | 5983 PathSegMovetoRel.internal_() : super.internal_(); |
| 5897 | 5984 |
| 5898 | 5985 |
| 5899 @DomName('SVGPathSegMovetoRel.x') | 5986 @DomName('SVGPathSegMovetoRel.x') |
| 5900 @DocsEditable() | 5987 @DocsEditable() |
| 5901 num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(unwrap_jso(thi
s)); | 5988 num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(unwrap_jso(thi
s)); |
| 5902 | 5989 |
| 5903 @DomName('SVGPathSegMovetoRel.x') | 5990 @DomName('SVGPathSegMovetoRel.x') |
| 5904 @DocsEditable() | 5991 @DocsEditable() |
| 5905 set x(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.x_Setter_(unwrap_
jso(this), value); | 5992 set x(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.x_Setter_(unwrap_
jso(this), value); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 5934 | 6021 |
| 5935 @Deprecated("Internal Use Only") | 6022 @Deprecated("Internal Use Only") |
| 5936 static PatternElement internalCreatePatternElement() { | 6023 static PatternElement internalCreatePatternElement() { |
| 5937 return new PatternElement._internalWrap(); | 6024 return new PatternElement._internalWrap(); |
| 5938 } | 6025 } |
| 5939 | 6026 |
| 5940 factory PatternElement._internalWrap() { | 6027 factory PatternElement._internalWrap() { |
| 5941 return new PatternElement.internal_(); | 6028 return new PatternElement.internal_(); |
| 5942 } | 6029 } |
| 5943 | 6030 |
| 6031 @Deprecated("Internal Use Only") |
| 5944 PatternElement.internal_() : super.internal_(); | 6032 PatternElement.internal_() : super.internal_(); |
| 5945 | 6033 |
| 5946 /** | 6034 /** |
| 5947 * Constructor instantiated by the DOM when a custom element has been created. | 6035 * Constructor instantiated by the DOM when a custom element has been created. |
| 5948 * | 6036 * |
| 5949 * This can only be called by subclasses from their created constructor. | 6037 * This can only be called by subclasses from their created constructor. |
| 5950 */ | 6038 */ |
| 5951 PatternElement.created() : super.created(); | 6039 PatternElement.created() : super.created(); |
| 5952 | 6040 |
| 5953 @DomName('SVGPatternElement.height') | 6041 @DomName('SVGPatternElement.height') |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6023 | 6111 |
| 6024 @Deprecated("Internal Use Only") | 6112 @Deprecated("Internal Use Only") |
| 6025 static Point internalCreatePoint() { | 6113 static Point internalCreatePoint() { |
| 6026 return new Point._internalWrap(); | 6114 return new Point._internalWrap(); |
| 6027 } | 6115 } |
| 6028 | 6116 |
| 6029 factory Point._internalWrap() { | 6117 factory Point._internalWrap() { |
| 6030 return new Point.internal_(); | 6118 return new Point.internal_(); |
| 6031 } | 6119 } |
| 6032 | 6120 |
| 6121 @Deprecated("Internal Use Only") |
| 6033 Point.internal_() { } | 6122 Point.internal_() { } |
| 6034 | 6123 |
| 6035 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 6124 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 6036 int get hashCode => unwrap_jso(this).hashCode; | 6125 int get hashCode => unwrap_jso(this).hashCode; |
| 6037 | 6126 |
| 6038 @DomName('SVGPoint.x') | 6127 @DomName('SVGPoint.x') |
| 6039 @DocsEditable() | 6128 @DocsEditable() |
| 6040 num get x => _blink.BlinkSVGPoint.instance.x_Getter_(unwrap_jso(this)); | 6129 num get x => _blink.BlinkSVGPoint.instance.x_Getter_(unwrap_jso(this)); |
| 6041 | 6130 |
| 6042 @DomName('SVGPoint.x') | 6131 @DomName('SVGPoint.x') |
| (...skipping 29 matching lines...) Expand all Loading... |
| 6072 | 6161 |
| 6073 @Deprecated("Internal Use Only") | 6162 @Deprecated("Internal Use Only") |
| 6074 static PointList internalCreatePointList() { | 6163 static PointList internalCreatePointList() { |
| 6075 return new PointList._internalWrap(); | 6164 return new PointList._internalWrap(); |
| 6076 } | 6165 } |
| 6077 | 6166 |
| 6078 factory PointList._internalWrap() { | 6167 factory PointList._internalWrap() { |
| 6079 return new PointList.internal_(); | 6168 return new PointList.internal_(); |
| 6080 } | 6169 } |
| 6081 | 6170 |
| 6171 @Deprecated("Internal Use Only") |
| 6082 PointList.internal_() { } | 6172 PointList.internal_() { } |
| 6083 | 6173 |
| 6084 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 6174 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 6085 int get hashCode => unwrap_jso(this).hashCode; | 6175 int get hashCode => unwrap_jso(this).hashCode; |
| 6086 | 6176 |
| 6087 @DomName('SVGPointList.length') | 6177 @DomName('SVGPointList.length') |
| 6088 @DocsEditable() | 6178 @DocsEditable() |
| 6089 @Experimental() // untriaged | 6179 @Experimental() // untriaged |
| 6090 int get length => _blink.BlinkSVGPointList.instance.length_Getter_(unwrap_jso(
this)); | 6180 int get length => _blink.BlinkSVGPointList.instance.length_Getter_(unwrap_jso(
this)); |
| 6091 | 6181 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6148 | 6238 |
| 6149 @Deprecated("Internal Use Only") | 6239 @Deprecated("Internal Use Only") |
| 6150 static PolygonElement internalCreatePolygonElement() { | 6240 static PolygonElement internalCreatePolygonElement() { |
| 6151 return new PolygonElement._internalWrap(); | 6241 return new PolygonElement._internalWrap(); |
| 6152 } | 6242 } |
| 6153 | 6243 |
| 6154 factory PolygonElement._internalWrap() { | 6244 factory PolygonElement._internalWrap() { |
| 6155 return new PolygonElement.internal_(); | 6245 return new PolygonElement.internal_(); |
| 6156 } | 6246 } |
| 6157 | 6247 |
| 6248 @Deprecated("Internal Use Only") |
| 6158 PolygonElement.internal_() : super.internal_(); | 6249 PolygonElement.internal_() : super.internal_(); |
| 6159 | 6250 |
| 6160 /** | 6251 /** |
| 6161 * Constructor instantiated by the DOM when a custom element has been created. | 6252 * Constructor instantiated by the DOM when a custom element has been created. |
| 6162 * | 6253 * |
| 6163 * This can only be called by subclasses from their created constructor. | 6254 * This can only be called by subclasses from their created constructor. |
| 6164 */ | 6255 */ |
| 6165 PolygonElement.created() : super.created(); | 6256 PolygonElement.created() : super.created(); |
| 6166 | 6257 |
| 6167 @DomName('SVGPolygonElement.animatedPoints') | 6258 @DomName('SVGPolygonElement.animatedPoints') |
| (...skipping 26 matching lines...) Expand all Loading... |
| 6194 | 6285 |
| 6195 @Deprecated("Internal Use Only") | 6286 @Deprecated("Internal Use Only") |
| 6196 static PolylineElement internalCreatePolylineElement() { | 6287 static PolylineElement internalCreatePolylineElement() { |
| 6197 return new PolylineElement._internalWrap(); | 6288 return new PolylineElement._internalWrap(); |
| 6198 } | 6289 } |
| 6199 | 6290 |
| 6200 factory PolylineElement._internalWrap() { | 6291 factory PolylineElement._internalWrap() { |
| 6201 return new PolylineElement.internal_(); | 6292 return new PolylineElement.internal_(); |
| 6202 } | 6293 } |
| 6203 | 6294 |
| 6295 @Deprecated("Internal Use Only") |
| 6204 PolylineElement.internal_() : super.internal_(); | 6296 PolylineElement.internal_() : super.internal_(); |
| 6205 | 6297 |
| 6206 /** | 6298 /** |
| 6207 * Constructor instantiated by the DOM when a custom element has been created. | 6299 * Constructor instantiated by the DOM when a custom element has been created. |
| 6208 * | 6300 * |
| 6209 * This can only be called by subclasses from their created constructor. | 6301 * This can only be called by subclasses from their created constructor. |
| 6210 */ | 6302 */ |
| 6211 PolylineElement.created() : super.created(); | 6303 PolylineElement.created() : super.created(); |
| 6212 | 6304 |
| 6213 @DomName('SVGPolylineElement.animatedPoints') | 6305 @DomName('SVGPolylineElement.animatedPoints') |
| (...skipping 21 matching lines...) Expand all Loading... |
| 6235 | 6327 |
| 6236 @Deprecated("Internal Use Only") | 6328 @Deprecated("Internal Use Only") |
| 6237 static PreserveAspectRatio internalCreatePreserveAspectRatio() { | 6329 static PreserveAspectRatio internalCreatePreserveAspectRatio() { |
| 6238 return new PreserveAspectRatio._internalWrap(); | 6330 return new PreserveAspectRatio._internalWrap(); |
| 6239 } | 6331 } |
| 6240 | 6332 |
| 6241 factory PreserveAspectRatio._internalWrap() { | 6333 factory PreserveAspectRatio._internalWrap() { |
| 6242 return new PreserveAspectRatio.internal_(); | 6334 return new PreserveAspectRatio.internal_(); |
| 6243 } | 6335 } |
| 6244 | 6336 |
| 6337 @Deprecated("Internal Use Only") |
| 6245 PreserveAspectRatio.internal_() { } | 6338 PreserveAspectRatio.internal_() { } |
| 6246 | 6339 |
| 6247 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 6340 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 6248 int get hashCode => unwrap_jso(this).hashCode; | 6341 int get hashCode => unwrap_jso(this).hashCode; |
| 6249 | 6342 |
| 6250 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET') | 6343 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET') |
| 6251 @DocsEditable() | 6344 @DocsEditable() |
| 6252 static const int SVG_MEETORSLICE_MEET = 1; | 6345 static const int SVG_MEETORSLICE_MEET = 1; |
| 6253 | 6346 |
| 6254 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE') | 6347 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE') |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6341 | 6434 |
| 6342 @Deprecated("Internal Use Only") | 6435 @Deprecated("Internal Use Only") |
| 6343 static RadialGradientElement internalCreateRadialGradientElement() { | 6436 static RadialGradientElement internalCreateRadialGradientElement() { |
| 6344 return new RadialGradientElement._internalWrap(); | 6437 return new RadialGradientElement._internalWrap(); |
| 6345 } | 6438 } |
| 6346 | 6439 |
| 6347 factory RadialGradientElement._internalWrap() { | 6440 factory RadialGradientElement._internalWrap() { |
| 6348 return new RadialGradientElement.internal_(); | 6441 return new RadialGradientElement.internal_(); |
| 6349 } | 6442 } |
| 6350 | 6443 |
| 6444 @Deprecated("Internal Use Only") |
| 6351 RadialGradientElement.internal_() : super.internal_(); | 6445 RadialGradientElement.internal_() : super.internal_(); |
| 6352 | 6446 |
| 6353 /** | 6447 /** |
| 6354 * Constructor instantiated by the DOM when a custom element has been created. | 6448 * Constructor instantiated by the DOM when a custom element has been created. |
| 6355 * | 6449 * |
| 6356 * This can only be called by subclasses from their created constructor. | 6450 * This can only be called by subclasses from their created constructor. |
| 6357 */ | 6451 */ |
| 6358 RadialGradientElement.created() : super.created(); | 6452 RadialGradientElement.created() : super.created(); |
| 6359 | 6453 |
| 6360 @DomName('SVGRadialGradientElement.cx') | 6454 @DomName('SVGRadialGradientElement.cx') |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6398 | 6492 |
| 6399 @Deprecated("Internal Use Only") | 6493 @Deprecated("Internal Use Only") |
| 6400 static Rect internalCreateRect() { | 6494 static Rect internalCreateRect() { |
| 6401 return new Rect._internalWrap(); | 6495 return new Rect._internalWrap(); |
| 6402 } | 6496 } |
| 6403 | 6497 |
| 6404 factory Rect._internalWrap() { | 6498 factory Rect._internalWrap() { |
| 6405 return new Rect.internal_(); | 6499 return new Rect.internal_(); |
| 6406 } | 6500 } |
| 6407 | 6501 |
| 6502 @Deprecated("Internal Use Only") |
| 6408 Rect.internal_() { } | 6503 Rect.internal_() { } |
| 6409 | 6504 |
| 6410 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 6505 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 6411 int get hashCode => unwrap_jso(this).hashCode; | 6506 int get hashCode => unwrap_jso(this).hashCode; |
| 6412 | 6507 |
| 6413 @DomName('SVGRect.height') | 6508 @DomName('SVGRect.height') |
| 6414 @DocsEditable() | 6509 @DocsEditable() |
| 6415 num get height => _blink.BlinkSVGRect.instance.height_Getter_(unwrap_jso(this)
); | 6510 num get height => _blink.BlinkSVGRect.instance.height_Getter_(unwrap_jso(this)
); |
| 6416 | 6511 |
| 6417 @DomName('SVGRect.height') | 6512 @DomName('SVGRect.height') |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6464 | 6559 |
| 6465 @Deprecated("Internal Use Only") | 6560 @Deprecated("Internal Use Only") |
| 6466 static RectElement internalCreateRectElement() { | 6561 static RectElement internalCreateRectElement() { |
| 6467 return new RectElement._internalWrap(); | 6562 return new RectElement._internalWrap(); |
| 6468 } | 6563 } |
| 6469 | 6564 |
| 6470 factory RectElement._internalWrap() { | 6565 factory RectElement._internalWrap() { |
| 6471 return new RectElement.internal_(); | 6566 return new RectElement.internal_(); |
| 6472 } | 6567 } |
| 6473 | 6568 |
| 6569 @Deprecated("Internal Use Only") |
| 6474 RectElement.internal_() : super.internal_(); | 6570 RectElement.internal_() : super.internal_(); |
| 6475 | 6571 |
| 6476 /** | 6572 /** |
| 6477 * Constructor instantiated by the DOM when a custom element has been created. | 6573 * Constructor instantiated by the DOM when a custom element has been created. |
| 6478 * | 6574 * |
| 6479 * This can only be called by subclasses from their created constructor. | 6575 * This can only be called by subclasses from their created constructor. |
| 6480 */ | 6576 */ |
| 6481 RectElement.created() : super.created(); | 6577 RectElement.created() : super.created(); |
| 6482 | 6578 |
| 6483 @DomName('SVGRectElement.height') | 6579 @DomName('SVGRectElement.height') |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6521 | 6617 |
| 6522 @Deprecated("Internal Use Only") | 6618 @Deprecated("Internal Use Only") |
| 6523 static RenderingIntent internalCreateRenderingIntent() { | 6619 static RenderingIntent internalCreateRenderingIntent() { |
| 6524 return new RenderingIntent._internalWrap(); | 6620 return new RenderingIntent._internalWrap(); |
| 6525 } | 6621 } |
| 6526 | 6622 |
| 6527 factory RenderingIntent._internalWrap() { | 6623 factory RenderingIntent._internalWrap() { |
| 6528 return new RenderingIntent.internal_(); | 6624 return new RenderingIntent.internal_(); |
| 6529 } | 6625 } |
| 6530 | 6626 |
| 6627 @Deprecated("Internal Use Only") |
| 6531 RenderingIntent.internal_() { } | 6628 RenderingIntent.internal_() { } |
| 6532 | 6629 |
| 6533 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 6630 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 6534 int get hashCode => unwrap_jso(this).hashCode; | 6631 int get hashCode => unwrap_jso(this).hashCode; |
| 6535 | 6632 |
| 6536 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC') | 6633 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC') |
| 6537 @DocsEditable() | 6634 @DocsEditable() |
| 6538 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; | 6635 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; |
| 6539 | 6636 |
| 6540 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO') | 6637 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO') |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6579 | 6676 |
| 6580 @Deprecated("Internal Use Only") | 6677 @Deprecated("Internal Use Only") |
| 6581 static ScriptElement internalCreateScriptElement() { | 6678 static ScriptElement internalCreateScriptElement() { |
| 6582 return new ScriptElement._internalWrap(); | 6679 return new ScriptElement._internalWrap(); |
| 6583 } | 6680 } |
| 6584 | 6681 |
| 6585 factory ScriptElement._internalWrap() { | 6682 factory ScriptElement._internalWrap() { |
| 6586 return new ScriptElement.internal_(); | 6683 return new ScriptElement.internal_(); |
| 6587 } | 6684 } |
| 6588 | 6685 |
| 6686 @Deprecated("Internal Use Only") |
| 6589 ScriptElement.internal_() : super.internal_(); | 6687 ScriptElement.internal_() : super.internal_(); |
| 6590 | 6688 |
| 6591 /** | 6689 /** |
| 6592 * Constructor instantiated by the DOM when a custom element has been created. | 6690 * Constructor instantiated by the DOM when a custom element has been created. |
| 6593 * | 6691 * |
| 6594 * This can only be called by subclasses from their created constructor. | 6692 * This can only be called by subclasses from their created constructor. |
| 6595 */ | 6693 */ |
| 6596 ScriptElement.created() : super.created(); | 6694 ScriptElement.created() : super.created(); |
| 6597 | 6695 |
| 6598 @DomName('SVGScriptElement.type') | 6696 @DomName('SVGScriptElement.type') |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6632 | 6730 |
| 6633 @Deprecated("Internal Use Only") | 6731 @Deprecated("Internal Use Only") |
| 6634 static SetElement internalCreateSetElement() { | 6732 static SetElement internalCreateSetElement() { |
| 6635 return new SetElement._internalWrap(); | 6733 return new SetElement._internalWrap(); |
| 6636 } | 6734 } |
| 6637 | 6735 |
| 6638 factory SetElement._internalWrap() { | 6736 factory SetElement._internalWrap() { |
| 6639 return new SetElement.internal_(); | 6737 return new SetElement.internal_(); |
| 6640 } | 6738 } |
| 6641 | 6739 |
| 6740 @Deprecated("Internal Use Only") |
| 6642 SetElement.internal_() : super.internal_(); | 6741 SetElement.internal_() : super.internal_(); |
| 6643 | 6742 |
| 6644 /** | 6743 /** |
| 6645 * Constructor instantiated by the DOM when a custom element has been created. | 6744 * Constructor instantiated by the DOM when a custom element has been created. |
| 6646 * | 6745 * |
| 6647 * This can only be called by subclasses from their created constructor. | 6746 * This can only be called by subclasses from their created constructor. |
| 6648 */ | 6747 */ |
| 6649 SetElement.created() : super.created(); | 6748 SetElement.created() : super.created(); |
| 6650 | 6749 |
| 6651 /// Checks if this type is supported on the current platform. | 6750 /// Checks if this type is supported on the current platform. |
| (...skipping 21 matching lines...) Expand all Loading... |
| 6673 | 6772 |
| 6674 @Deprecated("Internal Use Only") | 6773 @Deprecated("Internal Use Only") |
| 6675 static StopElement internalCreateStopElement() { | 6774 static StopElement internalCreateStopElement() { |
| 6676 return new StopElement._internalWrap(); | 6775 return new StopElement._internalWrap(); |
| 6677 } | 6776 } |
| 6678 | 6777 |
| 6679 factory StopElement._internalWrap() { | 6778 factory StopElement._internalWrap() { |
| 6680 return new StopElement.internal_(); | 6779 return new StopElement.internal_(); |
| 6681 } | 6780 } |
| 6682 | 6781 |
| 6782 @Deprecated("Internal Use Only") |
| 6683 StopElement.internal_() : super.internal_(); | 6783 StopElement.internal_() : super.internal_(); |
| 6684 | 6784 |
| 6685 /** | 6785 /** |
| 6686 * Constructor instantiated by the DOM when a custom element has been created. | 6786 * Constructor instantiated by the DOM when a custom element has been created. |
| 6687 * | 6787 * |
| 6688 * This can only be called by subclasses from their created constructor. | 6788 * This can only be called by subclasses from their created constructor. |
| 6689 */ | 6789 */ |
| 6690 StopElement.created() : super.created(); | 6790 StopElement.created() : super.created(); |
| 6691 | 6791 |
| 6692 @DomName('SVGStopElement.offset') | 6792 @DomName('SVGStopElement.offset') |
| (...skipping 17 matching lines...) Expand all Loading... |
| 6710 | 6810 |
| 6711 @Deprecated("Internal Use Only") | 6811 @Deprecated("Internal Use Only") |
| 6712 static StringList internalCreateStringList() { | 6812 static StringList internalCreateStringList() { |
| 6713 return new StringList._internalWrap(); | 6813 return new StringList._internalWrap(); |
| 6714 } | 6814 } |
| 6715 | 6815 |
| 6716 factory StringList._internalWrap() { | 6816 factory StringList._internalWrap() { |
| 6717 return new StringList.internal_(); | 6817 return new StringList.internal_(); |
| 6718 } | 6818 } |
| 6719 | 6819 |
| 6820 @Deprecated("Internal Use Only") |
| 6720 StringList.internal_() { } | 6821 StringList.internal_() { } |
| 6721 | 6822 |
| 6722 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 6823 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 6723 int get hashCode => unwrap_jso(this).hashCode; | 6824 int get hashCode => unwrap_jso(this).hashCode; |
| 6724 | 6825 |
| 6725 @DomName('SVGStringList.length') | 6826 @DomName('SVGStringList.length') |
| 6726 @DocsEditable() | 6827 @DocsEditable() |
| 6727 @Experimental() // untriaged | 6828 @Experimental() // untriaged |
| 6728 int get length => _blink.BlinkSVGStringList.instance.length_Getter_(unwrap_jso
(this)); | 6829 int get length => _blink.BlinkSVGStringList.instance.length_Getter_(unwrap_jso
(this)); |
| 6729 | 6830 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6831 | 6932 |
| 6832 @Deprecated("Internal Use Only") | 6933 @Deprecated("Internal Use Only") |
| 6833 static StyleElement internalCreateStyleElement() { | 6934 static StyleElement internalCreateStyleElement() { |
| 6834 return new StyleElement._internalWrap(); | 6935 return new StyleElement._internalWrap(); |
| 6835 } | 6936 } |
| 6836 | 6937 |
| 6837 factory StyleElement._internalWrap() { | 6938 factory StyleElement._internalWrap() { |
| 6838 return new StyleElement.internal_(); | 6939 return new StyleElement.internal_(); |
| 6839 } | 6940 } |
| 6840 | 6941 |
| 6942 @Deprecated("Internal Use Only") |
| 6841 StyleElement.internal_() : super.internal_(); | 6943 StyleElement.internal_() : super.internal_(); |
| 6842 | 6944 |
| 6843 /** | 6945 /** |
| 6844 * Constructor instantiated by the DOM when a custom element has been created. | 6946 * Constructor instantiated by the DOM when a custom element has been created. |
| 6845 * | 6947 * |
| 6846 * This can only be called by subclasses from their created constructor. | 6948 * This can only be called by subclasses from their created constructor. |
| 6847 */ | 6949 */ |
| 6848 StyleElement.created() : super.created(); | 6950 StyleElement.created() : super.created(); |
| 6849 | 6951 |
| 6850 @DomName('SVGStyleElement.disabled') | 6952 @DomName('SVGStyleElement.disabled') |
| (...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7311 | 7413 |
| 7312 @Deprecated("Internal Use Only") | 7414 @Deprecated("Internal Use Only") |
| 7313 static SvgElement internalCreateSvgElement() { | 7415 static SvgElement internalCreateSvgElement() { |
| 7314 return new SvgElement._internalWrap(); | 7416 return new SvgElement._internalWrap(); |
| 7315 } | 7417 } |
| 7316 | 7418 |
| 7317 factory SvgElement._internalWrap() { | 7419 factory SvgElement._internalWrap() { |
| 7318 return new SvgElement.internal_(); | 7420 return new SvgElement.internal_(); |
| 7319 } | 7421 } |
| 7320 | 7422 |
| 7423 @Deprecated("Internal Use Only") |
| 7321 SvgElement.internal_() : super.internal_(); | 7424 SvgElement.internal_() : super.internal_(); |
| 7322 | 7425 |
| 7323 /** | 7426 /** |
| 7324 * Constructor instantiated by the DOM when a custom element has been created. | 7427 * Constructor instantiated by the DOM when a custom element has been created. |
| 7325 * | 7428 * |
| 7326 * This can only be called by subclasses from their created constructor. | 7429 * This can only be called by subclasses from their created constructor. |
| 7327 */ | 7430 */ |
| 7328 SvgElement.created() : super.created(); | 7431 SvgElement.created() : super.created(); |
| 7329 | 7432 |
| 7330 @DomName('SVGElement.className') | 7433 @DomName('SVGElement.className') |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7665 | 7768 |
| 7666 @Deprecated("Internal Use Only") | 7769 @Deprecated("Internal Use Only") |
| 7667 static SvgSvgElement internalCreateSvgSvgElement() { | 7770 static SvgSvgElement internalCreateSvgSvgElement() { |
| 7668 return new SvgSvgElement._internalWrap(); | 7771 return new SvgSvgElement._internalWrap(); |
| 7669 } | 7772 } |
| 7670 | 7773 |
| 7671 factory SvgSvgElement._internalWrap() { | 7774 factory SvgSvgElement._internalWrap() { |
| 7672 return new SvgSvgElement.internal_(); | 7775 return new SvgSvgElement.internal_(); |
| 7673 } | 7776 } |
| 7674 | 7777 |
| 7778 @Deprecated("Internal Use Only") |
| 7675 SvgSvgElement.internal_() : super.internal_(); | 7779 SvgSvgElement.internal_() : super.internal_(); |
| 7676 | 7780 |
| 7677 /** | 7781 /** |
| 7678 * Constructor instantiated by the DOM when a custom element has been created. | 7782 * Constructor instantiated by the DOM when a custom element has been created. |
| 7679 * | 7783 * |
| 7680 * This can only be called by subclasses from their created constructor. | 7784 * This can only be called by subclasses from their created constructor. |
| 7681 */ | 7785 */ |
| 7682 SvgSvgElement.created() : super.created(); | 7786 SvgSvgElement.created() : super.created(); |
| 7683 | 7787 |
| 7684 @DomName('SVGSVGElement.currentScale') | 7788 @DomName('SVGSVGElement.currentScale') |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7867 | 7971 |
| 7868 @Deprecated("Internal Use Only") | 7972 @Deprecated("Internal Use Only") |
| 7869 static SwitchElement internalCreateSwitchElement() { | 7973 static SwitchElement internalCreateSwitchElement() { |
| 7870 return new SwitchElement._internalWrap(); | 7974 return new SwitchElement._internalWrap(); |
| 7871 } | 7975 } |
| 7872 | 7976 |
| 7873 factory SwitchElement._internalWrap() { | 7977 factory SwitchElement._internalWrap() { |
| 7874 return new SwitchElement.internal_(); | 7978 return new SwitchElement.internal_(); |
| 7875 } | 7979 } |
| 7876 | 7980 |
| 7981 @Deprecated("Internal Use Only") |
| 7877 SwitchElement.internal_() : super.internal_(); | 7982 SwitchElement.internal_() : super.internal_(); |
| 7878 | 7983 |
| 7879 /** | 7984 /** |
| 7880 * Constructor instantiated by the DOM when a custom element has been created. | 7985 * Constructor instantiated by the DOM when a custom element has been created. |
| 7881 * | 7986 * |
| 7882 * This can only be called by subclasses from their created constructor. | 7987 * This can only be called by subclasses from their created constructor. |
| 7883 */ | 7988 */ |
| 7884 SwitchElement.created() : super.created(); | 7989 SwitchElement.created() : super.created(); |
| 7885 | 7990 |
| 7886 } | 7991 } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 7905 | 8010 |
| 7906 @Deprecated("Internal Use Only") | 8011 @Deprecated("Internal Use Only") |
| 7907 static SymbolElement internalCreateSymbolElement() { | 8012 static SymbolElement internalCreateSymbolElement() { |
| 7908 return new SymbolElement._internalWrap(); | 8013 return new SymbolElement._internalWrap(); |
| 7909 } | 8014 } |
| 7910 | 8015 |
| 7911 factory SymbolElement._internalWrap() { | 8016 factory SymbolElement._internalWrap() { |
| 7912 return new SymbolElement.internal_(); | 8017 return new SymbolElement.internal_(); |
| 7913 } | 8018 } |
| 7914 | 8019 |
| 8020 @Deprecated("Internal Use Only") |
| 7915 SymbolElement.internal_() : super.internal_(); | 8021 SymbolElement.internal_() : super.internal_(); |
| 7916 | 8022 |
| 7917 /** | 8023 /** |
| 7918 * Constructor instantiated by the DOM when a custom element has been created. | 8024 * Constructor instantiated by the DOM when a custom element has been created. |
| 7919 * | 8025 * |
| 7920 * This can only be called by subclasses from their created constructor. | 8026 * This can only be called by subclasses from their created constructor. |
| 7921 */ | 8027 */ |
| 7922 SymbolElement.created() : super.created(); | 8028 SymbolElement.created() : super.created(); |
| 7923 | 8029 |
| 7924 @DomName('SVGSymbolElement.preserveAspectRatio') | 8030 @DomName('SVGSymbolElement.preserveAspectRatio') |
| (...skipping 26 matching lines...) Expand all Loading... |
| 7951 | 8057 |
| 7952 @Deprecated("Internal Use Only") | 8058 @Deprecated("Internal Use Only") |
| 7953 static TSpanElement internalCreateTSpanElement() { | 8059 static TSpanElement internalCreateTSpanElement() { |
| 7954 return new TSpanElement._internalWrap(); | 8060 return new TSpanElement._internalWrap(); |
| 7955 } | 8061 } |
| 7956 | 8062 |
| 7957 factory TSpanElement._internalWrap() { | 8063 factory TSpanElement._internalWrap() { |
| 7958 return new TSpanElement.internal_(); | 8064 return new TSpanElement.internal_(); |
| 7959 } | 8065 } |
| 7960 | 8066 |
| 8067 @Deprecated("Internal Use Only") |
| 7961 TSpanElement.internal_() : super.internal_(); | 8068 TSpanElement.internal_() : super.internal_(); |
| 7962 | 8069 |
| 7963 /** | 8070 /** |
| 7964 * Constructor instantiated by the DOM when a custom element has been created. | 8071 * Constructor instantiated by the DOM when a custom element has been created. |
| 7965 * | 8072 * |
| 7966 * This can only be called by subclasses from their created constructor. | 8073 * This can only be called by subclasses from their created constructor. |
| 7967 */ | 8074 */ |
| 7968 TSpanElement.created() : super.created(); | 8075 TSpanElement.created() : super.created(); |
| 7969 | 8076 |
| 7970 } | 8077 } |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8016 | 8123 |
| 8017 @Deprecated("Internal Use Only") | 8124 @Deprecated("Internal Use Only") |
| 8018 static TextContentElement internalCreateTextContentElement() { | 8125 static TextContentElement internalCreateTextContentElement() { |
| 8019 return new TextContentElement._internalWrap(); | 8126 return new TextContentElement._internalWrap(); |
| 8020 } | 8127 } |
| 8021 | 8128 |
| 8022 factory TextContentElement._internalWrap() { | 8129 factory TextContentElement._internalWrap() { |
| 8023 return new TextContentElement.internal_(); | 8130 return new TextContentElement.internal_(); |
| 8024 } | 8131 } |
| 8025 | 8132 |
| 8133 @Deprecated("Internal Use Only") |
| 8026 TextContentElement.internal_() : super.internal_(); | 8134 TextContentElement.internal_() : super.internal_(); |
| 8027 | 8135 |
| 8028 /** | 8136 /** |
| 8029 * Constructor instantiated by the DOM when a custom element has been created. | 8137 * Constructor instantiated by the DOM when a custom element has been created. |
| 8030 * | 8138 * |
| 8031 * This can only be called by subclasses from their created constructor. | 8139 * This can only be called by subclasses from their created constructor. |
| 8032 */ | 8140 */ |
| 8033 TextContentElement.created() : super.created(); | 8141 TextContentElement.created() : super.created(); |
| 8034 | 8142 |
| 8035 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING') | 8143 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING') |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8110 | 8218 |
| 8111 @Deprecated("Internal Use Only") | 8219 @Deprecated("Internal Use Only") |
| 8112 static TextElement internalCreateTextElement() { | 8220 static TextElement internalCreateTextElement() { |
| 8113 return new TextElement._internalWrap(); | 8221 return new TextElement._internalWrap(); |
| 8114 } | 8222 } |
| 8115 | 8223 |
| 8116 factory TextElement._internalWrap() { | 8224 factory TextElement._internalWrap() { |
| 8117 return new TextElement.internal_(); | 8225 return new TextElement.internal_(); |
| 8118 } | 8226 } |
| 8119 | 8227 |
| 8228 @Deprecated("Internal Use Only") |
| 8120 TextElement.internal_() : super.internal_(); | 8229 TextElement.internal_() : super.internal_(); |
| 8121 | 8230 |
| 8122 /** | 8231 /** |
| 8123 * Constructor instantiated by the DOM when a custom element has been created. | 8232 * Constructor instantiated by the DOM when a custom element has been created. |
| 8124 * | 8233 * |
| 8125 * This can only be called by subclasses from their created constructor. | 8234 * This can only be called by subclasses from their created constructor. |
| 8126 */ | 8235 */ |
| 8127 TextElement.created() : super.created(); | 8236 TextElement.created() : super.created(); |
| 8128 | 8237 |
| 8129 } | 8238 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 8144 | 8253 |
| 8145 @Deprecated("Internal Use Only") | 8254 @Deprecated("Internal Use Only") |
| 8146 static TextPathElement internalCreateTextPathElement() { | 8255 static TextPathElement internalCreateTextPathElement() { |
| 8147 return new TextPathElement._internalWrap(); | 8256 return new TextPathElement._internalWrap(); |
| 8148 } | 8257 } |
| 8149 | 8258 |
| 8150 factory TextPathElement._internalWrap() { | 8259 factory TextPathElement._internalWrap() { |
| 8151 return new TextPathElement.internal_(); | 8260 return new TextPathElement.internal_(); |
| 8152 } | 8261 } |
| 8153 | 8262 |
| 8263 @Deprecated("Internal Use Only") |
| 8154 TextPathElement.internal_() : super.internal_(); | 8264 TextPathElement.internal_() : super.internal_(); |
| 8155 | 8265 |
| 8156 /** | 8266 /** |
| 8157 * Constructor instantiated by the DOM when a custom element has been created. | 8267 * Constructor instantiated by the DOM when a custom element has been created. |
| 8158 * | 8268 * |
| 8159 * This can only be called by subclasses from their created constructor. | 8269 * This can only be called by subclasses from their created constructor. |
| 8160 */ | 8270 */ |
| 8161 TextPathElement.created() : super.created(); | 8271 TextPathElement.created() : super.created(); |
| 8162 | 8272 |
| 8163 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN') | 8273 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN') |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8218 | 8328 |
| 8219 @Deprecated("Internal Use Only") | 8329 @Deprecated("Internal Use Only") |
| 8220 static TextPositioningElement internalCreateTextPositioningElement() { | 8330 static TextPositioningElement internalCreateTextPositioningElement() { |
| 8221 return new TextPositioningElement._internalWrap(); | 8331 return new TextPositioningElement._internalWrap(); |
| 8222 } | 8332 } |
| 8223 | 8333 |
| 8224 factory TextPositioningElement._internalWrap() { | 8334 factory TextPositioningElement._internalWrap() { |
| 8225 return new TextPositioningElement.internal_(); | 8335 return new TextPositioningElement.internal_(); |
| 8226 } | 8336 } |
| 8227 | 8337 |
| 8338 @Deprecated("Internal Use Only") |
| 8228 TextPositioningElement.internal_() : super.internal_(); | 8339 TextPositioningElement.internal_() : super.internal_(); |
| 8229 | 8340 |
| 8230 /** | 8341 /** |
| 8231 * Constructor instantiated by the DOM when a custom element has been created. | 8342 * Constructor instantiated by the DOM when a custom element has been created. |
| 8232 * | 8343 * |
| 8233 * This can only be called by subclasses from their created constructor. | 8344 * This can only be called by subclasses from their created constructor. |
| 8234 */ | 8345 */ |
| 8235 TextPositioningElement.created() : super.created(); | 8346 TextPositioningElement.created() : super.created(); |
| 8236 | 8347 |
| 8237 @DomName('SVGTextPositioningElement.dx') | 8348 @DomName('SVGTextPositioningElement.dx') |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8276 | 8387 |
| 8277 @Deprecated("Internal Use Only") | 8388 @Deprecated("Internal Use Only") |
| 8278 static TitleElement internalCreateTitleElement() { | 8389 static TitleElement internalCreateTitleElement() { |
| 8279 return new TitleElement._internalWrap(); | 8390 return new TitleElement._internalWrap(); |
| 8280 } | 8391 } |
| 8281 | 8392 |
| 8282 factory TitleElement._internalWrap() { | 8393 factory TitleElement._internalWrap() { |
| 8283 return new TitleElement.internal_(); | 8394 return new TitleElement.internal_(); |
| 8284 } | 8395 } |
| 8285 | 8396 |
| 8397 @Deprecated("Internal Use Only") |
| 8286 TitleElement.internal_() : super.internal_(); | 8398 TitleElement.internal_() : super.internal_(); |
| 8287 | 8399 |
| 8288 /** | 8400 /** |
| 8289 * Constructor instantiated by the DOM when a custom element has been created. | 8401 * Constructor instantiated by the DOM when a custom element has been created. |
| 8290 * | 8402 * |
| 8291 * This can only be called by subclasses from their created constructor. | 8403 * This can only be called by subclasses from their created constructor. |
| 8292 */ | 8404 */ |
| 8293 TitleElement.created() : super.created(); | 8405 TitleElement.created() : super.created(); |
| 8294 | 8406 |
| 8295 } | 8407 } |
| (...skipping 13 matching lines...) Expand all Loading... |
| 8309 | 8421 |
| 8310 @Deprecated("Internal Use Only") | 8422 @Deprecated("Internal Use Only") |
| 8311 static Transform internalCreateTransform() { | 8423 static Transform internalCreateTransform() { |
| 8312 return new Transform._internalWrap(); | 8424 return new Transform._internalWrap(); |
| 8313 } | 8425 } |
| 8314 | 8426 |
| 8315 factory Transform._internalWrap() { | 8427 factory Transform._internalWrap() { |
| 8316 return new Transform.internal_(); | 8428 return new Transform.internal_(); |
| 8317 } | 8429 } |
| 8318 | 8430 |
| 8431 @Deprecated("Internal Use Only") |
| 8319 Transform.internal_() { } | 8432 Transform.internal_() { } |
| 8320 | 8433 |
| 8321 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 8434 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 8322 int get hashCode => unwrap_jso(this).hashCode; | 8435 int get hashCode => unwrap_jso(this).hashCode; |
| 8323 | 8436 |
| 8324 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX') | 8437 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX') |
| 8325 @DocsEditable() | 8438 @DocsEditable() |
| 8326 static const int SVG_TRANSFORM_MATRIX = 1; | 8439 static const int SVG_TRANSFORM_MATRIX = 1; |
| 8327 | 8440 |
| 8328 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE') | 8441 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE') |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8402 | 8515 |
| 8403 @Deprecated("Internal Use Only") | 8516 @Deprecated("Internal Use Only") |
| 8404 static TransformList internalCreateTransformList() { | 8517 static TransformList internalCreateTransformList() { |
| 8405 return new TransformList._internalWrap(); | 8518 return new TransformList._internalWrap(); |
| 8406 } | 8519 } |
| 8407 | 8520 |
| 8408 factory TransformList._internalWrap() { | 8521 factory TransformList._internalWrap() { |
| 8409 return new TransformList.internal_(); | 8522 return new TransformList.internal_(); |
| 8410 } | 8523 } |
| 8411 | 8524 |
| 8525 @Deprecated("Internal Use Only") |
| 8412 TransformList.internal_() { } | 8526 TransformList.internal_() { } |
| 8413 | 8527 |
| 8414 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 8528 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 8415 int get hashCode => unwrap_jso(this).hashCode; | 8529 int get hashCode => unwrap_jso(this).hashCode; |
| 8416 | 8530 |
| 8417 @DomName('SVGTransformList.length') | 8531 @DomName('SVGTransformList.length') |
| 8418 @DocsEditable() | 8532 @DocsEditable() |
| 8419 @Experimental() // untriaged | 8533 @Experimental() // untriaged |
| 8420 int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(unwrap_
jso(this)); | 8534 int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(unwrap_
jso(this)); |
| 8421 | 8535 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8525 | 8639 |
| 8526 @Deprecated("Internal Use Only") | 8640 @Deprecated("Internal Use Only") |
| 8527 static UnitTypes internalCreateUnitTypes() { | 8641 static UnitTypes internalCreateUnitTypes() { |
| 8528 return new UnitTypes._internalWrap(); | 8642 return new UnitTypes._internalWrap(); |
| 8529 } | 8643 } |
| 8530 | 8644 |
| 8531 factory UnitTypes._internalWrap() { | 8645 factory UnitTypes._internalWrap() { |
| 8532 return new UnitTypes.internal_(); | 8646 return new UnitTypes.internal_(); |
| 8533 } | 8647 } |
| 8534 | 8648 |
| 8649 @Deprecated("Internal Use Only") |
| 8535 UnitTypes.internal_() { } | 8650 UnitTypes.internal_() { } |
| 8536 | 8651 |
| 8537 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 8652 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 8538 int get hashCode => unwrap_jso(this).hashCode; | 8653 int get hashCode => unwrap_jso(this).hashCode; |
| 8539 | 8654 |
| 8540 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') | 8655 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') |
| 8541 @DocsEditable() | 8656 @DocsEditable() |
| 8542 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; | 8657 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; |
| 8543 | 8658 |
| 8544 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN') | 8659 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN') |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8590 | 8705 |
| 8591 @Deprecated("Internal Use Only") | 8706 @Deprecated("Internal Use Only") |
| 8592 static UseElement internalCreateUseElement() { | 8707 static UseElement internalCreateUseElement() { |
| 8593 return new UseElement._internalWrap(); | 8708 return new UseElement._internalWrap(); |
| 8594 } | 8709 } |
| 8595 | 8710 |
| 8596 factory UseElement._internalWrap() { | 8711 factory UseElement._internalWrap() { |
| 8597 return new UseElement.internal_(); | 8712 return new UseElement.internal_(); |
| 8598 } | 8713 } |
| 8599 | 8714 |
| 8715 @Deprecated("Internal Use Only") |
| 8600 UseElement.internal_() : super.internal_(); | 8716 UseElement.internal_() : super.internal_(); |
| 8601 | 8717 |
| 8602 /** | 8718 /** |
| 8603 * Constructor instantiated by the DOM when a custom element has been created. | 8719 * Constructor instantiated by the DOM when a custom element has been created. |
| 8604 * | 8720 * |
| 8605 * This can only be called by subclasses from their created constructor. | 8721 * This can only be called by subclasses from their created constructor. |
| 8606 */ | 8722 */ |
| 8607 UseElement.created() : super.created(); | 8723 UseElement.created() : super.created(); |
| 8608 | 8724 |
| 8609 @DomName('SVGUseElement.height') | 8725 @DomName('SVGUseElement.height') |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8648 | 8764 |
| 8649 @Deprecated("Internal Use Only") | 8765 @Deprecated("Internal Use Only") |
| 8650 static ViewElement internalCreateViewElement() { | 8766 static ViewElement internalCreateViewElement() { |
| 8651 return new ViewElement._internalWrap(); | 8767 return new ViewElement._internalWrap(); |
| 8652 } | 8768 } |
| 8653 | 8769 |
| 8654 factory ViewElement._internalWrap() { | 8770 factory ViewElement._internalWrap() { |
| 8655 return new ViewElement.internal_(); | 8771 return new ViewElement.internal_(); |
| 8656 } | 8772 } |
| 8657 | 8773 |
| 8774 @Deprecated("Internal Use Only") |
| 8658 ViewElement.internal_() : super.internal_(); | 8775 ViewElement.internal_() : super.internal_(); |
| 8659 | 8776 |
| 8660 /** | 8777 /** |
| 8661 * Constructor instantiated by the DOM when a custom element has been created. | 8778 * Constructor instantiated by the DOM when a custom element has been created. |
| 8662 * | 8779 * |
| 8663 * This can only be called by subclasses from their created constructor. | 8780 * This can only be called by subclasses from their created constructor. |
| 8664 */ | 8781 */ |
| 8665 ViewElement.created() : super.created(); | 8782 ViewElement.created() : super.created(); |
| 8666 | 8783 |
| 8667 @DomName('SVGViewElement.viewTarget') | 8784 @DomName('SVGViewElement.viewTarget') |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8701 | 8818 |
| 8702 @Deprecated("Internal Use Only") | 8819 @Deprecated("Internal Use Only") |
| 8703 static ViewSpec internalCreateViewSpec() { | 8820 static ViewSpec internalCreateViewSpec() { |
| 8704 return new ViewSpec._internalWrap(); | 8821 return new ViewSpec._internalWrap(); |
| 8705 } | 8822 } |
| 8706 | 8823 |
| 8707 factory ViewSpec._internalWrap() { | 8824 factory ViewSpec._internalWrap() { |
| 8708 return new ViewSpec.internal_(); | 8825 return new ViewSpec.internal_(); |
| 8709 } | 8826 } |
| 8710 | 8827 |
| 8828 @Deprecated("Internal Use Only") |
| 8711 ViewSpec.internal_() { } | 8829 ViewSpec.internal_() { } |
| 8712 | 8830 |
| 8713 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 8831 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 8714 int get hashCode => unwrap_jso(this).hashCode; | 8832 int get hashCode => unwrap_jso(this).hashCode; |
| 8715 | 8833 |
| 8716 @DomName('SVGViewSpec.preserveAspectRatioString') | 8834 @DomName('SVGViewSpec.preserveAspectRatioString') |
| 8717 @DocsEditable() | 8835 @DocsEditable() |
| 8718 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.prese
rveAspectRatioString_Getter_(unwrap_jso(this)); | 8836 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.prese
rveAspectRatioString_Getter_(unwrap_jso(this)); |
| 8719 | 8837 |
| 8720 @DomName('SVGViewSpec.transform') | 8838 @DomName('SVGViewSpec.transform') |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8810 | 8928 |
| 8811 @Deprecated("Internal Use Only") | 8929 @Deprecated("Internal Use Only") |
| 8812 static ZoomEvent internalCreateZoomEvent() { | 8930 static ZoomEvent internalCreateZoomEvent() { |
| 8813 return new ZoomEvent._internalWrap(); | 8931 return new ZoomEvent._internalWrap(); |
| 8814 } | 8932 } |
| 8815 | 8933 |
| 8816 factory ZoomEvent._internalWrap() { | 8934 factory ZoomEvent._internalWrap() { |
| 8817 return new ZoomEvent.internal_(); | 8935 return new ZoomEvent.internal_(); |
| 8818 } | 8936 } |
| 8819 | 8937 |
| 8938 @Deprecated("Internal Use Only") |
| 8820 ZoomEvent.internal_() : super.internal_(); | 8939 ZoomEvent.internal_() : super.internal_(); |
| 8821 | 8940 |
| 8822 | 8941 |
| 8823 @DomName('SVGZoomEvent.newScale') | 8942 @DomName('SVGZoomEvent.newScale') |
| 8824 @DocsEditable() | 8943 @DocsEditable() |
| 8825 num get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(unwrap_
jso(this)); | 8944 num get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(unwrap_
jso(this)); |
| 8826 | 8945 |
| 8827 @DomName('SVGZoomEvent.newTranslate') | 8946 @DomName('SVGZoomEvent.newTranslate') |
| 8828 @DocsEditable() | 8947 @DocsEditable() |
| 8829 Point get newTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.newTransl
ate_Getter_(unwrap_jso(this))); | 8948 Point get newTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.newTransl
ate_Getter_(unwrap_jso(this))); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 8858 | 8977 |
| 8859 @Deprecated("Internal Use Only") | 8978 @Deprecated("Internal Use Only") |
| 8860 static _GradientElement internalCreate_GradientElement() { | 8979 static _GradientElement internalCreate_GradientElement() { |
| 8861 return new _GradientElement._internalWrap(); | 8980 return new _GradientElement._internalWrap(); |
| 8862 } | 8981 } |
| 8863 | 8982 |
| 8864 factory _GradientElement._internalWrap() { | 8983 factory _GradientElement._internalWrap() { |
| 8865 return new _GradientElement.internal_(); | 8984 return new _GradientElement.internal_(); |
| 8866 } | 8985 } |
| 8867 | 8986 |
| 8987 @Deprecated("Internal Use Only") |
| 8868 _GradientElement.internal_() : super.internal_(); | 8988 _GradientElement.internal_() : super.internal_(); |
| 8869 | 8989 |
| 8870 /** | 8990 /** |
| 8871 * Constructor instantiated by the DOM when a custom element has been created. | 8991 * Constructor instantiated by the DOM when a custom element has been created. |
| 8872 * | 8992 * |
| 8873 * This can only be called by subclasses from their created constructor. | 8993 * This can only be called by subclasses from their created constructor. |
| 8874 */ | 8994 */ |
| 8875 _GradientElement.created() : super.created(); | 8995 _GradientElement.created() : super.created(); |
| 8876 | 8996 |
| 8877 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD') | 8997 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD') |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8924 | 9044 |
| 8925 @Deprecated("Internal Use Only") | 9045 @Deprecated("Internal Use Only") |
| 8926 static _SVGAltGlyphDefElement internalCreate_SVGAltGlyphDefElement() { | 9046 static _SVGAltGlyphDefElement internalCreate_SVGAltGlyphDefElement() { |
| 8927 return new _SVGAltGlyphDefElement._internalWrap(); | 9047 return new _SVGAltGlyphDefElement._internalWrap(); |
| 8928 } | 9048 } |
| 8929 | 9049 |
| 8930 factory _SVGAltGlyphDefElement._internalWrap() { | 9050 factory _SVGAltGlyphDefElement._internalWrap() { |
| 8931 return new _SVGAltGlyphDefElement.internal_(); | 9051 return new _SVGAltGlyphDefElement.internal_(); |
| 8932 } | 9052 } |
| 8933 | 9053 |
| 9054 @Deprecated("Internal Use Only") |
| 8934 _SVGAltGlyphDefElement.internal_() : super.internal_(); | 9055 _SVGAltGlyphDefElement.internal_() : super.internal_(); |
| 8935 | 9056 |
| 8936 /** | 9057 /** |
| 8937 * Constructor instantiated by the DOM when a custom element has been created. | 9058 * Constructor instantiated by the DOM when a custom element has been created. |
| 8938 * | 9059 * |
| 8939 * This can only be called by subclasses from their created constructor. | 9060 * This can only be called by subclasses from their created constructor. |
| 8940 */ | 9061 */ |
| 8941 _SVGAltGlyphDefElement.created() : super.created(); | 9062 _SVGAltGlyphDefElement.created() : super.created(); |
| 8942 | 9063 |
| 8943 } | 9064 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 8958 | 9079 |
| 8959 @Deprecated("Internal Use Only") | 9080 @Deprecated("Internal Use Only") |
| 8960 static _SVGAltGlyphItemElement internalCreate_SVGAltGlyphItemElement() { | 9081 static _SVGAltGlyphItemElement internalCreate_SVGAltGlyphItemElement() { |
| 8961 return new _SVGAltGlyphItemElement._internalWrap(); | 9082 return new _SVGAltGlyphItemElement._internalWrap(); |
| 8962 } | 9083 } |
| 8963 | 9084 |
| 8964 factory _SVGAltGlyphItemElement._internalWrap() { | 9085 factory _SVGAltGlyphItemElement._internalWrap() { |
| 8965 return new _SVGAltGlyphItemElement.internal_(); | 9086 return new _SVGAltGlyphItemElement.internal_(); |
| 8966 } | 9087 } |
| 8967 | 9088 |
| 9089 @Deprecated("Internal Use Only") |
| 8968 _SVGAltGlyphItemElement.internal_() : super.internal_(); | 9090 _SVGAltGlyphItemElement.internal_() : super.internal_(); |
| 8969 | 9091 |
| 8970 /** | 9092 /** |
| 8971 * Constructor instantiated by the DOM when a custom element has been created. | 9093 * Constructor instantiated by the DOM when a custom element has been created. |
| 8972 * | 9094 * |
| 8973 * This can only be called by subclasses from their created constructor. | 9095 * This can only be called by subclasses from their created constructor. |
| 8974 */ | 9096 */ |
| 8975 _SVGAltGlyphItemElement.created() : super.created(); | 9097 _SVGAltGlyphItemElement.created() : super.created(); |
| 8976 | 9098 |
| 8977 } | 9099 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 8992 | 9114 |
| 8993 @Deprecated("Internal Use Only") | 9115 @Deprecated("Internal Use Only") |
| 8994 static _SVGComponentTransferFunctionElement internalCreate_SVGComponentTransfe
rFunctionElement() { | 9116 static _SVGComponentTransferFunctionElement internalCreate_SVGComponentTransfe
rFunctionElement() { |
| 8995 return new _SVGComponentTransferFunctionElement._internalWrap(); | 9117 return new _SVGComponentTransferFunctionElement._internalWrap(); |
| 8996 } | 9118 } |
| 8997 | 9119 |
| 8998 factory _SVGComponentTransferFunctionElement._internalWrap() { | 9120 factory _SVGComponentTransferFunctionElement._internalWrap() { |
| 8999 return new _SVGComponentTransferFunctionElement.internal_(); | 9121 return new _SVGComponentTransferFunctionElement.internal_(); |
| 9000 } | 9122 } |
| 9001 | 9123 |
| 9124 @Deprecated("Internal Use Only") |
| 9002 _SVGComponentTransferFunctionElement.internal_() : super.internal_(); | 9125 _SVGComponentTransferFunctionElement.internal_() : super.internal_(); |
| 9003 | 9126 |
| 9004 /** | 9127 /** |
| 9005 * Constructor instantiated by the DOM when a custom element has been created. | 9128 * Constructor instantiated by the DOM when a custom element has been created. |
| 9006 * | 9129 * |
| 9007 * This can only be called by subclasses from their created constructor. | 9130 * This can only be called by subclasses from their created constructor. |
| 9008 */ | 9131 */ |
| 9009 _SVGComponentTransferFunctionElement.created() : super.created(); | 9132 _SVGComponentTransferFunctionElement.created() : super.created(); |
| 9010 | 9133 |
| 9011 } | 9134 } |
| (...skipping 16 matching lines...) Expand all Loading... |
| 9028 | 9151 |
| 9029 @Deprecated("Internal Use Only") | 9152 @Deprecated("Internal Use Only") |
| 9030 static _SVGCursorElement internalCreate_SVGCursorElement() { | 9153 static _SVGCursorElement internalCreate_SVGCursorElement() { |
| 9031 return new _SVGCursorElement._internalWrap(); | 9154 return new _SVGCursorElement._internalWrap(); |
| 9032 } | 9155 } |
| 9033 | 9156 |
| 9034 factory _SVGCursorElement._internalWrap() { | 9157 factory _SVGCursorElement._internalWrap() { |
| 9035 return new _SVGCursorElement.internal_(); | 9158 return new _SVGCursorElement.internal_(); |
| 9036 } | 9159 } |
| 9037 | 9160 |
| 9161 @Deprecated("Internal Use Only") |
| 9038 _SVGCursorElement.internal_() : super.internal_(); | 9162 _SVGCursorElement.internal_() : super.internal_(); |
| 9039 | 9163 |
| 9040 /** | 9164 /** |
| 9041 * Constructor instantiated by the DOM when a custom element has been created. | 9165 * Constructor instantiated by the DOM when a custom element has been created. |
| 9042 * | 9166 * |
| 9043 * This can only be called by subclasses from their created constructor. | 9167 * This can only be called by subclasses from their created constructor. |
| 9044 */ | 9168 */ |
| 9045 _SVGCursorElement.created() : super.created(); | 9169 _SVGCursorElement.created() : super.created(); |
| 9046 | 9170 |
| 9047 /// Checks if this type is supported on the current platform. | 9171 /// Checks if this type is supported on the current platform. |
| (...skipping 22 matching lines...) Expand all Loading... |
| 9070 | 9194 |
| 9071 @Deprecated("Internal Use Only") | 9195 @Deprecated("Internal Use Only") |
| 9072 static _SVGFEDropShadowElement internalCreate_SVGFEDropShadowElement() { | 9196 static _SVGFEDropShadowElement internalCreate_SVGFEDropShadowElement() { |
| 9073 return new _SVGFEDropShadowElement._internalWrap(); | 9197 return new _SVGFEDropShadowElement._internalWrap(); |
| 9074 } | 9198 } |
| 9075 | 9199 |
| 9076 factory _SVGFEDropShadowElement._internalWrap() { | 9200 factory _SVGFEDropShadowElement._internalWrap() { |
| 9077 return new _SVGFEDropShadowElement.internal_(); | 9201 return new _SVGFEDropShadowElement.internal_(); |
| 9078 } | 9202 } |
| 9079 | 9203 |
| 9204 @Deprecated("Internal Use Only") |
| 9080 _SVGFEDropShadowElement.internal_() : super.internal_(); | 9205 _SVGFEDropShadowElement.internal_() : super.internal_(); |
| 9081 | 9206 |
| 9082 /** | 9207 /** |
| 9083 * Constructor instantiated by the DOM when a custom element has been created. | 9208 * Constructor instantiated by the DOM when a custom element has been created. |
| 9084 * | 9209 * |
| 9085 * This can only be called by subclasses from their created constructor. | 9210 * This can only be called by subclasses from their created constructor. |
| 9086 */ | 9211 */ |
| 9087 _SVGFEDropShadowElement.created() : super.created(); | 9212 _SVGFEDropShadowElement.created() : super.created(); |
| 9088 | 9213 |
| 9089 // Override these methods for Dartium _SVGFEDropShadowElement can't be abstrac
t. | 9214 // Override these methods for Dartium _SVGFEDropShadowElement can't be abstrac
t. |
| (...skipping 21 matching lines...) Expand all Loading... |
| 9111 | 9236 |
| 9112 @Deprecated("Internal Use Only") | 9237 @Deprecated("Internal Use Only") |
| 9113 static _SVGFontElement internalCreate_SVGFontElement() { | 9238 static _SVGFontElement internalCreate_SVGFontElement() { |
| 9114 return new _SVGFontElement._internalWrap(); | 9239 return new _SVGFontElement._internalWrap(); |
| 9115 } | 9240 } |
| 9116 | 9241 |
| 9117 factory _SVGFontElement._internalWrap() { | 9242 factory _SVGFontElement._internalWrap() { |
| 9118 return new _SVGFontElement.internal_(); | 9243 return new _SVGFontElement.internal_(); |
| 9119 } | 9244 } |
| 9120 | 9245 |
| 9246 @Deprecated("Internal Use Only") |
| 9121 _SVGFontElement.internal_() : super.internal_(); | 9247 _SVGFontElement.internal_() : super.internal_(); |
| 9122 | 9248 |
| 9123 /** | 9249 /** |
| 9124 * Constructor instantiated by the DOM when a custom element has been created. | 9250 * Constructor instantiated by the DOM when a custom element has been created. |
| 9125 * | 9251 * |
| 9126 * This can only be called by subclasses from their created constructor. | 9252 * This can only be called by subclasses from their created constructor. |
| 9127 */ | 9253 */ |
| 9128 _SVGFontElement.created() : super.created(); | 9254 _SVGFontElement.created() : super.created(); |
| 9129 | 9255 |
| 9130 } | 9256 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 9145 | 9271 |
| 9146 @Deprecated("Internal Use Only") | 9272 @Deprecated("Internal Use Only") |
| 9147 static _SVGFontFaceElement internalCreate_SVGFontFaceElement() { | 9273 static _SVGFontFaceElement internalCreate_SVGFontFaceElement() { |
| 9148 return new _SVGFontFaceElement._internalWrap(); | 9274 return new _SVGFontFaceElement._internalWrap(); |
| 9149 } | 9275 } |
| 9150 | 9276 |
| 9151 factory _SVGFontFaceElement._internalWrap() { | 9277 factory _SVGFontFaceElement._internalWrap() { |
| 9152 return new _SVGFontFaceElement.internal_(); | 9278 return new _SVGFontFaceElement.internal_(); |
| 9153 } | 9279 } |
| 9154 | 9280 |
| 9281 @Deprecated("Internal Use Only") |
| 9155 _SVGFontFaceElement.internal_() : super.internal_(); | 9282 _SVGFontFaceElement.internal_() : super.internal_(); |
| 9156 | 9283 |
| 9157 /** | 9284 /** |
| 9158 * Constructor instantiated by the DOM when a custom element has been created. | 9285 * Constructor instantiated by the DOM when a custom element has been created. |
| 9159 * | 9286 * |
| 9160 * This can only be called by subclasses from their created constructor. | 9287 * This can only be called by subclasses from their created constructor. |
| 9161 */ | 9288 */ |
| 9162 _SVGFontFaceElement.created() : super.created(); | 9289 _SVGFontFaceElement.created() : super.created(); |
| 9163 | 9290 |
| 9164 } | 9291 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 9179 | 9306 |
| 9180 @Deprecated("Internal Use Only") | 9307 @Deprecated("Internal Use Only") |
| 9181 static _SVGFontFaceFormatElement internalCreate_SVGFontFaceFormatElement() { | 9308 static _SVGFontFaceFormatElement internalCreate_SVGFontFaceFormatElement() { |
| 9182 return new _SVGFontFaceFormatElement._internalWrap(); | 9309 return new _SVGFontFaceFormatElement._internalWrap(); |
| 9183 } | 9310 } |
| 9184 | 9311 |
| 9185 factory _SVGFontFaceFormatElement._internalWrap() { | 9312 factory _SVGFontFaceFormatElement._internalWrap() { |
| 9186 return new _SVGFontFaceFormatElement.internal_(); | 9313 return new _SVGFontFaceFormatElement.internal_(); |
| 9187 } | 9314 } |
| 9188 | 9315 |
| 9316 @Deprecated("Internal Use Only") |
| 9189 _SVGFontFaceFormatElement.internal_() : super.internal_(); | 9317 _SVGFontFaceFormatElement.internal_() : super.internal_(); |
| 9190 | 9318 |
| 9191 /** | 9319 /** |
| 9192 * Constructor instantiated by the DOM when a custom element has been created. | 9320 * Constructor instantiated by the DOM when a custom element has been created. |
| 9193 * | 9321 * |
| 9194 * This can only be called by subclasses from their created constructor. | 9322 * This can only be called by subclasses from their created constructor. |
| 9195 */ | 9323 */ |
| 9196 _SVGFontFaceFormatElement.created() : super.created(); | 9324 _SVGFontFaceFormatElement.created() : super.created(); |
| 9197 | 9325 |
| 9198 } | 9326 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 9213 | 9341 |
| 9214 @Deprecated("Internal Use Only") | 9342 @Deprecated("Internal Use Only") |
| 9215 static _SVGFontFaceNameElement internalCreate_SVGFontFaceNameElement() { | 9343 static _SVGFontFaceNameElement internalCreate_SVGFontFaceNameElement() { |
| 9216 return new _SVGFontFaceNameElement._internalWrap(); | 9344 return new _SVGFontFaceNameElement._internalWrap(); |
| 9217 } | 9345 } |
| 9218 | 9346 |
| 9219 factory _SVGFontFaceNameElement._internalWrap() { | 9347 factory _SVGFontFaceNameElement._internalWrap() { |
| 9220 return new _SVGFontFaceNameElement.internal_(); | 9348 return new _SVGFontFaceNameElement.internal_(); |
| 9221 } | 9349 } |
| 9222 | 9350 |
| 9351 @Deprecated("Internal Use Only") |
| 9223 _SVGFontFaceNameElement.internal_() : super.internal_(); | 9352 _SVGFontFaceNameElement.internal_() : super.internal_(); |
| 9224 | 9353 |
| 9225 /** | 9354 /** |
| 9226 * Constructor instantiated by the DOM when a custom element has been created. | 9355 * Constructor instantiated by the DOM when a custom element has been created. |
| 9227 * | 9356 * |
| 9228 * This can only be called by subclasses from their created constructor. | 9357 * This can only be called by subclasses from their created constructor. |
| 9229 */ | 9358 */ |
| 9230 _SVGFontFaceNameElement.created() : super.created(); | 9359 _SVGFontFaceNameElement.created() : super.created(); |
| 9231 | 9360 |
| 9232 } | 9361 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 9247 | 9376 |
| 9248 @Deprecated("Internal Use Only") | 9377 @Deprecated("Internal Use Only") |
| 9249 static _SVGFontFaceSrcElement internalCreate_SVGFontFaceSrcElement() { | 9378 static _SVGFontFaceSrcElement internalCreate_SVGFontFaceSrcElement() { |
| 9250 return new _SVGFontFaceSrcElement._internalWrap(); | 9379 return new _SVGFontFaceSrcElement._internalWrap(); |
| 9251 } | 9380 } |
| 9252 | 9381 |
| 9253 factory _SVGFontFaceSrcElement._internalWrap() { | 9382 factory _SVGFontFaceSrcElement._internalWrap() { |
| 9254 return new _SVGFontFaceSrcElement.internal_(); | 9383 return new _SVGFontFaceSrcElement.internal_(); |
| 9255 } | 9384 } |
| 9256 | 9385 |
| 9386 @Deprecated("Internal Use Only") |
| 9257 _SVGFontFaceSrcElement.internal_() : super.internal_(); | 9387 _SVGFontFaceSrcElement.internal_() : super.internal_(); |
| 9258 | 9388 |
| 9259 /** | 9389 /** |
| 9260 * Constructor instantiated by the DOM when a custom element has been created. | 9390 * Constructor instantiated by the DOM when a custom element has been created. |
| 9261 * | 9391 * |
| 9262 * This can only be called by subclasses from their created constructor. | 9392 * This can only be called by subclasses from their created constructor. |
| 9263 */ | 9393 */ |
| 9264 _SVGFontFaceSrcElement.created() : super.created(); | 9394 _SVGFontFaceSrcElement.created() : super.created(); |
| 9265 | 9395 |
| 9266 } | 9396 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 9281 | 9411 |
| 9282 @Deprecated("Internal Use Only") | 9412 @Deprecated("Internal Use Only") |
| 9283 static _SVGFontFaceUriElement internalCreate_SVGFontFaceUriElement() { | 9413 static _SVGFontFaceUriElement internalCreate_SVGFontFaceUriElement() { |
| 9284 return new _SVGFontFaceUriElement._internalWrap(); | 9414 return new _SVGFontFaceUriElement._internalWrap(); |
| 9285 } | 9415 } |
| 9286 | 9416 |
| 9287 factory _SVGFontFaceUriElement._internalWrap() { | 9417 factory _SVGFontFaceUriElement._internalWrap() { |
| 9288 return new _SVGFontFaceUriElement.internal_(); | 9418 return new _SVGFontFaceUriElement.internal_(); |
| 9289 } | 9419 } |
| 9290 | 9420 |
| 9421 @Deprecated("Internal Use Only") |
| 9291 _SVGFontFaceUriElement.internal_() : super.internal_(); | 9422 _SVGFontFaceUriElement.internal_() : super.internal_(); |
| 9292 | 9423 |
| 9293 /** | 9424 /** |
| 9294 * Constructor instantiated by the DOM when a custom element has been created. | 9425 * Constructor instantiated by the DOM when a custom element has been created. |
| 9295 * | 9426 * |
| 9296 * This can only be called by subclasses from their created constructor. | 9427 * This can only be called by subclasses from their created constructor. |
| 9297 */ | 9428 */ |
| 9298 _SVGFontFaceUriElement.created() : super.created(); | 9429 _SVGFontFaceUriElement.created() : super.created(); |
| 9299 | 9430 |
| 9300 } | 9431 } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 9319 | 9450 |
| 9320 @Deprecated("Internal Use Only") | 9451 @Deprecated("Internal Use Only") |
| 9321 static _SVGGlyphElement internalCreate_SVGGlyphElement() { | 9452 static _SVGGlyphElement internalCreate_SVGGlyphElement() { |
| 9322 return new _SVGGlyphElement._internalWrap(); | 9453 return new _SVGGlyphElement._internalWrap(); |
| 9323 } | 9454 } |
| 9324 | 9455 |
| 9325 factory _SVGGlyphElement._internalWrap() { | 9456 factory _SVGGlyphElement._internalWrap() { |
| 9326 return new _SVGGlyphElement.internal_(); | 9457 return new _SVGGlyphElement.internal_(); |
| 9327 } | 9458 } |
| 9328 | 9459 |
| 9460 @Deprecated("Internal Use Only") |
| 9329 _SVGGlyphElement.internal_() : super.internal_(); | 9461 _SVGGlyphElement.internal_() : super.internal_(); |
| 9330 | 9462 |
| 9331 /** | 9463 /** |
| 9332 * Constructor instantiated by the DOM when a custom element has been created. | 9464 * Constructor instantiated by the DOM when a custom element has been created. |
| 9333 * | 9465 * |
| 9334 * This can only be called by subclasses from their created constructor. | 9466 * This can only be called by subclasses from their created constructor. |
| 9335 */ | 9467 */ |
| 9336 _SVGGlyphElement.created() : super.created(); | 9468 _SVGGlyphElement.created() : super.created(); |
| 9337 | 9469 |
| 9338 } | 9470 } |
| (...skipping 12 matching lines...) Expand all Loading... |
| 9351 | 9483 |
| 9352 @Deprecated("Internal Use Only") | 9484 @Deprecated("Internal Use Only") |
| 9353 static _SVGGlyphRefElement internalCreate_SVGGlyphRefElement() { | 9485 static _SVGGlyphRefElement internalCreate_SVGGlyphRefElement() { |
| 9354 return new _SVGGlyphRefElement._internalWrap(); | 9486 return new _SVGGlyphRefElement._internalWrap(); |
| 9355 } | 9487 } |
| 9356 | 9488 |
| 9357 factory _SVGGlyphRefElement._internalWrap() { | 9489 factory _SVGGlyphRefElement._internalWrap() { |
| 9358 return new _SVGGlyphRefElement.internal_(); | 9490 return new _SVGGlyphRefElement.internal_(); |
| 9359 } | 9491 } |
| 9360 | 9492 |
| 9493 @Deprecated("Internal Use Only") |
| 9361 _SVGGlyphRefElement.internal_() : super.internal_(); | 9494 _SVGGlyphRefElement.internal_() : super.internal_(); |
| 9362 | 9495 |
| 9363 /** | 9496 /** |
| 9364 * Constructor instantiated by the DOM when a custom element has been created. | 9497 * Constructor instantiated by the DOM when a custom element has been created. |
| 9365 * | 9498 * |
| 9366 * This can only be called by subclasses from their created constructor. | 9499 * This can only be called by subclasses from their created constructor. |
| 9367 */ | 9500 */ |
| 9368 _SVGGlyphRefElement.created() : super.created(); | 9501 _SVGGlyphRefElement.created() : super.created(); |
| 9369 | 9502 |
| 9370 // Override these methods for Dartium _SVGGlyphRefElement can't be abstract. | 9503 // Override these methods for Dartium _SVGGlyphRefElement can't be abstract. |
| (...skipping 21 matching lines...) Expand all Loading... |
| 9392 | 9525 |
| 9393 @Deprecated("Internal Use Only") | 9526 @Deprecated("Internal Use Only") |
| 9394 static _SVGHKernElement internalCreate_SVGHKernElement() { | 9527 static _SVGHKernElement internalCreate_SVGHKernElement() { |
| 9395 return new _SVGHKernElement._internalWrap(); | 9528 return new _SVGHKernElement._internalWrap(); |
| 9396 } | 9529 } |
| 9397 | 9530 |
| 9398 factory _SVGHKernElement._internalWrap() { | 9531 factory _SVGHKernElement._internalWrap() { |
| 9399 return new _SVGHKernElement.internal_(); | 9532 return new _SVGHKernElement.internal_(); |
| 9400 } | 9533 } |
| 9401 | 9534 |
| 9535 @Deprecated("Internal Use Only") |
| 9402 _SVGHKernElement.internal_() : super.internal_(); | 9536 _SVGHKernElement.internal_() : super.internal_(); |
| 9403 | 9537 |
| 9404 /** | 9538 /** |
| 9405 * Constructor instantiated by the DOM when a custom element has been created. | 9539 * Constructor instantiated by the DOM when a custom element has been created. |
| 9406 * | 9540 * |
| 9407 * This can only be called by subclasses from their created constructor. | 9541 * This can only be called by subclasses from their created constructor. |
| 9408 */ | 9542 */ |
| 9409 _SVGHKernElement.created() : super.created(); | 9543 _SVGHKernElement.created() : super.created(); |
| 9410 | 9544 |
| 9411 } | 9545 } |
| (...skipping 15 matching lines...) Expand all Loading... |
| 9427 | 9561 |
| 9428 @Deprecated("Internal Use Only") | 9562 @Deprecated("Internal Use Only") |
| 9429 static _SVGMPathElement internalCreate_SVGMPathElement() { | 9563 static _SVGMPathElement internalCreate_SVGMPathElement() { |
| 9430 return new _SVGMPathElement._internalWrap(); | 9564 return new _SVGMPathElement._internalWrap(); |
| 9431 } | 9565 } |
| 9432 | 9566 |
| 9433 factory _SVGMPathElement._internalWrap() { | 9567 factory _SVGMPathElement._internalWrap() { |
| 9434 return new _SVGMPathElement.internal_(); | 9568 return new _SVGMPathElement.internal_(); |
| 9435 } | 9569 } |
| 9436 | 9570 |
| 9571 @Deprecated("Internal Use Only") |
| 9437 _SVGMPathElement.internal_() : super.internal_(); | 9572 _SVGMPathElement.internal_() : super.internal_(); |
| 9438 | 9573 |
| 9439 /** | 9574 /** |
| 9440 * Constructor instantiated by the DOM when a custom element has been created. | 9575 * Constructor instantiated by the DOM when a custom element has been created. |
| 9441 * | 9576 * |
| 9442 * This can only be called by subclasses from their created constructor. | 9577 * This can only be called by subclasses from their created constructor. |
| 9443 */ | 9578 */ |
| 9444 _SVGMPathElement.created() : super.created(); | 9579 _SVGMPathElement.created() : super.created(); |
| 9445 | 9580 |
| 9446 // Override these methods for Dartium _SVGMPathElement can't be abstract. | 9581 // Override these methods for Dartium _SVGMPathElement can't be abstract. |
| (...skipping 17 matching lines...) Expand all Loading... |
| 9464 | 9599 |
| 9465 @Deprecated("Internal Use Only") | 9600 @Deprecated("Internal Use Only") |
| 9466 static _SVGMissingGlyphElement internalCreate_SVGMissingGlyphElement() { | 9601 static _SVGMissingGlyphElement internalCreate_SVGMissingGlyphElement() { |
| 9467 return new _SVGMissingGlyphElement._internalWrap(); | 9602 return new _SVGMissingGlyphElement._internalWrap(); |
| 9468 } | 9603 } |
| 9469 | 9604 |
| 9470 factory _SVGMissingGlyphElement._internalWrap() { | 9605 factory _SVGMissingGlyphElement._internalWrap() { |
| 9471 return new _SVGMissingGlyphElement.internal_(); | 9606 return new _SVGMissingGlyphElement.internal_(); |
| 9472 } | 9607 } |
| 9473 | 9608 |
| 9609 @Deprecated("Internal Use Only") |
| 9474 _SVGMissingGlyphElement.internal_() : super.internal_(); | 9610 _SVGMissingGlyphElement.internal_() : super.internal_(); |
| 9475 | 9611 |
| 9476 /** | 9612 /** |
| 9477 * Constructor instantiated by the DOM when a custom element has been created. | 9613 * Constructor instantiated by the DOM when a custom element has been created. |
| 9478 * | 9614 * |
| 9479 * This can only be called by subclasses from their created constructor. | 9615 * This can only be called by subclasses from their created constructor. |
| 9480 */ | 9616 */ |
| 9481 _SVGMissingGlyphElement.created() : super.created(); | 9617 _SVGMissingGlyphElement.created() : super.created(); |
| 9482 | 9618 |
| 9483 } | 9619 } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 9502 | 9638 |
| 9503 @Deprecated("Internal Use Only") | 9639 @Deprecated("Internal Use Only") |
| 9504 static _SVGVKernElement internalCreate_SVGVKernElement() { | 9640 static _SVGVKernElement internalCreate_SVGVKernElement() { |
| 9505 return new _SVGVKernElement._internalWrap(); | 9641 return new _SVGVKernElement._internalWrap(); |
| 9506 } | 9642 } |
| 9507 | 9643 |
| 9508 factory _SVGVKernElement._internalWrap() { | 9644 factory _SVGVKernElement._internalWrap() { |
| 9509 return new _SVGVKernElement.internal_(); | 9645 return new _SVGVKernElement.internal_(); |
| 9510 } | 9646 } |
| 9511 | 9647 |
| 9648 @Deprecated("Internal Use Only") |
| 9512 _SVGVKernElement.internal_() : super.internal_(); | 9649 _SVGVKernElement.internal_() : super.internal_(); |
| 9513 | 9650 |
| 9514 /** | 9651 /** |
| 9515 * Constructor instantiated by the DOM when a custom element has been created. | 9652 * Constructor instantiated by the DOM when a custom element has been created. |
| 9516 * | 9653 * |
| 9517 * This can only be called by subclasses from their created constructor. | 9654 * This can only be called by subclasses from their created constructor. |
| 9518 */ | 9655 */ |
| 9519 _SVGVKernElement.created() : super.created(); | 9656 _SVGVKernElement.created() : super.created(); |
| 9520 | 9657 |
| 9521 } | 9658 } |
| OLD | NEW |