Lines Matching refs:Constant
559 our $Constant = qr{$Float|$Binary|$Octal|$Hex|$Int};
1099 our $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant|$String)};
2229 } elsif ($cur =~ /^($Ident|$Constant)/o) {
5657 $line =~ /^\+(.*)\b($Constant|[A-Z_][A-Z0-9_]*)\s*($Compare)\s*($LvalOrFunc)/) {
5664 $to !~ /^(?:Constant|[A-Z_][A-Z0-9_]*)$/ &&
5881 while ($line =~ m{($Constant|$Lval)}g) {
5885 if ($var !~ /^$Constant$/ &&
6026 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(),
6027 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo();
6028 $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz
6032 $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo
6034 $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ && # do {...} while (...); // do {...} while (...)
6035 $dstat !~ /^while\s*$Constant\s*$Constant\s*$/ && # while (...) {...}
6036 $dstat !~ /^for\s*$Constant$/ && # for (...)
6037 $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar()
6890 if ($line =~ /(\(\s*$C90_int_types\s*\)\s*)($Constant)\b/) {
7325 !($r1 =~ /^$Constant$/ || $r1 =~ /^[A-Z_][A-Z0-9_]*$/)) {