| OLD | NEW |
| 1 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 1 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
| 2 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com> | 2 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com> |
| 3 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> | 4 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> |
| 5 # Copyright (C) 2006 Apple Computer, Inc. | 5 # Copyright (C) 2006 Apple Computer, Inc. |
| 6 # Copyright (C) 2007, 2008, 2009, 2012 Google Inc. | 6 # Copyright (C) 2007, 2008, 2009, 2012 Google Inc. |
| 7 # Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> | 7 # Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> |
| 8 # Copyright (C) Research In Motion Limited 2010. All rights reserved. | 8 # Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 9 # Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 # Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 10 # Copyright (C) 2012 Ericsson AB. All rights reserved. | 10 # Copyright (C) 2012 Ericsson AB. All rights reserved. |
| (...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 536 $svgPropertyType = "SVGPoint" if $svgPropertyType eq "FloatPoint"; | 536 $svgPropertyType = "SVGPoint" if $svgPropertyType eq "FloatPoint"; |
| 537 } | 537 } |
| 538 | 538 |
| 539 return ($svgPropertyType, $svgListPropertyType, $svgNativeType); | 539 return ($svgPropertyType, $svgListPropertyType, $svgNativeType); |
| 540 } | 540 } |
| 541 | 541 |
| 542 sub GetIndexedGetterFunction | 542 sub GetIndexedGetterFunction |
| 543 { | 543 { |
| 544 my $interface = shift; | 544 my $interface = shift; |
| 545 | 545 |
| 546 # FIXME: Expose indexed getter of WebKitCSSMixFunctionValue by removing this
special case | 546 # FIXME: Expose indexed getter of CSSMixFunctionValue by removing this speci
al case |
| 547 # because CSSValueList(which is parent of WebKitCSSMixFunctionValue) has ind
exed property getter. | 547 # because CSSValueList(which is parent of CSSMixFunctionValue) has indexed p
roperty getter. |
| 548 if ($interface->name eq "WebKitCSSMixFunctionValue") { | 548 if ($interface->name eq "CSSMixFunctionValue") { |
| 549 return 0; | 549 return 0; |
| 550 } | 550 } |
| 551 | 551 |
| 552 return GetSpecialAccessorFunctionForType($interface, "getter", "unsigned lon
g", 1); | 552 return GetSpecialAccessorFunctionForType($interface, "getter", "unsigned lon
g", 1); |
| 553 } | 553 } |
| 554 | 554 |
| 555 sub GetIndexedSetterFunction | 555 sub GetIndexedSetterFunction |
| 556 { | 556 { |
| 557 my $interface = shift; | 557 my $interface = shift; |
| 558 | 558 |
| (...skipping 5095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5654 if ($currentInterface->extendedAttributes->{$extendedAttribute}) { | 5654 if ($currentInterface->extendedAttributes->{$extendedAttribute}) { |
| 5655 $found = 1; | 5655 $found = 1; |
| 5656 } | 5656 } |
| 5657 return 1 if $found; | 5657 return 1 if $found; |
| 5658 }, 0); | 5658 }, 0); |
| 5659 | 5659 |
| 5660 return $found; | 5660 return $found; |
| 5661 } | 5661 } |
| 5662 | 5662 |
| 5663 1; | 5663 1; |
| OLD | NEW |