Lines Matching refs:line

554        my $line;
573 $line = $line . $next_line;
575 $line =~ s/\\$/ /;
578 if ($line =~ /^\s*#/) {
579 $line = "";
585 if ($line =~ /^([ ]\s*|)else\b/) {
589 $line =~ s/^([ ]\s*|)else\b//;
592 …($null, $ifeq_config, $ifeq_config_val ) = $line =~ /^([ ]\s*|)ifeq\b.*\b(CONFIG_[A-Za-z0-9_]*)(…
593 …($null, $ifneq_config, $ifneq_config_val) = $line =~ /^([ ]\s*|)ifneq\b.*\b(CONFIG_[A-Za-z0-9_]*)…
594 …($null, $ifdef_config) = $line =~ /^([ ]\s*|)ifdef\b.*\b(CONFIG_[A-Za-z0-9_]*)…
595 …($null, $ifndef_config) = $line =~ /^([ ]\s*|)ifndef\b.*\b(CONFIG_[A-Za-z0-9_]*…
597 ($null, $ifeq) = $line =~ /^([ ]\s*|)ifeq\b\s*(.*)/;
598 ($null, $ifneq) = $line =~ /^([ ]\s*|)ifneq\b\s*(.*)/;
599 ($null, $ifdef) = $line =~ /^([ ]\s*|)ifdef\b\s*(.*)/;
600 ($null, $ifndef) = $line =~ /^([ ]\s*|)ifndef\b\s*(.*)/;
635 $line = "";
639 if ($line =~ /^([ ]\s*|)endif\b/) {
641 $line = "";
649 ($config) = $line =~ /(CONFIG_[A-Za-z0-9_]+).*\b$base.[co]\b/;
656 ($make_var) = $line =~ /\s*(\S+?)\s*[+:\?]*=.*\b$base.[co]\b/;
670 ($config) = $line =~ /(CONFIG_[A-Za-z0-9_]+).*\b$make_var\b/;
677 ($config) = $line =~ /\s*(\S+?)\s*[+:\?]*=.*\b$make_var\b/;
685 $line = "";
695 $line = "";
864 my $line;
882 while ($line = <DT_FILE>) {
883 chomp($line);
885 if ($line =~ /{/) {
896 $node = $line;
913 if ($line =~ /}/) {
917 if ($line =~ /(\s+|^)status =/) {
918 $node_enabled = $line;
925 if ($line =~ /(\s+|^)compatible =/) {
930 $compatible = $line;
955 my @line;
958 while ($line = <CONFIG_FILE>) {
959 chomp($line);
960 next LINE if ($line =~ /^\s*#/);
961 next LINE if ($line =~ /^\s*$/);
962 @line = split /=/, $line;
963 $existing_config{@line[0]} = @line[1];