Lines Matching refs:items
158 my @items = split(/\t/, $line);
159 my $item_count = scalar @items;
160 if ($item_count>=1 && $items[0] eq $self->{'name'})
164 elsif ($item_count>=2 && $items[1] eq $self->{'name'})
166 $self->{'codepage'} = shift @items;
170 … printf STDERR ("reading wrong table data for table '%s' (got %s)\n", $self->{'name'}, $items[0]);
174 shift @items;
175 $self->{'index_columns'} = [@items];
176 $self->{'index_column_index'} = $self->GetColumnIndex($items[0]);
184 my @items = split(/\t/, $_);
185 push @$rows, new installer::patch::MsiRow($self, @items);
423 my @items = ();
441 $items[$column_index] = $value;
445 my $row_index = $self->GetRowIndex($index_column_index, $items[$index_column_index]);
450 push @{$self->{'rows'}}, installer::patch::MsiRow->new($self, @items);
455 $self->{'rows'}->[$row_index] = installer::patch::MsiRow->new($self, @items);