Lines Matching refs:format

84   --emacs                    emacs compile window format
932 my $git_last_include_commit = `${git_command} log --no-merges --pretty=format:"%h%n" -1 -- include`;
994 my $output = `${git_command} log --no-color --format='%H %s' -1 $commit 2>&1`;
1007 # git log --format='%H %s' -1 $line |
1044 my $lines = `${git_command} log --no-color --no-merges --pretty=format:'%H %s' $git_range`;
1066 open($FILE, '-|', "git format-patch -M --stdout -1 $filename") ||
1067 die "$P: $filename: git format-patch failed - $!\n";
2956 # Check for adding new DT bindings not in schema format
2961 "DT bindings should be in DT schema format. See: Documentation/devicetree/writing-schema.rst\n");
4524 __attribute__|format|__extension__|
6173 # Check for __attribute__ format(printf, prefer __printf
6175 $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf/) {
6177 "__printf(string-index, first-to-check) is preferred over __attribute__((format(printf, string-index, first-to-check)))\n" . $herecurr) &&
6179 $fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf\s*,\s*(.*)\)\s*\)\s*\)/"__printf(" . trim($1) . ")"/ex;
6184 # Check for __attribute__ format(scanf, prefer __scanf
6186 $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\b/) {
6188 "__scanf(string-index, first-to-check) is preferred over __attribute__((format(scanf, string-index, first-to-check)))\n" . $herecurr) &&
6190 $fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\s*,\s*(.*)\)\s*\)\s*\)/"__scanf(" . trim($1) . ")"/ex;
6448 my $format = $6;
6449 my $count = $format =~ tr@%@%@;
6451 $format =~ /^"\%(?i:ll[udxi]|[udxi]ll|ll|[hl]h?[udxi]|[udxi][hl]h?|[hl]h?|[udxi])"$/) {
6979 "Does not appear to be a unified-diff format patch\n");