Lines Matching refs:oneline
54 my $oneline;
56 $oneline = ".Set CabinetName1=" . $cabinetfile . "\n";
57 push(@{$ddffileref} ,$oneline);
58 $oneline = ".Set ReservePerCabinetSize=128\n"; # This reserves space for a digital signature.
59 push(@{$ddffileref} ,$oneline);
60 $oneline = ".Set MaxDiskSize=2147483648\n"; # This allows the .cab file to get a size of 2 GB.
61 push(@{$ddffileref} ,$oneline);
62 $oneline = ".Set CompressionType=LZX\n";
63 push(@{$ddffileref} ,$oneline);
64 $oneline = ".Set Compress=ON\n";
65 push(@{$ddffileref} ,$oneline);
66 $oneline = ".Set CompressionLevel=$installer::globals::cabfilecompressionlevel\n";
67 push(@{$ddffileref} ,$oneline);
68 $oneline = ".Set Cabinet=ON\n";
69 push(@{$ddffileref} ,$oneline);
70 $oneline = ".Set DiskDirectoryTemplate=" . $installdir . "\n";
71 push(@{$ddffileref} ,$oneline);
89 my $oneline = ${$ddffile}[$i];
91 $linelength = length($oneline);
1142 my $oneline = ${$componenttable}[$i];
1144 if ( $oneline =~ /^\s*(\S+?)\t/ ) { $componentname = $1; }
1260 my $oneline = ${$reglocatfile}[$i];
1262 if ( $oneline =~ /^\s*\#/ ) { next; } # this is a comment line
1263 if ( $oneline =~ /^\s*$/ ) { next; }
1265 if ( $oneline =~ /^\s*(.*?)\t(.*?)\t(.*?)\t(.*?)\t(\d+)\s*$/ )
1307 my $oneline = ${$filecontent}[$i];
1309 if ( $oneline =~ /\bVersionNT\b/ )