HomeSort by relevance Sort by last modified time
    Searched refs:git_commit (Results 1 - 4 of 4) sorted by null

  /external/webkit/WebKitTools/Scripts/
check-webkit-style 77 if options.git_commit:
78 commit = options.git_commit
  /external/webkit/WebKitTools/Scripts/webkitpy/style/
checker.py 269 git_commit: A string representing the git commit to check.
287 git_commit=None,
310 self.git_commit = git_commit
322 if self.git_commit != other.git_commit:
405 if options.git_commit:
406 flags['git-commit'] = options.git_commit
531 git_commit = None
542 git_commit = va
    [all...]
checker_unittest.py 61 self.assertEquals(options.git_commit, None)
79 git_commit="commit",
85 self.assertEquals(options.git_commit, "commit")
99 git_commit="commit",
107 self.assertFalse(options == ProcessorOptions(git_commit="commit2"))
209 git_commit=None,
214 git_commit=git_commit,
316 self.assertEquals(options.git_commit, None)
327 self.assertEquals(options.git_commit, 'commit'
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
scm.py 431 git_commit = self.git_commit_from_svn_revision(revision)
432 return self.create_patch_from_local_commit(git_commit)
436 git_commit = self.git_commit_from_svn_revision(revision)
437 if not git_commit:
438 raise ScriptError(message='Failed to find git commit for revision %s, git svn log output: "%s"' % (revision, git_commit))
442 run_command(['git', 'revert', '--no-commit', git_commit], error_handler=Executive.ignore_error)

Completed in 93 milliseconds