Lines Matching refs:IN
5 # Redistribution and use in source and binary forms, with or without
11 # 2. Redistributions in binary form must reproduce the above copyright
12 # notice, this list of conditions and the following disclaimer in the
21 # DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
25 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 # This script updates WebKitTools/iExploder/htdocs/cssproperties.in based on
30 # WebCore/css/CSSPropertyNames.in.
46 my $iExploderFile = File::Spec->catfile(sourceDir(), split("/", "WebKitTools/iExploder/htdocs/cssproperties.in"));
47 my $cssPropertyNamesFile = File::Spec->catfile(sourceDir(), split("/", "WebCore/css/CSSPropertyNames.in"));
66 open(IN, $cssPropertyNamesFile) || die "$!";
67 while (my $l = <IN>) {
72 close(IN);
84 open(IN, $iExploderFile) || die "$!";
85 @sections = <IN>;
86 close(IN);