Home
last modified time | relevance | path

Searched refs:bug (Results 1 – 25 of 1061) sorted by relevance

12345678910>>...43

/external/webkit/Tools/Scripts/webkitpy/tool/bot/
Dflakytestreporter.py76 bugs = filter(lambda bug: bug.reporter_email() in allowed_emails, bugs)
82 … filed by a bot, using the first." % (pluralize('bug', len(bugs)), [bug.id() for bug in bugs], fla…
138 def _follow_duplicate_chain(self, bug): argument
139 while bug.is_closed() and bug.duplicate_of():
140 bug = self._tool.bugs.fetch_bug(bug.duplicate_of())
141 return bug
144 def _update_bug_for_flaky_test(self, bug, latest_flake_message): argument
145 if bug.is_closed():
146 self._tool.bugs.reopen_bug(bug.id(), latest_flake_message)
148 self._tool.bugs.post_comment_to_bug(bug.id(), latest_flake_message)
[all …]
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
Dbugfortest.py43 bug = reporter._lookup_bug_for_flaky_test(search_string)
44 if bug:
45 bug = reporter._follow_duplicate_chain(bug)
46 print "%5s %s" % (bug.id(), bug.title())
Dbugsearch.py39 for bug in bugs:
40 print "%5s %s" % (bug.id(), bug.title())
/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
Dbug_unittest.py31 from .bug import Bug
37 bug = Bug({"assigned_to_email": email}, bugzilla=None)
38 self.assertTrue(bug.is_unassigned())
39 bug = Bug({"assigned_to_email": "test@test.com"}, bugzilla=None)
40 self.assertFalse(bug.is_unassigned())
/external/mesa3d/docs/
DVERSIONS14 many small bug fixes
34 a few small bug fixes
47 more bug fixes
144 - glScissor bug fixed
174 - fixed bug when blending lines, points, bitmaps outside of window
254 - fixed file writing bug in osdemo.c
278 - glPopAttrib() bug
296 - glXUseXfonts XFreeFont/XFreeFontInfo bug fixed
297 - fixed a feedback bug
342 - kludged around a SunOS 5.x/GCC compiler bug in the feedback code
[all …]
/external/libvorbis/
DCHANGES11 * Correct an overflow bug in very low-bitrate encoding on 32 bit
14 * Correct bug in 22kHz compand setup that could cause a crash
15 * Correct bug in 16kHz codebooks that could cause unstable pure
20 * correct a vorbisfile bug that prevented proper playback of
45 * Fix an encoder bug with multichannel streams.
59 * fix a minor encoder bug
66 * fix a serious encoder bug with gcc 4 optimized builds
73 * bug fix to the bitrate management encoder interface
74 * bug fix to properly set packetno field in the encoder
92 * numerous bug fixes
/external/chromium/chrome/browser/resources/
Dbug_report.css1 .bug-report-label {
7 .bug-report-text {
11 .bug-report-dropdown {
15 .bug-report-table {
20 .bug-report-field {
26 .bug-report-fieldlabel {
31 .bug-report-button {
160 .bug-report-input {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_bugzilla/org/eclipse/releng/util/bugzilla/
Dmessages.properties12 UpdateBugStateTask.usingBugList=Using explicit bug list
18 UpdateBugStateTask.gotBugList=Got bug list
27 UpdateBugStateTask.noBugStatus=Couldn't find bug_status for bug
28 UpdateBugStateTask.missingBug=this means that the bug probably doesn't exist, ignoring.
31 UpdateBugStateTask.setBug=Set bug
32 UpdateBugStateTask.setBugFailed=Failed to set bug
35 UpdateBugStateTask.ignoreBug=Ignoring bug
/external/webkit/Tools/Scripts/webkitpy/tool/
Dmocktool.py222 lambda bug: bug.commit_queued_patches(),
224 return map(lambda bug: bug.id(), bugs_with_commit_queued_patches)
227 unreviewed_patches = sum([bug.unreviewed_patches()
228 for bug in self._all_bugs()], [])
232 return sum([bug.commit_queued_patches()
233 for bug in self._all_bugs()], [])
236 bugs_with_reviewed_patches = filter(lambda bug: bug.reviewed_patches(),
238 bug_ids = map(lambda bug: bug.id(), bugs_with_reviewed_patches)
245 return sum([bug.reviewed_patches() for bug in self._all_bugs()], [])
315 bug = self.fetch_bug(attachment_dictionary["bug_id"])
[all …]
/external/openssl/crypto/bn/
Ddivtest.c11 static void bug(char *m, BIGNUM *a, BIGNUM *b) in bug() function
35 bug("BN_div failed",a,b); in main()
37 bug("BN_div_recp failed",a,b); in main()
39 bug("mismatch",a,b); in main()
/external/clang/test/Analysis/
Dinline-unique-reports.c4 static inline bug(int *p) { in bug() function
10 bug(p); in test_bug_1()
15 bug(p); in test_bug_2()
/external/lohit-fonts/lohit-telugu-ttf/
DChangeLog11 - Major bug fixing for below base glyphs merging
13 - Resolved bug 548686, 551317, 578040, 622682, 673420, 692368, 714562, 714561, 714563, 714560, 7145…
16 - fix rh bug 531201
20 - fix rh bug 504270
/external/expat/
DChanges22 #3010222: Fix for bug #3010819.
28 bug #3496608 to randomize hash parameters.
33 See bug #2990652 and patch #3312568.
41 - Fixed bug #1690883: Expat failed on EBCDIC systems as it assumed
44 - Fixed xmlwf bug #1513566: "out of memory" error on file size zero.
45 - Fixed outline.c bug #1543233: missing a final XML_ParserFree() call.
49 HP-UX, Tru64, Solaris 9: patch #1437840, bug #1196180.
69 - Some mostly minor bug fixes. SF issues include: #1006708,
77 - Some mostly minor bug fixes, but compilation should no
113 - Fixed UTF-8 decoding bug that caused legal UTF-8 to be rejected.
[all …]
/external/strace/
DNEWS19 (Addresses Debian bug #450953).
46 (Addresses Red Hat bug #663547).
48 (Addresses Debian bug #599028).
50 (Addresses Debian bug #589323).
63 (Addresses Debian bug #466196)
71 (Addresses Debian bug #560516 and Fedora bug #539044)
76 (Addresses Fedora bug #556678)
79 (Addresses Debian bug #570603)
82 (Addresses Debian bug #494844)
84 (Addresses Debian bug #513014)
[all …]
/external/v8/
DChangeLog176 Fixed a crash bug in generated code on ia32.
325 Performance improvements and bug fixes.
344 Performance improvements and bug fixes.
421 Fix a bug in the register allocator. (chromium:105112)
434 Fixed bug when generating padding to ensure space for lazy
526 Fix bug in deoptimization. Known issue with jslint: Issue 1789.
539 Fixed bug triggered by JSBeautifier. crbug.com/100409.
614 Fixed x64 RegExp start-of-string bug (Issues 1746, 1748).
679 Fixed a bug in abrupt exit from with or catch inside finally.
684 Fixed a bug in Page::GetRegionMaskForSpan (Chromium issue 94425).
[all …]
/external/antlr/antlr-3.4/gunit/
DCHANGES.txt72 * fixed bug: FileNotFoundException terminated gUnit tests due to any non-existent input test file.
80 * fixed bug of using PipedInput/Output Stream and changed to ByteArrayOutputStream. Jared Bunting p…
86 * fixed bug of testing a tree grammar's template output
90 * fixed bug: program exited upon InvocationTargetException
99 * fixed string escaping bug for junit generator
103 * fixed grammar bug: multiple-line input, AST output
115 * fixed bug of displaying test sequence and error message from ANTLR
/external/bison/
DREADME11 sufficiently patched, but if you encounter a bug with an older
12 distribution and report a bug we will probably suggest that you
15 Please send bug reports to <bug-bison@gnu.org>. Please include the
17 test case in each bug report.
/external/dropbear/libtommath/
Dchanges.txt3 -- Fixed bug in fast_s_mp_mul_high_digs() which overflowed (line 83), thanks Valgrind!
36 -- Fixed bug in invmod not handling negative inputs correctly [Wolfgang Ehrhardt]
41 -- Fixed bug in comba that would lead to possible erroneous outputs when "pa < digs"
42 -- Fixed bug in mp_toradix_size for "0" [Kevin Kenny]
55 bug reports but new algorithms will have to wait.
59 -- Fixed bug in mp_prime_random_ex() which would set the most significant byte to zero when
61 -- Fixed overflow [minor] bug in fast_s_mp_sqr()
63 -- Fixed "final carry" bug in comba multipliers. (Volkan Ceylan)
85 -- "Wolfgang Ehrhardt" <Wolfgang.Ehrhardt@munich.netsurf.de> found a bug in mp_mul() where if
88 [this also means that I fixed a bug where if sizeof(int) < sizeof(mp_digit) it would bug]
[all …]
/external/antlr/antlr-3.4/runtime/Ruby/lib/
Dantlr3.rb133 bug = Bug.new( message )
134 bug.set_backtrace( caller )
135 raise( bug )
/external/oprofile/
DREADME13 Dave Jones <davej@suse.de> provided bug fixes and support for
16 Bob Montgomery <bobm@fc.hp.com> provided bug fixes, the initial RTC
20 oprofile release, and contributed bug fixes and several cleanups.
22 Graydon Hoare <graydon@redhat.com> provided P4 port, bug fixes and cleanups.
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/
Dbrowser.js58 var bug = ''; variable
75 this.bugnumber = typeof(bug) != 'undefined' ? bug : '';
/external/elfutils/tests/
DMakefile.in47 rdwrmmap$(EXEEXT) dwfl-bug-addr-overflow$(EXEEXT) \
48 arls$(EXEEXT) dwfl-bug-fd-leak$(EXEEXT) \
49 dwfl-addr-sect$(EXEEXT) dwfl-bug-report$(EXEEXT) \
50 early-offscn$(EXEEXT) dwfl-bug-getmodules$(EXEEXT) \
68 dwfl-bug-addr-overflow$(EXEEXT) run-addrname-test.sh \
69 dwfl-bug-fd-leak$(EXEEXT) dwfl-bug-report$(EXEEXT) \
70 run-dwfl-bug-offline-rel.sh run-dwfl-addr-sect.sh \
170 dwfl_bug_addr_overflow_SOURCES = dwfl-bug-addr-overflow.c
171 dwfl_bug_addr_overflow_OBJECTS = dwfl-bug-addr-overflow.$(OBJEXT)
175 dwfl_bug_fd_leak_SOURCES = dwfl-bug-fd-leak.c
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/
Dregress-58946.js31 var bug = '58946'; variable
40 printBugNumber (bug);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
Dregress-69607.js27 var bug = 69607; variable
33 printBugNumber (bug);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Regress/
Dregress-311157-01.js38 var bug = 311157; variable
43 printBugNumber (bug);

12345678910>>...43