Lines Matching refs:list
37 my ($list, $listref) = @_; # second parameter is optional
39 my @list = ();
42 if (!( $listref )) { $locallistref = \@list; }
45 par2script::remover::remove_leading_and_ending_comma(\$list);
46 par2script::remover::remove_leading_and_ending_whitespaces(\$list);
48 while ( $list =~ /^\s*(.*?)\s*\,\s*(.*)\s*$/ )
51 $list = $2;
58 par2script::remover::remove_leading_and_ending_whitespaces(\$list);
59 push(@{$locallistref}, $list);
70 my ($list) = @_;
74 my $includes = analyze_comma_separated_list($list);
372 my $list = $allmodules->{$modulegid}->{$searchkey};
373 if ( $list =~ /^\s*\((.*?)\)\s*(.*?)\s*$/ ) { $list = $1; }
374 …else { par2script::exiter::exit_program("ERROR: Invalid module list: $list", "collect_assigned_gid…
375 … my $allassigneditems = par2script::converter::convert_stringlist_into_array_2($list, ",");