Lines Matching refs:ranges
11 # or just a single commit id, and uses it to identify the files and line ranges
13 # only to lines that fall into the change ranges of the changed files.
72 # including the line ranges that are changed by the commits
79 ' > $TEMPDIR/ranges.txt
90 grep "$i " $TEMPDIR/ranges.txt >> $TEMPDIR/ranges.filter || true
93 REMAINING_FILES=$(wc -l <$TEMPDIR/ranges.filter)
104 # For each file name in ranges, we show that file at the commit range
108 # with line numbers matching the ranges in the $TEMPDIR/ranges.filter file
109 for j in $(awk '{print $1}' $TEMPDIR/ranges.filter | sort -u)
117 # Now for each file in $TEMPDIR/ranges.filter, run check-format.pl
118 for j in $(awk '{print $1}' $TEMPDIR/ranges.filter | sort -u)
123 # Get the ranges for this file. Create 2 arrays. range_start contains
124 # the start lines for valid ranges from the commit. the range_end array
128 for k in $(grep ^$j $TEMPDIR/ranges.filter | awk '{print $2}')
157 # start/end ranges defined in the range_start/range_end array.