Searched refs:revision (Results 26 - 50 of 137) sorted by relevance

123456

/external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparseDiffHeader.pl57 --- index_path.py (revision 53048) (from copied_from_path.py:53048)
67 --- index_path.py (revision 53048) (from copied_from_path.py:53048)
H A DrunPatchCommand.pl61 --- $fileToPatch (revision 0)
62 +++ $fileToPatch (revision 0)
H A DparseDiff.pl41 --- Makefile (revision 53052)
54 --- Makefile (revision 53052)
152 --- Makefile (revision 53052)
168 --- Makefile (revision 53052)
189 --- Makefile_new (revision 53131) (from Makefile:53131)
209 --- Makefile (revision 53131)
215 --- Makefile_new (revision 53131) (from Makefile:53131)
222 --- Makefile (revision 53131)
240 --- Makefile (revision 53131)
255 --- Makefile (revision 5313
[all...]
/external/webkit/Tools/Scripts/webkitpy/common/net/buildbot/
H A Dbuildbot.py82 revision=int(build_dictionary['sourceStamp']['revision']),
116 file_name_regexp = re.compile(r"r(?P<revision>\d+) \((?P<build_number>\d+)\)")
120 return (int(match.group("revision")), int(match.group("build_number")))
127 # FIXME: This is a poor way to do revision -> build mapping.
129 print "Loading revision/build list from %s." % self.results_url()
137 # This assumes there was only one build per revision, which is false but we don't care for now.
148 # This assumes there can be only one build per revision, which is false, but we don't care for now.
149 def build_for_revision(self, revision, allow_failed_lookups=False):
150 # NOTE: This lookup will fail if that exact revision wa
257 def revision(self): member in class:Build
[all...]
/external/v8/test/test262/
H A Dtestcfg.py37 TEST_262_ARCHIVE_REVISION = '3a890174343c' # This is the r309 revision.
103 revision = TEST_262_ARCHIVE_REVISION
104 archive_url = TEST_262_URL % revision
105 archive_name = join(self.root, 'test262-%s.tar.bz2' % revision)
106 directory_name = join(self.root, "test262-%s" % revision)
112 print "Extracting test262-%s.tar.bz2 ..." % revision
/external/e2fsprogs/intl/
H A Dexplodename.c56 const char **sponsor, const char **revision)
68 *revision = NULL;
162 /* Next is revision (CEN syntax). */
164 *revision = ++cp;
52 _nl_explode_name(char *name, const char **language, const char **modifier, const char **territory, const char **codeset, const char **normalized_codeset, const char **special, const char **sponsor, const char **revision) argument
H A Dfinddomain.c61 const char *revision; local
77 (1) revision
139 &sponsor, &revision);
146 sponsor, revision, domainname, 1);
H A Dgmo.h77 /* The revision number of the file format. */
78 nls_uint32 revision; member in struct:mo_file_header
80 /* The following are only used in .mo files with major revision 0 or 1. */
93 /* The following are only used in .mo files with minor revision >= 1. */
116 /* The following are only used in .mo files with minor revision >= 1. */
/external/iproute2/include/
H A Diptables.h23 u_int8_t revision; member in struct:ipt_get_revision
42 u_int8_t revision; member in struct:iptables_match
95 u_int8_t revision; member in struct:iptables_target
/external/iproute2/include/linux/netfilter/
H A Dx_tables.h17 __u8 revision; member in struct:xt_entry_match::__anon5690::__anon5691
40 __u8 revision; member in struct:xt_entry_target::__anon5693::__anon5694
69 /* The argument to IPT_SO_GET_REVISION_*. Returns highest revision
70 * kernel supports, if >= revision. */
73 __u8 revision; member in struct:xt_get_revision
/external/iptables/include/linux/netfilter/
H A Dx_tables.h17 __u8 revision; member in struct:xt_entry_match::__anon5916::__anon5917
40 __u8 revision; member in struct:xt_entry_target::__anon5919::__anon5920
69 /* The argument to IPT_SO_GET_REVISION_*. Returns highest revision
70 * kernel supports, if >= revision. */
73 __u8 revision; member in struct:xt_get_revision
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
H A Dscm.py256 def changed_files_for_revision(self, revision):
274 def committer_email_for_revision(self, revision):
277 def contents_at_revision(self, path, revision):
280 def diff_for_revision(self, revision):
289 def apply_reverse_diff(self, revision):
387 return "^Committed revision (?P<svn_revision>\d+)\.$"
451 def changed_files_for_revision(self, revision):
454 status_command = ["svn", "diff", "--summarize", "-c", revision]
462 match = re.search('^r(?P<revision>\d+) ', line)
465 revisions.append(int(match.group('revision')))
[all...]
H A Dcommitinfo_unittest.py52 self.assertEqual(commit.revision(), 123)
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
H A Dsheriff_unittest.py59 commit_info.revision = lambda: 4321
/external/webkit/Tools/Scripts/
H A Dbisect-builds109 [-r|--revision M[:N]] specify starting (and optional ending) revisions to search
140 printf "\nChecking starting revision r%s...\n",
147 die "ERROR: Bug reproduced in starting revision! Do you need to test an earlier revision or for a progression?"
149 die "ERROR: Bug not reproduced in starting revision! Do you need to test an earlier revision or for a regression?"
153 printf "\nChecking ending revision r%s...\n",
160 die "ERROR: Bug NOT reproduced in ending revision! Do you need to test a later revision or for a progression?"
162 die "ERROR: Bug reproduced in ending revision! D
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DResourceView.js182 WebInspector.RevisionSourceFrame = function(revision)
184 WebInspector.SourceFrame.call(this, new WebInspector.SourceFrameDelegate(), revision.resource.url);
185 this._revision = revision;
/external/grub/netboot/
H A Dsmc9000.c147 /* check if the revision register is something that I recognize.
155 printf("SMC9000: IO %hX: Unrecognized revision register:"
387 unsigned short revision; local
452 revision = inw(smc9000_base + REVISION);
453 version_string = chip_ids[(revision >> 4) & 0xF];
455 if (((revision & 0xF0) >> 4 == CHIP_9196) &&
456 ((revision & 0x0F) >= REV_9196)) {
458 * a revision starting at 6 */
480 version_string, revision & 0xF,
/external/webkit/Source/WebCore/plugins/
H A DPluginPackage.cpp247 // since the revision can be larger than a 8 bits, so we allow it 16 here and
274 String revision = versionParts[1]; local
275 if (revision.length() > 1 && (revision[0] == 'r' || revision[0] == 'b')) {
276 revision.remove(0, 1);
277 m_moduleVersion |= revision.toInt() & 0xffff;
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Ddownload.py296 def _commit_info(self, revision):
297 commit_info = self._tool.checkout().commit_info_for_revision(revision)
310 for revision in str(args[0]).split():
311 if revision.isdigit():
312 revision_list.append(int(revision))
314 raise ScriptError(message="Invalid svn revision number: " + revision)
317 # We use the earliest revision for the bug info
324 "revision": earliest_revision,
335 help_text = "Revert the given revision(
[all...]
/external/iptables/extensions/
H A Dlibxt_TEE.c98 .revision = 1,
112 .revision = 1,
H A Dlibxt_connmark.c129 .revision = 0,
142 .revision = 1,
H A Dlibxt_mark.c109 .revision = 0,
122 .revision = 1,
H A Dlibxt_IDLETIMER.c83 .revision = 1,
H A Dlibxt_SECMARK.c75 .revision = 0,
/external/iptables/iptables/
H A Dxtables.c740 static int compatible_revision(const char *name, uint8_t revision, int opt) argument
749 /* revision 0 is always supported. */
750 if (revision != 0)
752 "revision %u is supported, "
754 name, revision);
771 rev.revision = revision;
781 /* Assume only revision 0 support (old kernel) */
782 return (revision == 0);
794 static int compatible_match_revision(const char *name, uint8_t revision) argument
799 compatible_target_revision(const char *name, uint8_t revision) argument
[all...]

Completed in 857 milliseconds

123456