Lines Matching refs:defined

291             die "couldn't do $file: $!"    unless defined $return;
295 @argvcopy = defined($configdata::config{perlargv}) ?
344 defined $version{PRE_RELEASE_TAG} ? "-$version{PRE_RELEASE_TAG}" : '';
346 defined $version{BUILD_METADATA} ? "+$version{BUILD_METADATA}" : '';
355 unless (defined $version{MAJOR}
356 && defined $version{MINOR}
357 && defined $version{PATCH}
358 && defined $version{SHLIB_VERSION});
367 if (defined env($local_config_envname)) {
859 if (defined $deprecated_disablables{$1})
946 unless defined $apitable->{$api};
1061 die "target already defined - $target (offending arg: $_)\n" if ($target ne "");
1121 grep { defined $_ && (ref $_ ne 'ARRAY' || @$_) } values %useradd;
1126 defined $user_synonyms{$_} ? $cmdvars{$user_synonyms{$_}} : undef;
1127 $value //= defined $user_synonyms{$_} ? env($user_synonyms{$_}) : undef
1130 if (defined $value) {
1137 } elsif (!defined $user{$_}) {
1157 $disabled{$_} = 'system' unless defined $disabled{$_};
1181 if (ref($test) eq "CODE" ? $test->() : defined($disabled{$test})) {
1182 foreach (grep { !defined($disabled{$_}) } @$descendents) {
1321 # If uplink_arch isn't defined, disable uplink
1322 $disabled{uplink} = 'no uplink_arch' unless (defined $target{uplink_arch});
1323 # If asm_arch isn't defined, disable asm
1324 $disabled{asm} = 'no asm_arch' unless (defined $target{asm_arch});
1352 return undef unless defined $value;
1364 delete $config{$_} unless defined $config{$_};
1374 if (defined $config{$_}) {
1469 next unless defined $d;
1472 if (defined $disabled{$d}) {
1500 unless ($disabled{asan} || defined $detected_sanitizers{asan}) {
1504 unless ($disabled{ubsan} || defined $detected_sanitizers{ubsan}) {
1508 unless ($disabled{msan} || defined $detected_sanitizers{msan}) {
1557 # If the attribute makedep_scheme is defined, then we assume that the
1565 # If the makedepcmd attribute is defined, copy it. If not, the
1661 if (defined($predefined_C{__clang__}));
1739 # are already defined
1740 $target{module_cflags} = $target{shared_cflag} unless defined $target{module_cflags};
1741 $target{module_cxxflags} = $target{shared_cxxflag} unless defined $target{module_cxxflags};
1742 $target{module_ldflags} = $target{shared_ldflag} unless defined $target{module_ldflags};
1750 last if ! defined $si;
1762 if (defined $si) {
1764 # module_ attribute unless the latter is already defined
1765 $si->{module_cflags} = $si->{shared_cflag} unless defined $si->{module_cflags};
1766 $si->{module_cxxflags} = $si->{shared_cxxflag} unless defined $si->{module_cxxflags};
1767 $si->{module_ldflags} = $si->{shared_ldflag} unless defined $si->{module_ldflags};
1769 $target{$_} = defined $target{$_}
1830 my $buildinfo_debug = defined($ENV{CONFIGURE_DEBUG_BUILDINFO});
1875 if (defined env($local_config_envname)) {
1900 if (!defined $build_file_template) {
1990 if (defined $mod) {
2021 return unless defined $attr_str;
2052 if (defined $index_str) {
2059 if (defined $attrref) {
2067 if defined $attrref;
2226 if (grep { defined $attributes{modules}->{$_}->{engine} } keys %attributes
2247 if defined $attributes{$k}->{$_};
2252 # Check that we haven't defined any library as both shared and
2257 push @doubles, $l if defined $unified_info{libraries}->{$l};
2299 if defined $attributes{sources}->{$dest}->{$_};
2303 if defined $attributes{sources}->{$dest}->{$_};
2350 if defined $attributes{sources}->{$dest}->{$_};
2354 if defined $attributes{sources}->{$dest}->{$_};
2379 if defined $attributes{generate}->{$dest}->{$gen};
2419 if defined $attributes{depends}->{$dest}->{$_};
2458 die "$1 defined more than once\n"
2459 if defined $unified_info{defines}->{$ddest}->{$1};
2462 die "$1 defined more than once\n"
2591 $d eq "configdata.pm" || defined($unified_info{generate}->{$d})
2618 if defined($unified_info{$_});
2672 if (defined $attrs->{$prod}
2673 && defined $attrs->{$prod}->{$_}) {
2692 defined($unified_info{includes}->{$_}->{$k});
2738 if (defined($unified_info{includes}->{$dest}->{build})) {
2741 if defined($unified_info{includes}->{$dest}->{source});
2748 } elsif (defined($unified_info{includes}->{$dest}->{source})) {
2968 my $found_array = !defined($separator);
2976 if (defined($res)) {
2993 join($separator, grep { defined($_) && $_ ne "" } @values);
3085 # my $extra_checks = defined($ENV{CONFIGURE_EXTRA_CHECKS});
3092 if (!defined($table{$target})) {
3154 if (!defined($object)) {
3182 unless(defined($table{$target}->{$key})) {
3451 defined($processors{$for}) ? $processors{$for} : sub { shift; };
3471 if (defined $line_concat) {
3475 if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
3500 while (defined($_ = shift @array)) {
3502 if (defined $line_concat) {
3506 if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
3525 while(defined($_ = $lineiterator->())) {
3539 unless $found || !defined $collectors{"OTHERWISE"};