| OLD | NEW | 
|---|
| 1 #!/usr/bin/perl -w | 1 #!/usr/bin/perl -w | 
| 2 | 2 | 
| 3 # Copyright (C) 2005, 2006, 2007, 2009 Apple Inc. All rights reserved. | 3 # Copyright (C) 2005, 2006, 2007, 2009 Apple Inc. All rights reserved. | 
| 4 # Copyright (C) 2009, Julien Chaffraix <jchaffraix@webkit.org> | 4 # Copyright (C) 2009, Julien Chaffraix <jchaffraix@webkit.org> | 
| 5 # Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmob
      ile.com/) | 5 # Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmob
      ile.com/) | 
| 6 # Copyright (C) 2011 Ericsson AB. All rights reserved. | 6 # Copyright (C) 2011 Ericsson AB. All rights reserved. | 
| 7 # | 7 # | 
| 8 # Redistribution and use in source and binary forms, with or without | 8 # Redistribution and use in source and binary forms, with or without | 
| 9 # modification, are permitted provided that the following conditions | 9 # modification, are permitted provided that the following conditions | 
| 10 # are met: | 10 # are met: | 
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 526 | 526 | 
| 527 "; | 527 "; | 
| 528 } | 528 } | 
| 529 | 529 | 
| 530 sub printLicenseHeader | 530 sub printLicenseHeader | 
| 531 { | 531 { | 
| 532     my $F = shift; | 532     my $F = shift; | 
| 533     print F "/* | 533     print F "/* | 
| 534  * THIS FILE WAS AUTOMATICALLY GENERATED, DO NOT EDIT. | 534  * THIS FILE WAS AUTOMATICALLY GENERATED, DO NOT EDIT. | 
| 535  * | 535  * | 
| 536  * This file was generated by the core/scripts/make_names.pl script. | 536  * This file was generated by the build/scripts/make_names.pl script. | 
| 537  * | 537  * | 
| 538  * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc.  All rights reserved. | 538  * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc.  All rights reserved. | 
| 539  * | 539  * | 
| 540  * Redistribution and use in source and binary forms, with or without | 540  * Redistribution and use in source and binary forms, with or without | 
| 541  * modification, are permitted provided that the following conditions | 541  * modification, are permitted provided that the following conditions | 
| 542  * are met: | 542  * are met: | 
| 543  * 1. Redistributions of source code must retain the above copyright | 543  * 1. Redistributions of source code must retain the above copyright | 
| 544  *    notice, this list of conditions and the following disclaimer. | 544  *    notice, this list of conditions and the following disclaimer. | 
| 545  * 2. Redistributions in binary form must reproduce the above copyright | 545  * 2. Redistributions in binary form must reproduce the above copyright | 
| 546  *    notice, this list of conditions and the following disclaimer in the | 546  *    notice, this list of conditions and the following disclaimer in the | 
| (...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1275     print F StaticString::GenerateStringImpls(\%parameters); | 1275     print F StaticString::GenerateStringImpls(\%parameters); | 
| 1276 | 1276 | 
| 1277     while ( my ($name, $identifier) = each %parameters ) { | 1277     while ( my ($name, $identifier) = each %parameters ) { | 
| 1278         print F "    new ((void*)&$name) AtomicString(${name}Impl);\n"; | 1278         print F "    new ((void*)&$name) AtomicString(${name}Impl);\n"; | 
| 1279     } | 1279     } | 
| 1280 | 1280 | 
| 1281     print F "}\n}\n}\n"; | 1281     print F "}\n}\n}\n"; | 
| 1282     close F; | 1282     close F; | 
| 1283     exit 0; | 1283     exit 0; | 
| 1284 } | 1284 } | 
| OLD | NEW | 
|---|