Lines Matching refs:line

555        my $line;
574 $line = $line . $next_line;
576 $line =~ s/\\$/ /;
579 if ($line =~ /^\s*#/) {
580 $line = "";
586 if ($line =~ /^([ ]\s*|)else\b/) {
590 $line =~ s/^([ ]\s*|)else\b//;
593 …($null, $ifeq_config, $ifeq_config_val ) = $line =~ /^([ ]\s*|)ifeq\b.*\b(CONFIG_[A-Za-z0-9_]*)(…
594 …($null, $ifneq_config, $ifneq_config_val) = $line =~ /^([ ]\s*|)ifneq\b.*\b(CONFIG_[A-Za-z0-9_]*)…
595 …($null, $ifdef_config) = $line =~ /^([ ]\s*|)ifdef\b.*\b(CONFIG_[A-Za-z0-9_]*)…
596 …($null, $ifndef_config) = $line =~ /^([ ]\s*|)ifndef\b.*\b(CONFIG_[A-Za-z0-9_]*…
598 ($null, $ifeq) = $line =~ /^([ ]\s*|)ifeq\b\s*(.*)/;
599 ($null, $ifneq) = $line =~ /^([ ]\s*|)ifneq\b\s*(.*)/;
600 ($null, $ifdef) = $line =~ /^([ ]\s*|)ifdef\b\s*(.*)/;
601 ($null, $ifndef) = $line =~ /^([ ]\s*|)ifndef\b\s*(.*)/;
636 $line = "";
640 if ($line =~ /^([ ]\s*|)endif\b/) {
642 $line = "";
650 ($config) = $line =~ /(CONFIG_[A-Za-z0-9_]+).*\b$base.[co]\b/;
657 ($make_var) = $line =~ /\s*(\S+?)\s*[+:\?]*=.*\b$base.[co]\b/;
671 ($config) = $line =~ /(CONFIG_[A-Za-z0-9_]+).*\b$make_var\b/;
678 ($config) = $line =~ /\s*(\S+?)\s*[+:\?]*=.*\b$make_var\b/;
686 $line = "";
696 $line = "";
865 my $line;
883 while ($line = <DT_FILE>) {
884 chomp($line);
886 if ($line =~ /{/) {
897 $node = $line;
914 if ($line =~ /}/) {
918 if ($line =~ /(\s+|^)status =/) {
919 $node_enabled = $line;
926 if ($line =~ /(\s+|^)compatible =/) {
931 $compatible = $line;
956 my @line;
959 while ($line = <CONFIG_FILE>) {
960 chomp($line);
961 next LINE if ($line =~ /^\s*#/);
962 next LINE if ($line =~ /^\s*$/);
963 @line = split /=/, $line;
964 $existing_config{@line[0]} = @line[1];