Searched refs:cases (Results 1 - 25 of 191) sorted by relevance

12345678

/openbsd-current/gnu/usr.bin/perl/cpan/HTTP-Tiny/t/
H A D060_http_date.t9 # test cases adapted from HTTP::Date
12 my @cases = (
21 plan tests => 1 + @cases;
23 is(HTTP::Tiny->_http_date($epoch), $cases[0][0], "epoch -> RFC822/RFC1123");
25 for my $c ( @cases ) {
H A D160_cookies.t25 my @cases = split /--+\n/, $data;
29 while (@cases) {
30 my ($params, $expect_req, $give_res) = splice( @cases, 0, 3 );
H A D002_croakage.t20 my @cases = (
41 for my $c ( @cases ) {
H A D141_no_proxy.t17 my @cases = (
44 for my $c (@cases) {
/openbsd-current/regress/lib/libc/arch/alpha/divremtest/
H A DMakefile7 CLEANFILES+= mkcases cases.c mktestcases testcases
9 divremtest.c: cases.c
11 cases.c: mkcases
12 /bin/rm -f cases.c
13 mkcases > cases.c
/openbsd-current/gnu/llvm/clang/tools/scan-build-py/tests/
H A D__init__.py15 import tests.functional.cases namespace
22 suite.addTests(loader.loadTestsFromModule(tests.functional.cases))
/openbsd-current/lib/libexpat/tests/
H A Dacc_tests.c60 struct AccountingTestCase cases[] = { local
241 const size_t countCases = sizeof(cases) / sizeof(cases[0]);
245 = strlen(cases[u].primaryText);
247 = (cases[u].firstExternalText ? strlen(cases[u].firstExternalText) : 0)
248 + (cases[u].secondExternalText ? strlen(cases[u].secondExternalText)
250 + cases[u].expectedCountBytesIndirectExtra;
254 if (cases[
396 struct TestCase cases[] = { local
[all...]
H A Dns_tests.c688 struct test_case cases[] = { local
696 for (; i < sizeof(cases) / sizeof(cases[0]); i++) {
697 set_subtest("%s", cases[i].doc);
698 XML_Parser parser = XML_ParserCreateNS(NULL, cases[i].namesep);
700 if (_XML_Parse_SINGLE_BYTES(parser, cases[i].doc, (int)strlen(cases[i].doc),
702 != cases[i].expectedStatus) {
H A Dbasic_tests.c327 struct TestCase cases[] = { local
347 for (; i < sizeof(cases) / sizeof(*cases); i++) {
348 const char *fromLim = cases[i].input + strlen(cases[i].input);
352 _INTERNAL_trim_to_complete_utf8_characters(cases[i].input, &fromLim);
355 if (actualMovementInChars != cases[i].expectedMovementInChars) {
360 (unsigned)(i + 1), (int)cases[i].expectedMovementInChars,
362 for (; j < strlen(cases[i].input); j++) {
363 printf("\\x%02x", (unsigned char)cases[
1211 struct TestCase cases[] = { local
1697 struct CaseData cases[] local
1761 struct CaseData cases[] = { local
4660 struct test_case cases[] = { local
[all...]
/openbsd-current/gnu/usr.bin/perl/dist/Storable/t/
H A Dhuge.t30 # cases need cperl support. Perl5 (as of 5.24) has some internal
43 my @cases = (
62 push @cases,
77 push @cases,
86 plan tests => 2 * scalar @cases;
88 for (@cases) {
/openbsd-current/gnu/usr.bin/perl/dist/Data-Dumper/t/
H A Dtrailing_comma.t12 my @cases = ({
85 plan tests => $tests_per_case * @cases;
87 for my $case (@cases) {
/openbsd-current/usr.bin/rpcgen/
H A Drpc_parse.c292 case_list *cases; local
303 tailp = &defp->def.un.cases;
309 cases = malloc(sizeof(case_list));
310 cases->case_name = tok.str;
317 cases->contflag=1; /* continued case statement */
318 *tailp = cases;
319 tailp = &cases->next;
320 cases = malloc(sizeof(case_list));
321 cases->case_name = tok.str;
325 *tailp = cases;
[all...]
H A Drpc_parse.h111 case_list *cases; member in struct:union_def
/openbsd-current/sys/lib/libkern/arch/sh/
H A Dffs.S48 bt Lzero ! testing here to accelerate ret=1..8 cases
/openbsd-current/lib/libc/arch/sh/string/
H A Dffs.S49 bt Lzero ! testing here to accelerate ret=1..8 cases
/openbsd-current/gnu/llvm/compiler-rt/lib/builtins/
H A Dint_div_impl.inc18 // d == 0 cases are unspecified.
47 // d == 0 cases are unspecified.
/openbsd-current/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/
H A Dsuite.py36 cases = 0
38 cases += test.countTestCases()
39 return cases
78 runner, such as TextTestRunner. It will run the individual test cases
/openbsd-current/gnu/usr.bin/perl/cpan/Encode/Byte/
H A DByte.pm25 This module implements various single byte encodings. For most cases it uses
/openbsd-current/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/
H A DMkbootstrap.pm96 be a C<*_BS> file which has code for the special cases, like posix for
/openbsd-current/gnu/usr.bin/perl/dist/XSLoader/t/
H A DXSLoader.t140 my @cases = (
145 for my $case (@cases) {
/openbsd-current/gnu/usr.bin/gcc/gcc/f/
H A Dstw.h104 mallocPool pool; /* Pool in which this and all cases are
106 unsigned long cases; /* Number of CASE stmts seen so far. */ member in struct:_ffestw_select_
/openbsd-current/gnu/usr.bin/perl/cpan/Encode/lib/Encode/Unicode/
H A DUTF7.pm124 Mozilla seems to support one). For general cases, use UTF-8 for
/openbsd-current/sys/dev/
H A Dkcov.c245 __sanitizer_cov_trace_switch(uint64_t val, uint64_t *cases) argument
256 ncases = cases[0];
257 nbits = cases[1];
278 trace_cmp(kd, type, cases[i + 2], val, pc);
/openbsd-current/gnu/llvm/llvm/utils/TableGen/
H A DDAGISelMatcher.h470 /// to one matcher per opcode. If the opcode doesn't match any of the cases,
476 SwitchOpcodeMatcher(ArrayRef<std::pair<const SDNodeInfo*, Matcher*> > cases) argument
477 : Matcher(SwitchOpcode), Cases(cases.begin(), cases.end()) {}
520 /// to one matcher per case. If the type doesn't match any of the cases,
526 SwitchTypeMatcher(ArrayRef<std::pair<MVT::SimpleValueType, Matcher*> > cases) argument
527 : Matcher(SwitchType), Cases(cases.begin(), cases.end()) {}
/openbsd-current/gnu/usr.bin/perl/ext/mro/
H A Dmro.pm111 This example is fairly trivial; for more complex cases and a deeper
297 In simple cases, it is equivalent to:
301 But there are some cases where only this solution

Completed in 246 milliseconds

12345678