Lines Matching refs:max_line_length
59 my $max_line_length = 100;
108 --max-line-length=n set the maximum line length, (default $max_line_length)
307 'max-line-length=i' => \$max_line_length,
3654 # There are a few types of lines that may extend beyond $max_line_length:
3661 # LONG_LINE_COMMENT a comment starts before but extends beyond $max_line_length
3662 # LONG_LINE_STRING a string starts before but extends beyond $max_line_length
3663 # LONG_LINE all other lines longer than $max_line_length
3668 if ($line =~ /^\+/ && $length > $max_line_length) {
3674 # before $max_line_length
3676 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3696 # a comment starts before $max_line_length
3698 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3701 # a quoted string starts before $max_line_length
3703 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3712 "line length of $length exceeds $max_line_length columns\n" . $herecurr);