Home | History | Annotate | Download | only in Scripts

Lines Matching refs:fileHandle

456     my ($fileHandle) = @_;
461 my $firstLine = <$fileHandle>;
541 # $fileHandle: advanced so the last line read from the handle is the first
544 # $line: the line last read from $fileHandle
567 # $lastReadLine: the line last read from $fileHandle.
570 my ($fileHandle, $line) = @_;
639 $_ = <$fileHandle>; # Not defined if end-of-file reached.
668 # $fileHandle: advanced so the last line read from the handle is the first
671 # $line: the line last read from $fileHandle
686 # $lastReadLine: the line last read from $fileHandle.
689 my ($fileHandle, $line) = @_;
736 $_ = <$fileHandle>; # Not defined if end-of-file reached.
764 # $fileHandle: advanced so the last line read from the handle is the first
768 # $line: the line last read from $fileHandle
787 # $lastReadLine: the line last read from $fileHandle.
790 my ($fileHandle, $line) = @_;
799 ($header, $lastReadLine) = parseSvnDiffHeader($fileHandle, $line);
802 ($header, $lastReadLine) = parseGitDiffHeader($fileHandle, $line);
858 # $fileHandle: a file handle advanced to the first line of the next
860 # $line: the line last read from $fileHandle.
871 # $lastReadLine: the line last read from $fileHandle
877 my ($fileHandle, $line, $optionsHashRef) = @_;
902 ($svnPropertiesHashRef, $line) = parseSvnDiffProperties($fileHandle, $line);
913 $line = <$fileHandle>;
923 ($headerHashRef, $line) = parseDiffHeader($fileHandle, $line);
1011 # $fileHandle: advanced so the last line read from the handle is the first
1014 # $line: the line last read from $fileHandle.
1021 # $lastReadLine: the line last read from $fileHandle.
1024 my ($fileHandle, $line) = @_;
1035 # We advance $fileHandle two lines so that the next line that
1042 $_ = <$fileHandle>; # Not defined if end-of-file reached.
1045 $_ = <$fileHandle>;
1060 ($propertyHashRef, $_) = parseSvnProperty($fileHandle, $_);
1079 # $fileHandle: advanced so the last line read from the handle is the first
1082 # $line: the line last read from $fileHandle.
1093 # $lastReadLine: the line last read from $fileHandle.
1096 my ($fileHandle, $line) = @_;
1109 $_ = <$fileHandle>; # Not defined if end-of-file reached.
1128 ($propertyValue, $_) = parseSvnPropertyValue($fileHandle, $_);
1172 # $fileHandle: advanced so the last line read from the handle is the first
1175 # $line: the line last read from $fileHandle.
1179 # $lastReadLine: the line last read from $fileHandle.
1182 my ($fileHandle, $line) = @_;
1195 while (<$fileHandle>) {
1219 # $fileHandle: A file handle to the patch file that has not yet been
1233 my ($fileHandle, $optionsHashRef) = @_;
1238 my $line = <$fileHandle>;
1242 ($newDiffHashRefs, $line) = parseDiff($fileHandle, $line, $optionsHashRef);