| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 "Document" => 1, | 209 "Document" => 1, |
| 210 "DocumentFragment" => 1, | 210 "DocumentFragment" => 1, |
| 211 "DocumentType" => 1, | 211 "DocumentType" => 1, |
| 212 "Element" => 1, | 212 "Element" => 1, |
| 213 "Entity" => 1, | 213 "Entity" => 1, |
| 214 "HTMLDocument" => 1, | 214 "HTMLDocument" => 1, |
| 215 "Node" => 1, | 215 "Node" => 1, |
| 216 "Notation" => 1, | 216 "Notation" => 1, |
| 217 "ProcessingInstruction" => 1, | 217 "ProcessingInstruction" => 1, |
| 218 "ShadowRoot" => 1, | 218 "ShadowRoot" => 1, |
| 219 "SVGDocument" => 1, | |
| 220 "Text" => 1, | 219 "Text" => 1, |
| 221 "TestNode" => 1, | 220 "TestNode" => 1, |
| 222 "TestInterfaceDocument" => 1, | 221 "TestInterfaceDocument" => 1, |
| 223 "TestInterfaceNode" => 1, | 222 "TestInterfaceNode" => 1, |
| 224 "XMLDocument" => 1, | 223 "XMLDocument" => 1, |
| 225 ); | 224 ); |
| 226 | 225 |
| 227 my %callbackFunctionTypeHash = (); | 226 my %callbackFunctionTypeHash = (); |
| 228 | 227 |
| 229 my %enumTypeHash = (); | 228 my %enumTypeHash = (); |
| (...skipping 6206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6436 if ($parameter->type eq "SerializedScriptValue") { | 6435 if ($parameter->type eq "SerializedScriptValue") { |
| 6437 return 1; | 6436 return 1; |
| 6438 } elsif (IsIntegerType($parameter->type)) { | 6437 } elsif (IsIntegerType($parameter->type)) { |
| 6439 return 1; | 6438 return 1; |
| 6440 } | 6439 } |
| 6441 } | 6440 } |
| 6442 return 0; | 6441 return 0; |
| 6443 } | 6442 } |
| 6444 | 6443 |
| 6445 1; | 6444 1; |
| OLD | NEW |