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

  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
applypatchwithlocalcommit.py 42 commit_message = self._tool.checkout().commit_message_for_this_commit(git_commit=None)
43 self._tool.scm().commit_locally_with_message(commit_message.message() or state["patch"].name())
  /external/chromium/chrome/browser/sync/engine/
post_commit_message_command.cc 30 if (!SyncerProtoUtil::PostClientToServerMessage(status->commit_message(),
build_commit_command.cc 91 CommitMessage* commit_message = message.mutable_commit(); local
92 commit_message->set_cache_guid(
94 AddExtensionsActivityToMessage(session, commit_message);
102 static_cast<SyncEntity*>(commit_message->add_entries());
process_commit_response_command.cc 123 const sync_pb::CommitMessage& commit_message = local
124 status->commit_message().commit();
143 commit_message.entries(proj[i]),
482 // TODO(nick): Here, commit_message.deleted() would be more correct than
  /external/chromium/chrome/browser/sync/sessions/
status_controller.h 78 const ClientToServerMessage& commit_message() { function in class:browser_sync::sessions::StatusController
79 return shared_.commit_message;
82 return &shared_.commit_message;
session_state.h 279 ClientToServerMessage commit_message; member in struct:browser_sync::sessions::AllModelTypeState
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
upload.py 311 def _comment_text_for_commit(self, options, commit_message, tool, commit_id):
314 comment_text = commit_message.body(lstrip=True)
326 commit_message = tool.scm().commit_message_for_local_commit(commit_id)
329 bug_id = options.bug_id or parse_bug_id_from_changelog(commit_message.message()) or parse_bug_id_from_changelog(tool.scm().create_patch(git_commit=commit_id))
340 description = options.description or commit_message.description(lstrip=True, strip_url=True)
341 comment_text = self._comment_text_for_commit(options, commit_message, tool, commit_id)
452 commit_message = tool.scm().commit_message_for_local_commit(commit_id)
453 bug_title = commit_message.description(lstrip=True, strip_url=True)
454 comment_text = commit_message.body(lstrip=True)
473 commit_message = tool.checkout().commit_message_for_this_commit(options.git_commit
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
api_unittest.py 121 commit_message = output.assert_outputs(self, checkout.commit_message_for_this_commit,
123 self.assertEqual(commit_message.message(), self.expected_commit_message)
  /external/chromium/net/tools/testserver/
chromiumsync.py 767 def HandleCommit(self, commit_message, commit_response):
774 commit_message: A sync_pb.CommitMessage protobuf holding the content
782 guid = commit_message.cache_guid
783 for entry in commit_message.entries:
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/
mocktool.py 550 commit_message = Mock()
551 commit_message.message = lambda:"This is a fake commit message that is at least 50 characters."
552 return commit_message

Completed in 102 milliseconds