Home
last modified time | relevance | path

Searched refs:bug (Results 1 - 25 of 69) sorted by relevance

123

/third_party/node/deps/v8/tools/clusterfuzz/foozzie/
H A Dv8_suppressions.py10 Map a regular expression to a bug entry. A new failure will be reported
15 Map a regular expression to a bug entry. A new failure will be reported
43 # Ignore by original source files. Map from bug->list of relative file paths,
49 # Ignore by test case pattern. Map from bug->regexp.
56 # Ignore by output pattern. Map from bug->regexp like above.
252 for bug, exp in IGNORE_TEST_CASES.items():
254 return bug
258 for bug, sources in self.ignore_sources.items():
261 return bug
266 for bug, ex
[all...]
H A Dv8_foozzie.py324 bug = (ignore_fun(content) or '').strip()
325 if bug:
327 configs='', source_key='', suppression=bug))
332 bug = (ignore_by_output_fun(output.stdout) or '').strip()
333 if bug:
335 configs='', source_key='', suppression=bug))
513 # is fundamentally wrong, in order to prevent bug flooding.
535 # TODO(machenbach): Figure out if we could also return a bug in case
/third_party/typescript/tests/baselines/reference/
H A DinferSecondaryParameter.js2 // type inference on 'bug' should give 'any'
8 b.m("test", function (bug) {
9 var a: number = bug;
13 // type inference on 'bug' should give 'any'
15 b.m("test", function (bug) {
16 var a = bug;
H A DobjectLitArrayDeclNoNew.js20 export function bug(): ILineTokens {
41 function bug() { function
48 Test.bug = bug;
H A DbinopAssignmentShouldHaveType.js9 bug() {
32 Bug.prototype.bug = function () {
H A DinferFromGenericFunctionReturnTypes3.js73 function bug(): Diagnostic[] {
244 function bug() { function
H A Dparserharness.js88 // Marks that the current scenario is impacted by a bug
89 export function bug(id: string) {
99 bugs.forEach(bug => assert.bug(bug));
234 bug: (test: ITestMetadata) => void;
248 public bug(test: ITestMetadata) { }
427 assert.bugIds.forEach(desc => emitLog('bug', metadata, desc));
459 assert.bugIds.forEach(desc => emitLog('bug', metadata, desc));
480 // Clear out bug description
[all...]
/third_party/skia/third_party/externals/angle2/include/platform/
H A DFeature.h120 const char *bug);
132 // A link to the bug, if any
133 const char *const bug; member
148 const char *bug = "") in Feature()
152 bug(bug), in Feature()
/third_party/node/deps/v8/
H A DPRESUBMIT.py429 """Check that bug entries are well-formed in commit message."""
434 for bug in (input_api.change.BUG or '').split(','):
435 bug = bug.strip()
436 if 'none'.startswith(bug.lower()):
438 if ':' not in bug:
440 if int(bug) > 100000:
447 prefix_guess, bug))
449 results.append(bogus_bug_msg.format(bug))
450 elif not re.match(r'\w+:\d+', bug)
[all...]
/third_party/mesa3d/bin/
H A Dgen_release_notes.py54 Mesa ${this_version} is a bug fix release which fixes bugs found since the ${previous_version} release.
197 bug = line.lstrip('Closes:').strip()
198 if bug.startswith('https://gitlab.freedesktop.org/mesa/mesa'):
199 # This means we have a bug in the form "Closes: https://..."
200 issues.append(os.path.basename(urllib.parse.urlparse(bug).path))
201 elif ',' in bug:
202 issues.extend([b.strip().lstrip('#') for b in bug.split(',')])
203 elif bug.startswith('#'):
204 issues.append(bug.lstrip('#'))
/third_party/toybox/toys/posix/
H A Dpatch.c200 int bug = 0; in apply_one_hunk() local
204 while (plist->data[bug] == check->data[bug]) bug++; in apply_one_hunk()
205 fprintf(stderr, "NOT(%d:%d!=%d): %s\n", bug, plist->data[bug], in apply_one_hunk()
206 check->data[bug], plist->data); in apply_one_hunk()
/third_party/rust/crates/serde/test_suite/tests/regression/
H A Dissue2409.rs3 macro_rules! bug { macros
11 bug!("serde");
/third_party/skia/third_party/externals/angle2/
H A DPRESUBMIT.py186 '"Bug: angleproject:[bug number]"\n'
190 # The bug must be in the form of "project:number". None is also accepted, which is used by
202 for bug in bugs:
203 if bug == 'None':
205 output_api.PresubmitError('Invalid bug tag "None" in presence of other bug tags.'))
208 match = re.match(bug_regex, bug)
209 if match == None or bug != match.group(0) or match.group(1) not in projects:
210 errors.append(output_api.PresubmitError('Incorrect bug tag "' + bug
[all...]
/third_party/skia/gm/
H A Dhairlines.cpp96 // Three paths that show the same bug (missing end caps)
118 // Arc example to test imperfect truncation bug (crbug.com/295626)
123 SkPathBuilder bug; variable
127 bug.addArc(circle, kStartAngle, kSweepAngle);
136 bug.moveTo(p0);
137 bug.lineTo(p1);
138 fPaths.push_back(bug.detach());
/third_party/musl/src/unistd/sh/
H A Dpipe.s7 ! work around hardware bug
/third_party/node/deps/v8/tools/release/
H A Dmerge_to_branch.py136 for bug in re.findall(r"^[ \t]*BUG[ \t]*=[ \t]*(.*?)[ \t]*$", msg, re.M):
137 bugs.extend(s.strip() for s in bug.split(","))
143 # TODO(machenbach): Use proper gerrit footer for bug after switch to
H A Droll_merge.py125 for bug in re.findall(r"^[ \t]*BUG[ \t]*=[ \t]*(.*?)[ \t]*$", msg, re.M):
126 bugs.extend(s.strip() for s in bug.split(","))
/third_party/node/deps/v8/tools/
H A Dgen-keywords-gen-h.py214 '"gperf generated tables don\'t work with this execution character set. Please report a bug to <bug-gperf@gnu.org>."',
215 '"gperf generated tables don\'t work with this execution character set."\\\n// If you see this error, please report a bug to <bug-gperf@gnu.org>.'
/third_party/musl/src/thread/sh/
H A Dsyscall_cp.s28 ! work around hardware bug
/third_party/skia/third_party/externals/swiftshader/tests/
H A Dpresubmit.sh48 echo "followed by a bug ID in the form b/# for Buganizer bugs or"
95 check bug-in-commi-msg run_bug_in_commit_msg
/third_party/eudev/hm_src/
H A Dkeyboard-keys-from-name.h29 #error "gperf generated tables don't work with this execution character set. Please report a bug to <bug-gperf@gnu.org>."
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/lib/Text/Template/
H A DPreprocess.pm133 When submitting a bug or request, please include a test-file or a
134 patch to an existing test-file that illustrates the bug or desired
/third_party/openssl/external/perl/Text-Template-1.56/lib/Text/Template/
H A DPreprocess.pm133 When submitting a bug or request, please include a test-file or a
134 patch to an existing test-file that illustrates the bug or desired
/third_party/musl/src/crypt/
H A Dcrypt_blowfish.c502 unsigned int bug, i, j; in BF_set_key() local
506 * There was a sign extension bug in older revisions of this function. While in BF_set_key()
507 * we would have liked to simply fix the bug and move on, we have to provide in BF_set_key()
508 * a backwards compatibility feature (essentially the bug) for some systems and in BF_set_key()
513 * While the bug itself affected the majority of passwords containing in BF_set_key()
526 * length remains. It is not part of the bug aftermath, though, and is in BF_set_key()
530 * For actual implementation, we set an array index in the variable "bug" in BF_set_key()
531 * (0 means no bug, 1 means sign extension bug emulation) and a flag in the in BF_set_key()
535 * Prefix "$2a$": bug in BF_set_key()
[all...]
/third_party/skia/third_party/externals/microhttpd/doc/
H A Dmdate-sh28 # bugs to <bug-automake@gnu.org> or send patches to
52 Report bugs to <bug-automake@gnu.org>.

Completed in 15 milliseconds

123