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

123456

/macosx-10.10.1/Heimdal-398.1.2/lib/wind/
H A Dtest-map.c53 static struct example cases[] = { variable in typeref:struct:example
94 for (i = 0; i < sizeof(cases)/sizeof(cases[0]); ++i)
95 failures += try(&cases[i]);
H A Dgen-punycode-examples.py79 cases.append([codes, m.group(1), desc])
83 cases = [] variable
113 for x in cases:
128 "const size_t punycode_examples_size = %u;\n\n" % len(cases))
/macosx-10.10.1/CPANInternal-159.1/Perl4-CoreLibs-0.003/lib/
H A Dchat2.pl188 local($cases, $pattern, $action, $subname);
208 $cases .= <<"EDQ"; # header is funny to make everything elsif's
216 $cases .= <<"EDQ";
224 $cases .= <<"EDQ";
233 $cases .= <<"EDQ";
242 $cases .= <<"EDQ" if $eof;
247 $cases .= <<"EDQ" if $timeout;
252 $cases .= <<'ESQ';
273 eval $cases; die "$cases
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dcalcasts.cpp7 * behavior of a calendar to a certain set of 'test cases', involving
42 void CalendarCaseTest::doTestCases(const TestCase *cases, Calendar *cal) { argument
51 for(i=0;cases[i].era>=0;i++) {
52 UDate t = (JULIAN_EPOCH+(ONE_DAY*cases[i].julian));
54 logln("Test case %d: julianday%f -> date %f\n", i, cases[i].julian, t);
61 checkField(cal, UCAL_ERA, cases[i].era, status);
62 checkField(cal, UCAL_YEAR, cases[i].year,status);
63 checkField(cal, UCAL_MONTH, cases[i].month - 1,status);
64 checkField(cal, UCAL_DATE, cases[i].day,status);
65 checkField(cal, UCAL_DAY_OF_WEEK, cases[
[all...]
H A Dcalcasts.h7 * behavior of a calendar to a certain set of 'test cases', involving
40 * @param cases array of items to test. Terminate with a "-1" for era.
42 void doTestCases(const TestCase *cases, Calendar *cal);
56 // test cases
/macosx-10.10.1/Libc-1044.1.2/gen/
H A Dget_compat.c160 testcase cases[] = { variable
183 int ncases = sizeof(cases)/sizeof(testcase);
200 function, but really nothing except the test cases wants to
205 bool ret = compat_mode("bin/compat_mode", cases[j].mode);
206 bool expect = cases[j].expected[i];
213 cases[j].mode, ret, expect, (ret == expect) ? "" : " FAILED");
217 /* We have ncases entries in cases[], but each is run multiple
219 printf("Passed %d of %d cases\n",
/macosx-10.10.1/ruby-106/ruby/ext/digest/lib/digest/
H A Dhmac.rb142 cases.each { |h|
150 cases.each { |h|
162 cases.each { |h|
183 def cases method in class:TC_HMAC_MD5
226 def cases method in class:TC_HMAC_SHA1
269 def cases method in class:TC_HMAC_RMD160
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGStaticExecutionCountEstimationPhase.cpp76 for (unsigned i = data->cases.size(); i--;)
77 applyCounts(data->cases[i].target);
H A DDFGCFGSimplificationPhase.cpp134 // Prune out cases that end up jumping to default.
135 for (unsigned i = 0; i < data->cases.size(); ++i) {
136 if (data->cases[i].target.block == data->fallThrough.block) {
137 data->fallThrough.count += data->cases[i].target.count;
138 data->cases[i--] = data->cases.last();
139 data->cases.removeLast();
143 // If there are no cases other than default then this turns
145 if (data->cases.isEmpty()) {
156 for (unsigned i = data->cases
[all...]
H A DDFGBinarySwitch.cpp35 BinarySwitch::BinarySwitch(GPRReg value, const Vector<int64_t>& cases, Type type) argument
42 if (cases.isEmpty())
45 for (unsigned i = 0; i < cases.size(); ++i)
46 m_cases.append(Case(cases[i], i));
H A DDFGBinarySwitch.h40 // sufficiently few cases that the total cost of log(numCases) branches is
67 BinarySwitch(GPRReg value, const Vector<int64_t>& cases, Type);
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A Dregc_locale.c607 range(v, a, b, cases)
611 int cases; /* case-independent? */
622 if (!cases) { /* easy version */
681 eclass(v, c, cases)
685 int cases; /* all cases? */
694 if (cases) {
702 if (cases) {
717 cclass(v, startp, endp, cases)
721 int cases; /* cas
[all...]
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-report/
H A Dintegration_test.sh98 atf_check -s eq:0 -o match:'test cases' -o match:'Failed test cases' \
144 expect_helpers (1/1): 17 test cases
163 Test cases for known bugs:
174 Failed test cases:
178 1 passed test cases.
179 7 failed test cases.
180 9 expected failed test cases.
181 0 skipped test cases.
227 atf_check -s eq:0 -o ignore -e empty grep "test cases" fmt
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Dfop006.tcl43 set cases {}
46 # Set up cases where op1 is successful.
51 append cases " " [create_tests\
59 # Set up evil two-op cases (op1 fails). Omit open_create
65 append cases " " [create_badtests $op1 $op2 \
77 # Comment this loop out to remove the list of cases.
79 # foreach case $cases {
86 # set cases {
92 # Run all the cases
93 foreach case $cases {
[all...]
H A Dfop001.tcl33 set cases {}
36 # Set up all sensible two-op cases (op1 succeeds).
41 append cases " " [create_tests $op1 $op2 \
47 # Set up evil two-op cases (op1 fails). Omit open_create
53 append cases " " [create_badtests $op1 $op2 \
68 # Comment this loop out to remove the list of cases.
70 # foreach case $cases {
77 # Run all the cases
78 foreach case $cases {
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/liblunicode/ucdata/
H A Dbidiapi.txt35 and is used only in cases where a string contains no characters with strong
H A Ducgendat.c181 static ac_uint4 cases[3]; variable
383 * Optimize the cases of extending the last range and adding new ranges to
537 cases[2] = code;
562 title[i].key = cases[2]; /* Title */
563 title[i].other1 = cases[0]; /* Upper */
564 title[i].other2 = cases[1]; /* Lower */
577 cases[0] = code;
583 if (cases[2] == 0)
584 cases[2] = code;
609 upper[i].key = cases[
[all...]
/macosx-10.10.1/KerberosHelper-151/Tests/
H A Dkerberos-helper-tests.c35 int testNumber = -1, lineNumber = 0, cases; local
72 for (cases = 0; cases < 2; cases++) {
245 for (cases = 0; cases < 2; cases++) {
/macosx-10.10.1/apr-32/apr/apr/test/
H A Dteststr.c42 cases[] = { local
72 for (curtc = 0; curtc < sizeof cases / sizeof cases[0]; curtc++) {
77 str1 = apr_pstrdup(p, cases[curtc].input);
78 str2 = apr_pstrdup(p, cases[curtc].input);
81 retval1 = apr_strtok(str1, cases[curtc].sep, &state);
82 retval2 = strtok(str2, cases[curtc].sep);
227 /* error cases */
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A Dregc_locale.c677 int cases) /* case-independent? */
688 if (!cases) { /* easy version */
751 int cases) /* all cases? */
763 if (cases) {
774 if (cases) {
794 int cases) /* case-independent? */
830 if (cases && len == 5 && (strncmp("lower", np, 5) == 0
1010 * messy cases are done via range().
669 range( struct vars *v, celt a, celt b, int cases) argument
741 eclass( struct vars *v, celt c, int cases) argument
783 cclass( struct vars *v, const chr *startp, const chr *endp, int cases) argument
/macosx-10.10.1/emacs-93/emacs/lisp/emacs-lisp/
H A Dbindat.el328 (let ((tag len) (cases (nthcdr tail item)) case cc)
329 (while cases
330 (setq case (car cases)
331 cases (cdr cases)
336 cases nil)))))
433 (let ((tag len) (cases (nthcdr tail item)) case cc)
434 (while cases
435 (setq case (car cases)
436 cases (cd
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dcollationkeys.cpp253 SortKeyLevel cases; local
422 cases.appendByte(CASE_LOWER_FIRST_COMMON_MIDDLE << 4);
431 cases.appendByte(b << 4);
444 cases.appendByte(CASE_UPPER_FIRST_COMMON_LOW << 4);
447 cases.appendByte((CASE_UPPER_FIRST_COMMON_LOW + commonCases) << 4);
456 cases.appendByte(c);
645 ok &= cases.isOk();
648 int32_t length = cases.length() - 1; // Ignore the trailing NO_CE.
651 uint8_t c = (uint8_t)cases[i];
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/
H A Dexpect.c116 struct ecase **cases; member in struct:exp_cases_descriptor
144 cmd->ecd.cases = 0;
211 if (!eg->ecd.cases) return;
214 free_ecase(interp,eg->ecd.cases[i],free_ilist);
216 ckfree((char *)eg->ecd.cases);
218 eg->ecd.cases = 0;
388 eg->ecd.cases is an array of ecases
423 /* cases. This will often be too large (i.e., if there are flags) */
426 eg->ecd.cases = (struct ecase **)ckalloc(sizeof(struct ecase *) * (1+(objc/2)));
460 /* since cases ar
[all...]
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSShared/
H A Ddnsextd.conf5 // In most cases, you should not need to change these default options in
/macosx-10.10.1/dyld-353.2.1/unit-tests/
H A Dbuild-iPhoneOS-unit-tests3 # cd into test-cases directory
4 TEST_CASE_DIR=`echo "$0" | sed 's/build-iPhoneOS-unit-tests/test-cases/'`
15 # create scripts to run test cases on device
26 # build but don't run test cases
28 cd /var/root/testing/unit-tests-${arch}-${os}/test-cases
37 # tar up all test cases
44 echo "echo \" * * * Unpacking test cases * * *\"" >> /tmp/unpack-and-run-all-tests

Completed in 147 milliseconds

123456