Lines Matching full:revision
7 lastchange.py -- Chromium revision fetching utility.
19 ("revision_id", "revision", "timestamp"))
137 revision = hash_
143 revision = "{}-{}".format(hash_, pos)
145 return VersionInfo(hash_, revision, int(commit_timestamp))
167 revision.
234 parser.add_argument("--revision",
236 help=("Write last change to FILE as a one-line revision. "
243 parser.add_argument("--revision-id-only", action='store_true',
244 help=("Output the revision as a VCS revision ID only (in "
247 parser.add_argument("--revision-id-prefix",
249 help=("Adds a string prefix to the VCS revision ID."))
251 help=("Just print the revision string. Overrides any "
267 revision = args.revision
307 revision_string = version_info.revision
324 if not out_file and not header and not revision:
337 if revision:
338 WriteIfChanged(revision, revision_string)