Lines Matching defs:expand
68 autobundle bundle expand force get cvs_import
1406 my $author = $self->expand('Author',$a) or die "No author found for $a";
1462 push @result, $self->expand($type,@args);
1612 for $module ($self->expand('Module','/./')) {
1663 my @expand = $self->expand('Module',@args);
1664 my $expand = scalar @expand;
1667 $CPAN::Frontend->myprint(sprintf "%d matches in the database\n", $expand);
1669 for $module (@expand) {
1834 # Distributions spring into existence, not expand
1840 return $self->expand('Bundle',$s);
1842 return $self->expand('Module',$s)
1848 #-> sub CPAN::Shell::expand ;
1849 sub expand {
1944 my(@result) = $self->expand($type,@args);
3784 my $premo = CPAN::Shell->expand("Module",$pre);
5218 if ( my $dist = CPAN::Shell->expand("Distribution", $self->cpan_file) ) {
5238 if ( my $dist = CPAN::Shell->expand("Distribution", $self->cpan_file) ) {
5291 if ($author = CPAN::Shell->expand('Author',$userid)) {
6257 =item expand($type,@things)
6261 C<CPAN::Shell-E<gt>expand("Module",@things)> method. Expand returns a
6268 Like expand, but returns objects of the appropriate type, i.e.
6282 my $obj = CPAN::Shell->expand('Module',$mod);
6287 for $mod (CPAN::Shell->expand("Module","/./")){
6295 print CPAN::Shell->expand("Module","Apache::Constants")->cpan_file
6311 for $mod (CPAN::Shell->expand("Module","/./")){
6321 for $mod (CPAN::Shell->expand("Module","/Apache|LWP|CGI/")){
6327 $mod = CPAN::Shell->expand("Module","mod_perl");