HomeSort by relevance Sort by last modified time
    Searched refs:issue (Results 1 - 25 of 160) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
active_issues.js 24 updateIssue: function(issue) {
25 var eventType = this.issues_.hasOwnProperty(issue.issue) ?
27 this.issues_[issue.issue] = issue;
28 this.postEvent_({event: eventType, issue: issue.issue});
31 removeIssue: function(issue) {
    [all...]
popup.js 100 table.className = "issue-status";
111 tryJobAnchor.className = "issue-status-build " +
121 function getLastFullPatchsetWithTryJobs(issue) {
122 var index = issue.patchsets.length - 1;
123 var fullPatchsets = issue.full_patchsets;
126 !fullPatchsets[issue.patchsets[index]] ||
127 !fullPatchsets[issue.patchsets[index]].try_job_results ||
128 fullPatchsets[issue.patchsets[index]].try_job_results.length == 0)) {
132 return index >= 0 ? fullPatchsets[issue.patchsets[index]] : null;
135 function createTryStatusRow(issue) {
    [all...]
bg.js 160 // Enums corresponding to how much state has been loaded for an issue.
164 function fetchPatches(issue, updatedCallback) {
169 issue.patchsets.forEach(function(patchset) {
170 var patchURL = "https://codereview.chromium.org/api/" + issue.issue +
174 if (!issue.full_patchsets)
175 issue.full_patchsets = {};
177 issue.full_patchsets[patch.patchset] = patch;
194 if (++patchsetsRetrieved == issue.patchsets.length) {
207 var issueURL = "https://codereview.chromium.org/api/" + result.issue;
    [all...]
popup.css 40 [data-issue] + .trunk-status-row > td,
45 div.issue-status {
52 .issue-status-build {
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
rollbot.js 51 function isRollbotStopped(issue) {
53 return issue.messages.slice(1).some(function(message) { return message.text.match(/STOP/); });
58 var issue = findRollIssue(searchJSON);
59 if (!issue) {
64 var issueNumber = issue['issue'];
65 var subjectMatch = issue['subject'].match(rollSubjectRegexp);
67 'issue': issueNumber,
69 'isStopped': isRollbotStopped(issue),
rollbot_unittests.js 66 "issue": 16337011
138 "text": "Rollbot was stopped by the presence of \"STOP\" in an earlier comment on this issue.\n",
154 "issue": 16606004
168 equals(roll.issue, 16337011);
  /external/chromium/sdch/open-vcdiff/packages/
rpm.sh 59 if [ -r /etc/issue ]
61 grep "Red Hat.*release 7" /etc/issue >/dev/null 2>&1 && destdir=rh7
62 grep "Red Hat.*release 8" /etc/issue >/dev/null 2>&1 && destdir=rh8
63 grep "Red Hat.*release 9" /etc/issue >/dev/null 2>&1 && destdir=rh9
64 if grep Fedora /etc/issue >/dev/null; then
65 destdir=fc`grep Fedora /etc/issue | cut -d' ' -f 4`;
  /external/chromium_org/sdch/open-vcdiff/packages/
rpm.sh 73 if [ -r /etc/issue ]
75 grep "Red Hat.*release 7" /etc/issue >/dev/null 2>&1 && destdir=rh7
76 grep "Red Hat.*release 8" /etc/issue >/dev/null 2>&1 && destdir=rh8
77 grep "Red Hat.*release 9" /etc/issue >/dev/null 2>&1 && destdir=rh9
78 if grep Fedora /etc/issue >/dev/null; then
79 destdir=fc`grep Fedora /etc/issue | cut -d' ' -f 4`;
  /external/open-vcdiff/packages/
rpm.sh 73 if [ -r /etc/issue ]
75 grep "Red Hat.*release 7" /etc/issue >/dev/null 2>&1 && destdir=rh7
76 grep "Red Hat.*release 8" /etc/issue >/dev/null 2>&1 && destdir=rh8
77 grep "Red Hat.*release 9" /etc/issue >/dev/null 2>&1 && destdir=rh9
78 if grep Fedora /etc/issue >/dev/null; then
79 destdir=fc`grep Fedora /etc/issue | cut -d' ' -f 4`;
  /external/clang/www/
make_cxx_dr_status 17 def __init__(self, section, issue, url, status, title):
18 self.section, self.issue, self.url, self.status, self.title = \
19 section, issue, url, status, title
21 return '%s (%s): %s' % (self.issue, self.status, self.title)
28 _, url, issue = issue_link.split('"', 2)
30 issue = int(issue.split('>', 1)[1].split('<', 1)[0])
32 return DR(section, issue, url, status, title)
48 key = lambda dr: dr.issue)
91 <th>Issue title</th
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
patch_servlet_test.py 60 def _RenderWithPatch(self, path, issue):
61 path_with_issue = '%s/%s' % (issue, path)
69 def _RenderAndCheck(self, path, issue, expected_equal):
70 '''Renders |path| with |issue| patched in and asserts that the result is
72 "_patch/issue".
74 patched_response = self._RenderWithPatch(path, issue)
83 patch_servlet_path = '_patch/%s' % issue
96 def _RenderAndAssertEqual(self, path, issue):
97 self._RenderAndCheck(path, issue, True)
99 def _RenderAndAssertNotEqual(self, path, issue)
    [all...]
rietveld_patcher.py 29 issue,
33 self._issue = issue
36 self._tarball = fetcher.FetchAsync('tarball/%s/%s' % (issue, patchset))
42 'Failed to download tarball for issue %s patchset %s. Status: %s' %
49 'Error loading tarball for issue %s patchset %s.' % (self._issue,
64 'Error extracting tarball for issue %s patchset %s file %s.' %
68 'File %s not found in the tarball for issue %s patchset %s' %
82 issue,
84 self._issue = issue
95 'Failed to fetch information for issue %s.' % self._issue
    [all...]
patch_servlet.py 25 def __init__(self, issue, delegate):
26 self._issue = issue
96 issue, path_without_issue = path_with_issue.split('/', 1)
106 _PatchServletDelegate(issue, self._delegate)).Get()
114 response = Response.Redirect('/_patch/%s%s' % (issue, redirect_url),
  /external/chromium_org/third_party/tcmalloc/vendor/packages/
rpm.sh 70 if [ -r /etc/issue ]
72 grep "Red Hat.*release 7" /etc/issue >/dev/null 2>&1 && destdir=rh7
73 grep "Red Hat.*release 8" /etc/issue >/dev/null 2>&1 && destdir=rh8
74 grep "Red Hat.*release 9" /etc/issue >/dev/null 2>&1 && destdir=rh9
75 grep "Fedora Core.*release 1" /etc/issue >/dev/null 2>&1 && destdir=fc1
76 grep "Fedora Core.*release 2" /etc/issue >/dev/null 2>&1 && destdir=fc2
77 grep "Fedora Core.*release 3" /etc/issue >/dev/null 2>&1 && destdir=fc3
  /external/chromium_org/build/android/lint/
suppress.py 33 '- You can edit this file manually to suppress an issue\n'
44 _Issue = collections.namedtuple('Issue', ['severity', 'paths'])
51 for issue in dom.getElementsByTagName('issue'):
52 issue_id = issue.attributes['id'].value
53 severity = issue.getAttribute('severity')
56 issue.getElementsByTagName('ignore')])
64 for issue in dom.getElementsByTagName('issue'):
65 issue_id = issue.attributes['id'].valu
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
GlobalLintConfiguration.java 25 import com.android.tools.lint.detector.api.Issue;
41 private Map<Issue, Severity> mSeverities;
58 public Severity getSeverity(@NonNull Issue issue) {
61 mSeverities = new HashMap<Issue, Severity>();
68 Issue d = registry.getIssue(s[0]);
80 Severity severity = mSeverities.get(issue);
85 if (!issue.isEnabledByDefault()) {
89 return issue.getDefaultSeverity();
98 public void ignore(@NonNull Context context, @NonNull Issue issue
    [all...]
ProjectLintConfiguration.java 25 import com.android.tools.lint.detector.api.Issue;
83 public @NonNull Severity getSeverity(@NonNull Issue issue) {
84 Severity severity = super.getSeverity(issue);
  /external/ppp/pppd/plugins/radius/etc/
radiusclient.conf 23 # name of the issue file. it's only display when no username is passed
24 # on the radlogin command line (default /etc/radiusclient/issue)
25 issue /usr/local/etc/radiusclient/issue
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
LintPreferencePage.java 18 import static com.android.tools.lint.detector.api.Issue.OutputFormat.RAW;
19 import static com.android.tools.lint.detector.api.Issue.OutputFormat.TEXT;
30 import com.android.tools.lint.detector.api.Issue;
98 private Map<Issue, Severity> mSeverities = new HashMap<Issue, Severity>();
99 private Map<Issue, Severity> mInitialSeverities = Collections.<Issue, Severity>emptyMap();
241 List<Issue> issues = mRegistry.getIssues();
242 for (Issue issue : issues)
352 Issue issue = entry.getKey(); local
453 Issue issue = (Issue) data; local
488 Issue issue = (Issue) mTree.getSelection()[0].getData(); local
681 Issue issue = (Issue) element; local
713 Issue issue = (Issue) element; local
733 Issue issue = (Issue) element; local
    [all...]
  /external/chromium_org/build/android/gyp/
lint.py 54 issues = dom.getElementsByTagName('issue')
56 for issue in issues:
57 issue_id = issue.attributes['id'].value
58 severity = issue.attributes['severity'].value
59 message = issue.attributes['message'].value
60 location_elem = issue.getElementsByTagName('location')[0]
71 error_line = issue.getAttribute(attr)
  /prebuilts/devtools/tools/lib/
lint.jar 
lint-api.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/22.2.0/
lint-22.2.0.jar 
  /external/chromium_org/tools/clang/plugins/
FindBadConstructs.cpp 439 // If there are issues, update |loc| with the SourceLocation of the issue
526 unsigned DiagnosticForIssue(RefcountIssue issue) {
527 switch (issue) {
533 assert(false && "Do not call DiagnosticForIssue with issue None");
565 RefcountIssue issue = CheckRecordForRefcountIssue(record, loc); local
566 if (issue != None) {
567 diagnostic().Report(loc, DiagnosticForIssue(issue));
623 issue = CheckRecordForRefcountIssue(problem_record, loc);
625 if (issue == ImplicitDestructor) {
630 } else if (issue == PublicDestructor)
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.2.0/
lint-api-22.2.0.jar 

Completed in 735 milliseconds

1 2 3 4 5 6 7