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

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
git.py 143 def _merge_base(self, git_commit=None):
144 if git_commit:
146 if 'UPSTREAM' in git_commit:
150 git_commit = git_commit.replace('UPSTREAM', upstream)
153 if git_commit.endswith('....'):
154 return git_commit[:-4]
156 if '..' not in git_commit:
157 git_commit = git_commit + "^.." + git_commi
    [all...]
scm_mock.py 82 def svn_revision_from_git_commit(self, git_commit):
83 if git_commit == '6469e754a1':
85 if git_commit == '624c3081c0':
87 if git_commit == '624caaaaaa':
scm_unittest.py 538 patch = self.scm.create_patch(git_commit="HEAD^")
544 patch = self.scm.create_patch(git_commit="HEAD~2..HEAD")
551 patch = self.scm.create_patch(git_commit="HEAD....")
608 files = self.scm.changed_files(git_commit="HEAD^")
614 files = self.scm.changed_files(git_commit="HEAD~2..HEAD")
621 files = self.scm.changed_files(git_commit="HEAD....")
648 files = self.scm.changed_files(git_commit='UPSTREAM..')
654 files = self.scm.changed_files(git_commit='UPSTREAM....')
svn.py 160 def changed_files(self, git_commit=None):
189 def create_patch(self, git_commit=None, changed_files=None):
scm.py 107 def changed_files(self, git_commit=None):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
optparser_unittest.py 44 git_commit=None):
46 git_commit=git_commit,
148 self.assertIsNone(options.git_commit)
163 self.assertEqual(options.git_commit, 'commit')
165 self.assertEqual(options.git_commit, 'commit')
167 self.assertEqual(options.git_commit, 'commit')
203 self.assertIsNone(options.git_commit)
219 git_commit="commit",
224 self.assertEqual(options.git_commit, "commit"
    [all...]
optparser.py 133 git_commit: A string representing the git commit to check.
147 git_commit=None,
166 self.git_commit = git_commit
177 if self.git_commit != other.git_commit:
219 if options.git_commit:
220 flags['git-commit'] = options.git_commit
315 metavar="COMMIT", dest="git_commit", help=git_commit_help,)
420 git_commit = options.git_commi
    [all...]
main.py 152 patch = host.scm().create_patch(options.git_commit, changed_files=changed_files)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
options.py 33 git_commit = make_option("-g", "--git-commit", action="store", dest="git_commit", help="Operate on a local commit. If a range, the commits are squashed into one. <ref>.... includes the working copy changes. UPSTREAM can be used for the upstream/tracking branch.") variable in class:Options
confirmdiff.py 66 changed_files = self._tool.scm().changed_files(self._options.git_commit)
67 return self._tool.scm().create_patch(self._options.git_commit,
abstractstep.py 47 Options.git_commit,
  /external/llvm/cmake/modules/
VersionFromVCS.cmake 63 set(GIT_COMMIT ${git_ref_id} PARENT_SCOPE)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
commandtest.py 42 options.git_commit = 'MOCK git commit'
  /external/ceres-solver/scripts/
make_release 56 GIT_COMMIT=$(git log -1 HEAD |grep commit)
99 echo "$GIT_COMMIT" >> $VERSIONFILE
  /external/skia/tools/
git_utils.py 27 git_commit()

Completed in 1004 milliseconds