HomeSort by: relevance | last modified time | path
    Searched refs:Hunk (Results 1 - 3 of 3) sorted by relevancy

  /src/external/gpl3/gcc/dist/contrib/legacy/
mklog 145 print("Next hunk %d:" % i)
148 class Hunk:
149 """Class to represent a single hunk of changes."""
161 """Does hunk describe addition of file?"""
170 """Does hunk describe removal of file?"""
200 def find_changed_funs(hunk):
201 """Find all functions touched by hunk. We don't try too hard
209 if (cache.match(r'^\*\*\*\*\*\** ([a-zA-Z0-9_].*)', hunk.hdr)
210 or cache.match(r'^@@ .* @@ ([a-zA-Z0-9_].*)', hunk.hdr)):
213 for i, line in enumerate(hunk.lines)
    [all...]
  /src/external/gpl3/gcc.old/dist/contrib/legacy/
mklog 145 print("Next hunk %d:" % i)
148 class Hunk:
149 """Class to represent a single hunk of changes."""
161 """Does hunk describe addition of file?"""
170 """Does hunk describe removal of file?"""
200 def find_changed_funs(hunk):
201 """Find all functions touched by hunk. We don't try too hard
209 if (cache.match(r'^\*\*\*\*\*\** ([a-zA-Z0-9_].*)', hunk.hdr)
210 or cache.match(r'^@@ .* @@ ([a-zA-Z0-9_].*)', hunk.hdr)):
213 for i, line in enumerate(hunk.lines)
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
gtest.cc 1129 // Helper class that holds the state for one hunk and prints it out to the
1132 // adds. It also adds the hunk header before printint into the stream.
1133 class Hunk {
1135 Hunk(size_t left_start, size_t right_start)
1178 // Print a unified diff header for one hunk.
1204 // Each hunk has a header generated by PrintHeader above plus a body with
1209 // joined into one hunk.
1225 // Find the first line to include in the hunk.
1227 Hunk hunk(l_i - prefix_context + 1, r_i - prefix_context + 1)
    [all...]

Completed in 17 milliseconds