Searched refs:result (Results 26 - 50 of 8034) sorted by relevance

1234567891011>>

/macosx-10.10/JavaScriptCore-7600.1.17/tests/stress/
H A Dvalue-to-int32-undefined-constant.js8 var result = foo();
9 if (result != 0)
10 throw "Error: bad result: " + result;
H A Dfiat-value-to-int52-then-fail-to-fold.js8 var result = foo();
9 if (result != 43 && result != 6.5)
10 throw "Error: bad result: " + result;
H A Dfiat-value-to-int52-then-fold.js8 var result = foo();
9 if (result != 43 && result != 6.5)
10 throw "Error: bad result: " + result;
H A Dbit-op-value-to-int32-input-liveness.js8 var result = foo({f:5.5}, {f:6.5});
9 if (result != 3)
10 throw "Error: bad result: " + result;
13 var result = foo({f:"5.5"}, {f:6.5});
14 if (result != 3)
15 throw "Error: bad result: " + result;
17 var result = foo({f:5.5}, {f:"6.5"});
18 if (result !
[all...]
H A Dget-by-id-untyped.js11 var result = foo("hello");
12 if (result != 42)
13 throw "Error: bad result for string: " + result;
14 result = foo(13);
15 if (result != 24)
16 throw "Error: bad result for number: " + result;
17 result = foo({f:84});
18 if (result !
[all...]
H A Darray-push-contiguous.js3 var result = [];
5 result.push(array.push("hello"));
6 return [array, result];
12 var result = foo();
13 if (result[0].toString() != "hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello,hello")
14 throw "Error: bad array: " + result[0];
15 if (result[1].toString() != "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42")
16 throw "Error: bad array: " + result[1];
H A Darray-push-double.js3 var result = [];
5 result.push(array.push(7.5 - i));
6 return [array, result];
12 var result = foo();
13 if (result[0].toString() != "7.5,6.5,5.5,4.5,3.5,2.5,1.5,0.5,-0.5,-1.5,-2.5,-3.5,-4.5,-5.5,-6.5,-7.5,-8.5,-9.5,-10.5,-11.5,-12.5,-13.5,-14.5,-15.5,-16.5,-17.5,-18.5,-19.5,-20.5,-21.5,-22.5,-23.5,-24.5,-25.5,-26.5,-27.5,-28.5,-29.5,-30.5,-31.5,-32.5,-33.5")
14 throw "Error: bad array: " + result[0];
15 if (result[1].toString() != "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42")
16 throw "Error: bad array: " + result[1];
H A Darray-push.js3 var result = [];
5 result.push(array.push(7 - i));
6 return [array, result];
12 var result = foo();
13 if (result[0].toString() != "7,6,5,4,3,2,1,0,-1,-2,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-23,-24,-25,-26,-27,-28,-29,-30,-31,-32,-33,-34")
14 throw "Error: bad array: " + result[0];
15 if (result[1].toString() != "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42")
16 throw "Error: bad array: " + result[1];
H A Dnew-array-storage-array-with-size.js8 var result = foo(size);
9 if (result.length != size)
10 throw "Error: bad result: " + result;
12 for (var s in result)
15 throw "Error: array is in bad state: " + result;
16 result[0] = "42.5";
17 if (result[0] != "42.5")
18 throw "Error: array is in wierd state: " + result;
H A Dnew-double-array-with-size.js8 var result = foo(size);
9 if (result.length != size)
10 throw "Error: bad result: " + result;
12 for (var s in result)
15 throw "Error: array is in bad state: " + result;
16 result[0] = 42.5;
17 if (result[0] != 42.5)
18 throw "Error: array is in wierd state: " + result;
H A Dnew-int32-array-with-size.js8 var result = foo(size);
9 if (result.length != size)
10 throw "Error: bad result: " + result;
12 for (var s in result)
15 throw "Error: array is in bad state: " + result;
16 result[0] = 42;
17 if (result[0] != 42)
18 throw "Error: array is in wierd state: " + result;
H A Dfold-to-primitive-to-identity-in-cfa.js10 var result = foo({toString:function() { return "foo" }}, i & 1);
11 if (result != "foo world" && result != "hello world" && result != "bar world")
12 throw "Error: bad result: " + result;
H A Dto-string-on-object.js12 var result = foo(new Foo());
13 if (typeof result != "string") {
14 describe(result);
15 throw "Error: result isn't a string";
17 if (result != "hello")
18 throw "Error: bad result: " + result;
H A Dto-string-on-string-object.js8 var result = foo(new String("hello"));
9 if (typeof result != "string") {
10 describe(result);
11 throw "Error: result isn't a string";
13 if (result != "hello")
14 throw "Error: bad result: " + result;
H A Dto-string-on-value.js8 var result = foo(42);
9 if (typeof result != "string") {
10 describe(result);
11 throw "Error: result isn't a string";
13 if (result != "42")
14 throw "Error: bad result: " + result;
H A Dfiat-value-to-int52-then-exit-not-double.js16 var result = foo();
17 if (result != 43 && result != 6.5)
18 throw "Error: bad result: " + result;
22 var result = foo();
23 if (result != "hello1")
24 throw "Error: bad result at end: " + result;
H A Dfiat-value-to-int52-then-exit-not-int52.js16 var result = foo();
17 if (result != 43 && result != 6.5)
18 throw "Error: bad result: " + result;
22 var result = foo();
23 if (result != 6.5)
24 throw "Error: bad result at end: " + result;
/macosx-10.10/tcl-105/tcl_ext/tbcload/tbcload/tests/tcl/
H A Dexpr.tcl20 set result [expr int(10 * [expr sqrt(16)])]
21 set result
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/big-jump-table/
H A Dpointers.c6 long result = 0; local
7 result += (long)&foo001;
8 result += (long)&foo002;
9 result += (long)&foo003;
11 result += (long)&foo818;
14 result += (long)&foo817;
17 result += (long)&foo816;
20 result += (long)&foo815;
22 return result;
/macosx-10.10/bind9-45.101/bind9/doc/misc/
H A Dsort-options.pl40 my $result = "";
42 $result = ${result}.${i};
43 $result = $result."\n" if ($i =~ /^[a-z]/i);
46 $result = ${result}.${fin};
47 return ($result);
/macosx-10.10/CPANInternal-159.1/PlRPC-0.2020/t/
H A Dlib.pl8 my $result = shift;
9 printf("%sok %d\n", ($result ? "" : "not "), ++$numTest);
10 $result;
35 my $result = eval { $calculator->add(4, 6, 7) };
36 Test($result and $result eq 17)
38 (defined($result) ? $result : "undef"));
40 $result = eval { $calculator->multiply(2, 3, 4) };
41 Test($result an
[all...]
/macosx-10.10/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Dresult.c2 static char *rcsid = "$Id: result.c,v 1.1 2003/06/04 00:26:12 marka Exp $";
48 #include <idn/result.h>
71 idn_result_tostring(idn_result_t result) { argument
72 if (result < 0 || result > idn_failure)
73 return ("unknown result code");
75 return (result_string[result]);
/macosx-10.10/postfix-255/postfix/src/util/
H A Dbasename.c13 /* \fIpath\fR and returns a pointer to the result.
40 char *result; local
42 if ((result = strrchr(path, '/')) == 0)
43 result = (char *) path;
45 result += 1;
46 return (result);
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/Statements/
H A Dswitch-003.js36 var result = "";
39 case "z": result += "z";
40 case "y": result += "y";
41 case "x": result += "x";
42 case "w": result += "w";
43 default: result += "*";
44 case "a": result += "a";
45 case "b": result += "b";
46 case "c": result += "c";
53 result );
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/ldap/
H A Dapr_ldap_option.c41 apr_ldap_err_t *result);
43 apr_ldap_err_t *result);
57 apr_ldap_err_t *result; local
59 result = apr_pcalloc(pool, sizeof(apr_ldap_err_t));
60 *result_err = result;
61 if (!result) {
66 result->rc = ldap_get_option(ldap, option, outvalue);
69 if (result->rc != LDAP_SUCCESS) {
70 result->msg = ldap_err2string(result
95 apr_ldap_err_t *result; local
223 option_set_tls(apr_pool_t *pool, LDAP *ldap, const void *invalue, apr_ldap_err_t *result) argument
396 option_set_cert(apr_pool_t *pool, LDAP *ldap, const void *invalue, apr_ldap_err_t *result) argument
[all...]

Completed in 116 milliseconds

1234567891011>>