| OLD | NEW |
| 1 | 1 |
| 2 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com> | 3 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com> |
| 4 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 4 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 5 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> | 5 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> |
| 6 # Copyright (C) 2006 Apple Computer, Inc. | 6 # Copyright (C) 2006 Apple Computer, Inc. |
| 7 # Copyright (C) 2007, 2008, 2009 Google Inc. | 7 # Copyright (C) 2007, 2008, 2009 Google Inc. |
| 8 # | 8 # |
| 9 # This file is part of the KDE project | 9 # This file is part of the KDE project |
| 10 # | 10 # |
| (...skipping 1695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1706 | 1706 |
| 1707 # Default, assume native type is a pointer with same type name as idl type | 1707 # Default, assume native type is a pointer with same type name as idl type |
| 1708 return "${type}*"; | 1708 return "${type}*"; |
| 1709 } | 1709 } |
| 1710 | 1710 |
| 1711 | 1711 |
| 1712 my %typeCanFailConversion = ( | 1712 my %typeCanFailConversion = ( |
| 1713 "AtomicString" => 0, | 1713 "AtomicString" => 0, |
| 1714 "Attr" => 1, | 1714 "Attr" => 1, |
| 1715 "CompareHow" => 0, | 1715 "CompareHow" => 0, |
| 1716 "DataGridColumn" => 0, |
| 1716 "DOMString" => 0, | 1717 "DOMString" => 0, |
| 1717 "DOMWindow" => 0, | 1718 "DOMWindow" => 0, |
| 1718 "DocumentType" => 0, | 1719 "DocumentType" => 0, |
| 1719 "Element" => 0, | 1720 "Element" => 0, |
| 1720 "Event" => 0, | 1721 "Event" => 0, |
| 1721 "EventListener" => 0, | 1722 "EventListener" => 0, |
| 1722 "EventTarget" => 0, | 1723 "EventTarget" => 0, |
| 1723 "HTMLElement" => 0, | 1724 "HTMLElement" => 0, |
| 1724 "HTMLOptionElement" => 0, | 1725 "HTMLOptionElement" => 0, |
| 1725 "Node" => 0, | 1726 "Node" => 0, |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2188 return 0; | 2189 return 0; |
| 2189 } | 2190 } |
| 2190 | 2191 |
| 2191 sub DebugPrint | 2192 sub DebugPrint |
| 2192 { | 2193 { |
| 2193 my $output = shift; | 2194 my $output = shift; |
| 2194 | 2195 |
| 2195 print $output; | 2196 print $output; |
| 2196 print "\n"; | 2197 print "\n"; |
| 2197 } | 2198 } |
| OLD | NEW |