Searched refs:revision (Results 101 - 125 of 246) sorted by relevance

12345678910

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/
H A Dcommitannouncer.py166 revision = tokens[0]
167 if not revision.isdigit():
169 svn_revision = 'r%s' % revision
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/
H A Dparsecvs.php18 revision 1.1
23 revision 1.1.2.1
46 ^revision\ ([0-9\.]+)$\\n
65 wmysql_query("CREATE TEMPORARY TABLE `tmptags` (`tagname` VARBINARY(255), `revision` VARCHAR(20), PRIMARY KEY (`tagname`)) ENGINE = memory");
97 wmysql_query("INSERT INTO `tmptags` (`tagname`, `revision`) VALUES " . join($filetags, ","));
98 wmysql_query("INSERT INTO `filetags` SELECT $row[0], `tid`, `revision` FROM `tmptags` NATURAL JOIN `tags` ON DUPLICATE KEY UPDATE `filetags`.`revision` = `tmptags`.`revision`");
109 wmysql_query("INSERT INTO `commits` SET `fid` = '$row[0]', `revision` = '$revs[1]', $q ON DUPLICATE KEY UPDATE $q");
117 wmysql_query("INSERT INTO `bugs` (`fid`, `revision`, `bugi
[all...]
/external/iptables/extensions/
H A Dlibxt_MARK.c253 .revision = 0,
267 .revision = 1,
280 .revision = 2,
H A Dlibxt_NFQUEUE.c222 .revision = 1,
235 .revision = 2,
248 .revision = 3,
H A Dlibxt_TPROXY.c153 .revision = 0,
166 .revision = 1,
179 .revision = 1,
H A Dlibxt_SET.c352 .revision = 0,
367 .revision = 1,
382 .revision = 2,
H A Dlibxt_iprange.c303 .revision = 0,
317 .revision = 1,
331 .revision = 1,
H A Dlibxt_recent.c308 .revision = 0,
323 .revision = 1,
338 .revision = 1,
H A Dlibxt_LED.c126 .revision = 0,
H A Dlibxt_multiport.c475 .revision = 0,
489 .revision = 0,
504 .revision = 1,
518 .revision = 1,
H A Dlibxt_quota2.c126 .revision = 3,
H A Dlibxt_set.c503 .revision = 0,
517 .revision = 1,
531 .revision = 2,
545 .revision = 3,
/external/iptables/libxtables/
H A Dxtables.c748 static int compatible_revision(const char *name, uint8_t revision, int opt) argument
757 /* revision 0 is always supported. */
758 if (revision != 0)
760 "revision %u is supported, "
762 name, revision);
779 rev.revision = revision;
789 /* Assume only revision 0 support (old kernel) */
790 return (revision == 0);
802 static int compatible_match_revision(const char *name, uint8_t revision) argument
807 compatible_target_revision(const char *name, uint8_t revision) argument
[all...]
/external/qemu/distrib/
H A Dpackage-release.sh224 --revision=*)
225 OPT_REVISION=${OPT##--revision=}
251 Packages names are prefixed with $DEFAULT_PKG_PREFIX-<revision>, where
252 the <revision> is the current ISO date by default. You can use
253 --package-prefix=<prefix> and --revision=<revision> to change this.
274 --revision=<name> Change revision [$DEFAULT_REVISION].
295 log "Auto-config: --revision=$PKG_REVISION"
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
H A Drebaseline.py676 "revision": result.blink_revision(),
685 revision = None
713 if revision and svn_revision != revision:
716 if not revision:
717 revision = svn_revision
727 return tests, revision, author, bugs, has_any_needs_rebaseline_lines
729 def link_to_patch(self, revision):
730 return "http://src.chromium.org/viewvc/blink?view=revision&revision
[all...]
/external/chromium_org/native_client_sdk/src/build_tools/tests/
H A Dupdate_nacl_manifest_test.py98 bundle.revision = 1
113 def MakePepperBundle(major_version, revision=0, version=None, stability='dev',
123 bundle.revision = revision
124 bundle.description = 'Chrome %s bundle, revision %s' % (major_version,
125 revision)
133 def MakePlatformBundle(major_version, revision=0, version=None, host_oses=None,
135 bundle = MakePepperBundle(major_version, revision, version, stability)
144 def MakeBionicBundle(major_version, revision=0, version=None, host_oses=None):
145 bundle = MakePepperBundle(major_version, revision, versio
[all...]
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dupdate_nacl_manifest.py705 # This test used to be online_bundle.revision >= bundle.revision.
707 # but the revision stays the same -- we still want to push those
709 if online_bundle.revision > bundle.revision or online_bundle == bundle:
711 ' Revision %s is not newer than than online revision %s. '
712 'Skipping.' % (bundle.revision, online_bundle.revision))
734 bundle.revision = int(bundle.revision)
[all...]
/external/chromium_org/testing/gtest/scripts/
H A Dupload.py450 group.add_option("--rev", action="store", dest="revision",
452 help="Branch/tree/revision to diff against (used by DVCS).")
726 if self.options.revision:
727 match = re.match(r"(\d+)(:(\d+))?", self.options.revision)
729 ErrorExit("Invalid Subversion revision %s." % self.options.revision)
737 # SVN base URL is required to fetch files deleted in an older revision.
739 required = self.options.download_base or self.options.revision is not None
792 if self.options.revision:
793 cmd += ["-r", self.options.revision]
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dsvn-create-patch172 my ($file, $revision) = @_;
173 my $args = $revision ? "--revision $revision" : "";
313 print "--- ${file}\t(revision ${sourceRevision})\t(from ${sourceFile}:${sourceRevision})\n";
/external/chromium_org/v8/tools/push-to-trunk/
H A Dgit_recipes.py136 # The file doesn't exist in that revision.
254 """Dumps the 'git' log for a specific revision and parses out the commit
260 its SVN revision value is returned.
272 # Extract the svn revision from 'git-svn' metadata
294 def GitSVNFindGitHash(self, revision, branch="", **kwargs):
295 assert revision
297 MakeArgs(["svn find-rev", "r%s" % revision, branch]), **kwargs)
/external/iproute2/tc/
H A Dm_xt_old.c160 static void set_revision(char *name, u_int8_t revision) argument
162 /* Old kernel sources don't have ".revision" field,
165 name[IPT_FUNCTION_MAXNAMELEN - 1] = revision;
182 set_revision(target->t->u.user.name, target->revision);
/external/chromium_org/chromeos/cryptohome/
H A Dcryptohome_parameters.h112 int revision; member in struct:cryptohome::KeyDefinition
H A Dhomedir_methods.cc36 if (key_def.revision > 0)
37 data->set_revision(key_def.revision);
343 // Extract |type|, |label| and |revision|.
349 key_definition.revision = it->revision();
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
H A Dscm.py123 """Returns the latest svn revision found in the checkout."""
126 def timestamp_of_revision(self, path, revision):
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvmuxerutil.hpp128 // and |revision|.
129 void GetVersion(int32* major, int32* minor, int32* build, int32* revision);

Completed in 8475 milliseconds

12345678910