Searched refs:result (Results 51 - 75 of 8034) sorted by relevance

1234567891011>>

/macosx-10.10/JavaScriptCore-7600.1.17/tests/stress/
H A Dget-by-id-throw-from-unexpected-getter-through-optimized-code-that-does-not-exit.js16 var result = foo({f:23});
17 if (result != 23)
18 throw "Error: bad result: " + result;
19 result = foo({g:12, f:13});
20 if (result != 13)
21 throw "Error: bad result: " + result;
22 result = foo({g:12, h:13, f:14});
23 if (result !
[all...]
H A Dget-by-id-throw-from-unexpected-getter-through-optimized-code.js16 var result = foo({f:23});
17 if (result != 24)
18 throw "Error: bad result: " + result;
19 result = foo({g:12, f:13});
20 if (result != 14)
21 throw "Error: bad result: " + result;
22 result = foo({g:12, h:13, f:14});
23 if (result !
[all...]
H A Dic-throw-through-optimized-code.js10 var result = foo(23);
11 if (result != 43)
12 throw "Error: bad result: " + result;
13 result = foo({f:25});
14 if (result != 26)
15 throw "Error: bad result: " + result;
16 result = foo({g:12, f:13});
17 if (result !
[all...]
H A Dnew-array-with-size-with-bad-time.js13 var result = foo(size);
14 if (result.length != size)
15 throw "Error: bad result: " + result;
17 for (var s in result) {
22 throw "Error: array is in bad state: " + result;
23 result[0] = "42.5";
24 if (result[0] != "42.5")
25 throw "Error: array is in wierd state: " + result;
27 result[
[all...]
H A Dnew-contiguous-array-with-size.js8 var result = foo(size);
9 if (result.length != size) {
10 print("Got a weird length: " + result.length);
11 throw "Error: bad result: " + result;
14 for (var s in result)
18 throw "Error: array is in bad state: " + result;
20 result[0] = "42.5";
21 if (result[0] != "42.5") {
23 throw "Error: array is in wierd state: " + result;
[all...]
H A Dto-this-polymorphic.js14 var result = o.f();
15 if (result != foo)
16 throw "Error: bad object result: " + result;
18 result = o.g();
19 if (result != 43)
20 throw "Error: bad string result: " + result;
22 result = o.g();
23 if (result !
[all...]
H A Dfiat-double-to-int52-then-fail-to-fold.js8 var result = foo();
9 if (result != Math.sqrt(2) + 1)
10 throw "Error: bad result: " + result;
H A Dfiat-double-to-int52-then-fold.js8 var result = foo();
9 if (result != 42 + 1)
10 throw "Error: bad result: " + result;
H A Dredundant-array-bounds-checks-addition-skip-first.js22 var result = foo(array.concat([1, 2, 3, 4, 5, 6, 7, 8]), offset);
23 if (!arraycmp(result, [1, 2, 3, 4, 5, 6, 7, 8]))
24 throw "Error: bad result (1..8): " + result;
27 var result = foo([1, 2, 3, 4, 5, 6, 7], 0);
28 if (!arraycmp(result, [1, 2, 3, 4, 5, 6, 7, void 0]))
29 throw "Error: bad result (1..7): " + result;
30 var result = foo([1, 2, 3, 4, 5, 6], 0);
31 if (!arraycmp(result, [
[all...]
H A Dredundant-array-bounds-checks-addition.js22 var result = foo(array.concat([1, 2, 3, 4, 5, 6, 7, 8]), offset);
23 if (!arraycmp(result, [1, 2, 3, 4, 5, 6, 7, 8]))
24 throw "Error: bad result (1..8): " + result;
27 var result = foo([1, 2, 3, 4, 5, 6, 7], 0);
28 if (!arraycmp(result, [1, 2, 3, 4, 5, 6, 7, void 0]))
29 throw "Error: bad result (1..7): " + result;
30 var result = foo([1, 2, 3, 4, 5, 6], 0);
31 if (!arraycmp(result, [
[all...]
H A Dredundant-array-bounds-checks-unchecked-addition.js22 var result = foo(array.concat([1, 2, 3, 4, 5, 6, 7, 8]), offset);
23 if (!arraycmp(result, [1, 2, 3, 4, 5, 6, 7, 8]))
24 throw "Error: bad result (1..8): " + result;
27 var result = foo([1, 2, 3, 4, 5, 6, 7], 0);
28 if (!arraycmp(result, [1, 2, 3, 4, 5, 6, 7, void 0]))
29 throw "Error: bad result (1..7): " + result;
30 var result = foo([1, 2, 3, 4, 5, 6], 0);
31 if (!arraycmp(result, [
[all...]
H A Dstring-out-of-bounds-negative-proto-value.js10 var result = foo("hello");
11 if (result != "hello")
12 throw "Error: bad result: " + result;
H A Duse-arguments-as-object-pointer.js9 var result = foo();
10 if (result != 42)
11 throw "Error: bad result: " + result;
H A Dvalue-to-int32-undefined.js8 var result = foo(void 0);
9 if (result != 0)
10 throw "Error: bad result: " + result;
H A Dconstant-closure-var-with-dynamic-invalidation.js3 var result = 0; variable
7 result += x;
15 if (result != 42 * (n - m) + 53 * m)
16 throw "Error: bad result: " + result;
H A Dfiat-value-to-int52.js13 var result = foo();
14 if (result != 43 && result != 6.5)
15 throw "Error: bad result: " + result;
H A Dfold-to-primitive-in-cfa.js10 var result = foo({toString:function() { return "foo" }});
11 if (result != "foo world" && result != "hello world")
12 throw "Error: bad result: " + result;
H A Druntime-array.js3 var result = array.concat();
5 if (result.length != 3)
7 for (var i = 0; i < result.length; i++) {
8 if (result[i] != i + 1)
9 throw new Error("Runtime array concat result is incorrect");
/macosx-10.10/WebCore-7600.1.25/bindings/scripts/
H A DStaticString.pm34 my @result = ();
37 push(@result, "static const LChar ${name}String8[] = \"${value}\";\n");
40 push(@result, "\n");
45 push(@result, <<END);
55 push(@result, "\n");
57 return join "", @result;
65 my @result = ();
67 push(@result, "#ifndef NDEBUG\n");
70 push(@result, " reinterpret_cast<StringImpl*>(&${name}Data)->assertHashIsCorrect();\n");
73 push(@result, "#endi
[all...]
/macosx-10.10/bind9-45.101/bind9/contrib/dlz/drivers/
H A Ddlz_drivers.c23 #include <isc/result.h>
71 isc_result_t result = ISC_R_SUCCESS; local
74 result = dlz_stub_init();
75 if (result != ISC_R_SUCCESS)
76 return (result);
80 result = dlz_postgres_init();
81 if (result != ISC_R_SUCCESS)
82 return (result);
86 result = dlz_mysql_init();
87 if (result !
[all...]
/macosx-10.10/tcl-105/tcl_ext/tbcload/tbcload/tests/tcl/
H A Dprocbod3.tcl20 set result [a TEST]
23 lappend result [a TEST]
25 set result
/macosx-10.10/WebCore-7600.1.25/crypto/mac/
H A DCryptoKeyMac.cpp37 Vector<uint8_t> result(size);
38 CCRandomCopyBytes(kCCRandomDefault, result.data(), result.size());
39 return result;
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/dlclose-basic/
H A Dmain.c41 int result = dlclose(handle); local
42 if ( result != 0 ) {
48 result = dlclose(handle);
49 if ( result != -1 ) {
50 FAIL("dlclose() on released handle should have returned -1, but returned %d", result);
55 result = dlclose((void*)0x12345);
56 if ( result != -1 ) {
57 FAIL("dlclose() on bogus handle should have returned -1, but returned %d", result);
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/Statements/
H A Dswitch-001.js41 var result = 0;
45 result += 2;
47 result += 4;
49 result += 8;
51 result += 16;
53 result += 32;
55 result +=64;
63 result );
H A Dswitch-002.js36 var result = 0;
40 result += 2;
42 result += 4;
45 result += 8;
47 result += 16;
49 result += 32;
52 result += 64;
59 result );

Completed in 157 milliseconds

1234567891011>>