/external/webkit/Tools/Scripts/webkitpy/common/checkout/ |
D | api.py | 53 def _latest_entry_for_changelog_at_revision(self, changelog_path, revision): argument 54 changelog_contents = self._scm.contents_at_revision(changelog_path, revision) 62 def changelog_entries_for_revision(self, revision): argument 63 changed_files = self._scm.changed_files_for_revision(revision) 73 … changelog_entries.append(self._latest_entry_for_changelog_at_revision(path, revision)) 79 def commit_info_for_revision(self, revision): argument 80 committer_email = self._scm.committer_email_for_revision(revision) 81 changelog_entries = self.changelog_entries_for_revision(revision) 98 return CommitInfo(revision, committer_email, changelog_data) 100 def bug_id_for_revision(self, revision): argument [all …]
|
D | api_unittest.py | 129 def mock_contents_at_revision(changelog_path, revision): argument 131 self.assertEqual(revision, "bar") 148 scm.changed_files_for_revision = lambda revision: ['foo/ChangeLog', 'bar/ChangeLog'] 151 def mock_latest_entry_for_changelog_at_revision(path, revision): argument 165 scm.committer_email_for_revision = lambda revision: "committer@example.com" 167 … checkout.changelog_entries_for_revision = lambda revision: [ChangeLogEntry(_changelog1entry1)] 177 checkout.changelog_entries_for_revision = lambda revision: [] 182 scm.committer_email_for_revision = lambda revision: "committer@example.com" 184 … checkout.changelog_entries_for_revision = lambda revision: [ChangeLogEntry(_changelog1entry1)] 202 def mock_changelog_entries_for_revision(revision): argument [all …]
|
D | commitinfo.py | 36 def __init__(self, revision, committer_email, changelog_data, committer_list=CommitterList()): argument 37 self._revision = revision 49 def revision(self): member in CommitInfo 86 string = "r%s:\n" % self.revision() 87 string += " %s\n" % urls.view_revision_url(self.revision())
|
D | scm.py | 256 def changed_files_for_revision(self, revision): argument 274 def committer_email_for_revision(self, revision): argument 277 def contents_at_revision(self, path, revision): argument 280 def diff_for_revision(self, revision): argument 289 def apply_reverse_diff(self, revision): argument 451 def changed_files_for_revision(self, revision): argument 454 status_command = ["svn", "diff", "--summarize", "-c", revision] 497 def committer_email_for_revision(self, revision): argument 498 return self.run(["svn", "propget", "svn:author", "--revprop", "-r", revision]).rstrip() 500 def contents_at_revision(self, path, revision): argument [all …]
|
/external/chromium/build/util/ |
D | lastchange.py | 17 def __init__(self, url, root, revision): argument 20 self.revision = revision 55 revision = attrs['Revision'] 59 return VersionInfo(url, root, revision) 206 revision = LookupGitSVNRevision(directory, 999) 207 if not revision: 210 revision = revision + '-dirty' 213 return VersionInfo(url, root, revision) 225 revision = open(default_lastchange, 'r').read().strip() 226 version_info = VersionInfo(None, None, revision) [all …]
|
/external/webkit/Tools/Scripts/webkitpy/common/net/ |
D | failuremap_unittest.py | 41 build1a = Build(builder1, build_number=22, revision=1233, is_green=True) 42 build1b = Build(builder1, build_number=23, revision=1234, is_green=False) 43 build2a = Build(builder2, build_number=89, revision=1233, is_green=True) 44 build2b = Build(builder2, build_number=90, revision=1235, is_green=False) 61 failure_map.filter_out_old_failures(lambda revision: False) 66 failure_map.filter_out_old_failures(lambda revision: revision == 1234) 71 failure_map.filter_out_old_failures(lambda revision: revision == 1235)
|
D | failuremap.py | 49 def builders_failing_for(self, revision): argument 50 return self._builders_failing_because_of([revision]) 52 def tests_failing_for(self, revision): argument 55 if revision in failure_info['regression_window'].revisions() 63 return filter(lambda revision: is_old_failure(revision),
|
/external/iptables/extensions/ |
D | libxt_connlimit.c | 60 const unsigned int revision = (*cb->match)->u.user.revision; in connlimit_parse() local 73 if (revision < 1) in connlimit_parse() 80 if (revision < 1) in connlimit_parse() 153 const int revision = match->u.user.revision; in connlimit_save4() local 160 if (revision >= 1) { in connlimit_save4() 171 const int revision = match->u.user.revision; in connlimit_save6() local 178 if (revision >= 1) { in connlimit_save6() 189 .revision = 0, 204 .revision = 0, 219 .revision = 1, [all …]
|
D | libxt_string.c | 171 const unsigned int revision = (*cb->match)->u.user.revision; in string_parse() local 178 if (revision == 0) in string_parse() 187 if (revision == 0) in string_parse() 194 if (revision == 0) in string_parse() 261 const int revision = match->u.user.revision; in string_print() local 262 int invert = (revision == 0 ? info->u.v0.invert : in string_print() 277 if (revision > 0 && info->u.v1.flags & XT_STRING_FLAG_IGNORECASE) in string_print() 285 const int revision = match->u.user.revision; in string_save() local 286 int invert = (revision == 0 ? info->u.v0.invert : in string_save() 301 if (revision > 0 && info->u.v1.flags & XT_STRING_FLAG_IGNORECASE) in string_save() [all …]
|
/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
D | queries.py | 151 …ame_width, "FAIL (blame-list: sometime before %s?)" % regression_window.failing_build().revision()) 159 for revision in revisions: 160 commit_info = self._tool.checkout().commit_info_for_revision(revision) 164 print "FAILED to fetch CommitInfo for r%s, likely missing ChangeLog" % revision 208 def _blame_line_for_revision(self, revision): argument 210 commit_info = self._tool.checkout().commit_info_for_revision(revision) 212 return "FAILED to fetch CommitInfo for r%s, exception: %s" % (revision, e) 214 return "FAILED to fetch CommitInfo for r%s, likely missing ChangeLog" % revision 219 …r%s) was the first to show failures: %s" % (red_build._number, red_build.revision(), failing_tests) 221 for revision in regression_window.revisions(): [all …]
|
D | sheriffbot.py | 60 def _is_old_failure(self, revision): argument 61 return self._tool.status_server.svn_revision(revision) 81 for revision in failing_revisions: 82 builders = failure_map.builders_failing_for(revision) 83 tests = failure_map.tests_failing_for(revision) 85 commit_info = self._tool.checkout().commit_info_for_revision(revision) 87 print "FAILED to fetch CommitInfo for r%s, likely missing ChangeLog" % revision 94 self._tool.status_server.update_svn_revision(revision, builder.name())
|
/external/kernel-headers/original/linux/netfilter/ |
D | x_tables.h | 16 u_int8_t revision; member 41 u_int8_t revision; member 69 u_int8_t revision; member 196 u_int8_t revision; member 244 u_int8_t revision; member 313 extern struct xt_match *xt_find_match(int af, const char *name, u8 revision); 314 extern struct xt_target *xt_find_target(int af, const char *name, u8 revision); 316 u8 revision); 317 extern int xt_find_revision(int af, const char *name, u8 revision, int target, 338 u_int8_t revision; member [all …]
|
/external/webkit/Tools/Scripts/webkitpy/common/net/buildbot/ |
D | buildbot_unittest.py | 47 revision=build_number + 1000, 62 self.assertEqual(regression_window.build_before_failure().revision(), 1003) 63 self.assertEqual(regression_window.failing_build().revision(), 1004) 67 self.assertEqual(regression_window.failing_build().revision(), 1008) 78 self.assertEqual(regression_window.build_before_failure().revision(), 1009) 79 self.assertEqual(regression_window.failing_build().revision(), 1010) 84 self.assertEqual(regression_window.build_before_failure().revision(), 1003) 85 self.assertEqual(regression_window.failing_build().revision(), 1004) 90 self.assertEqual(regression_window.build_before_failure().revision(), 1003) 91 self.assertEqual(regression_window.failing_build().revision(), 1004) [all …]
|
D | buildbot.py | 82 revision=int(build_dictionary['sourceStamp']['revision']), 149 def build_for_revision(self, revision, allow_failed_lookups=False): argument 151 build_number = self._revision_to_build_map().get(int(revision)) 159 revision=revision, 214 def __init__(self, builder, build_number, revision, is_green): argument 217 self._revision = revision 229 results_directory = "r%s (%s)" % (self.revision(), self._number) 257 def revision(self): member in Build 456 def _build_at_or_before_revision(self, build, revision): argument 458 if build.revision() <= revision: [all …]
|
/external/webkit/Tools/BuildSlaveSupport/ |
D | build-launcher-app | 57 (my $revision) = ($gitLog =~ m/ +git-svn-id: .+@(\d+) /g); 58 return $revision; 81 my $revision = currentRevision(); 95 $data =~ s/VERSION/$revision/g; 100 print OUT "$revision\n";
|
D | build-launcher-dmg | 50 my $revision = currentSVNRevision(); 52 $nightlyLauncherDiskImagePath = productDir() . "/WebKit-SVN-r$revision.dmg"; 90 my $revision = currentSVNRevision(); 92 …ightlyRemoteLatestPath, $buildTag, "mac", $nightlyRemoteDiskImagePath, $revision) == 0 or die "Fai…
|
/external/skia/bench/ |
D | bench_graph_svg.py | 78 revision = int(file_name_match.group(1)) 79 if revision > latest_revision_found: 80 latest_revision_found = revision 96 revision = int(file_name_match.group(1)) 99 if (revision < oldest_revision or revision > newest_revision): 104 if (revision not in revision_data_points): 105 revision_data_points[revision] = [] 107 revision_data_points[revision].extend( 121 for revision in revisions: 122 for point in revision_data_points[revision]: [all …]
|
/external/webkit/Tools/Scripts/webkitpy/tool/steps/ |
D | preparechangelogforrevert.py | 40 …Unreviewed, rolling out %s.\n" % join_with_separators(['r' + str(revision) for revision in revisio… 41 for revision in revision_list: 42 message += "%s\n" % urls.view_revision_url(revision)
|
/external/webkit/Tools/Scripts/ |
D | bisect-builds | 248 my ($nightlies, $revision, $round) = @_; 253 return $highIndex if uc($revision) eq 'HEAD' || $revision >= $nightlies->[$highIndex]->{rev}; 254 return $lowIndex if $revision <= $nightlies->[$lowIndex]->{rev}; 258 if ($revision < $nightlies->[$index]->{rev}) { 260 } elsif ($revision > $nightlies->[$index]->{rev}) { 319 my ($revision, $timestamp, $url) = split(/,/, $line); 321 push(@files, +{ rev => $revision, file => $nightly }); 434 my ($revision) = @_; 435 print "Did the bug reproduce in r$revision (yes/no/broken)? ";
|
/external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
D | sheriff.py | 49 urls.view_revision_url(commit_info.revision()), 58 svn_revisions = " ".join([str(int(revision)) for revision in svn_revision_list]) 84 urls.view_revision_url(commit_info.revision()),
|
/external/dnsmasq/contrib/lease-access/ |
D | lease.access.patch | 3 --- src/dnsmasq.c (revision 696) 4 +++ src/dnsmasq.c (revision 821) 143 --- src/config.h (revision 696) 144 +++ src/config.h (revision 821) 156 --- src/dnsmasq.h (revision 696) 157 +++ src/dnsmasq.h (revision 821) 224 --- src/util.c (revision 696) 225 +++ src/util.c (revision 821) 267 --- src/dhcp.c (revision 696) 268 +++ src/dhcp.c (revision 821) [all …]
|
/external/v8/test/test262/ |
D | testcfg.py | 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/iptables/iptables/ |
D | xtables.c | 740 static int compatible_revision(const char *name, uint8_t revision, int opt) in compatible_revision() argument 750 if (revision != 0) in compatible_revision() 754 name, revision); in compatible_revision() 771 rev.revision = revision; in compatible_revision() 782 return (revision == 0); in compatible_revision() 794 static int compatible_match_revision(const char *name, uint8_t revision) in compatible_match_revision() argument 796 return compatible_revision(name, revision, afinfo->so_rev_match); in compatible_match_revision() 799 static int compatible_target_revision(const char *name, uint8_t revision) in compatible_target_revision() argument 801 return compatible_revision(name, revision, afinfo->so_rev_target); in compatible_target_revision() 819 xt_params->program_name, me->name, me->revision); in xtables_register_match() [all …]
|
/external/v8/test/es5conform/ |
D | README | 7 in revision 71525 as 'data' in this directory. Using later version 9 with that revision. 11 If you do update to a newer revision you may have to change the test
|
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/ |
D | RecentBuildsLoader.js | 42 …revision: parseInt(build.properties.first(function(property) { return property[0] === "got_revisio… property 75 builds.sort(function(a, b) { return b.revision - a.revision; });
|