HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 1326 - 1350 of 4292) sorted by null

<<51525354555657585960>>

  /external/v8/test/mjsunit/
debug-sourceinfo.js 30 function a() { b(); };
31 function b() {
34 function c(x) {
41 function d(x) {
62 // This is the number of comment lines above the first test function.
75 // of characters before 'function a(...'.
152 // Test first position in function a().
157 // Test first position in function b().
162 // Test first position in function c().
167 // Test first position in function d().
    [all...]
function-caller.js 28 function f(match) {
32 function g(match) {
37 // Check called from function.
38 function h() {
53 "abel".replace(/b/g, function h() {
global-load-from-nested-eval.js 33 function test(source) {
39 function testWith(source) {
47 function testEval(source) {
49 function f() {
57 function testEvalDontShadow(source) {
negate.js 31 function testmulneg(a, b) {
43 var x = { valueOf: function() { return 2; } };
44 var y = { valueOf: function() { return 3; } };
51 var v = { valueOf: function() { z+=2; return z; } };
52 var w = { valueOf: function() { z+=3; return z; } };
scope-calls-eval.js 28 // Tests if the information about eval calls in a function is
32 function f1() {
34 function g() {
50 function f2() {
52 function g() {
stack-traces-custom-lazy.js 28 function testPrepareStackTrace(closure) {
38 // function right before calling error.stack should be fine.
39 Error.prepareStackTrace = function(e, frames) {
47 testPrepareStackTrace(function() { throw new Error("foo"); });
48 testPrepareStackTrace(function f() { f(); });
with-function-expression.js 28 var source = "(function x() { with({}) { return '' + x; } })()";
33 // Check that the return value is a function. Use regexp to avoid
34 // depending on the exact printing of the function.
35 var regexp = /function/;
36 var res = assertTrue(eval(source).match(regexp) == 'function');
  /external/v8/test/mjsunit/es6/regress/
regress-cr372788.js 33 var thenable = { then: function(f) { x++; f(); } };
36 Promise.resolve(thenable).then(function() { x++; y++; });
40 (function check() {
41 Promise.resolve().chain(function() {
44 }).catch(function(e) { %AbortJS("FAILURE: " + e) });
  /external/v8/test/mjsunit/regress/
regress-1146.js 29 function F() {}
31 function f(i) { return a[i](); }
33 a.first = function() { return 11; }
34 a[0] = function() { return 22; }
36 a[obj] = function() { return 33; }
regress-1650.js 30 function g(f) { return f.call.apply(f.bind, arguments); }
34 function t() { }
41 function Fake() {}
45 Fake.prototype.call = function () {
53 Fake.prototype.bind = function () {
regress-1973.js 31 function TestAccessorWrapping(primitive) {
36 get: function() { "use strict"; assertSame(strict_type, typeof this); },
37 set: function() { "use strict"; assertSame(strict_type, typeof this); }
43 get: function() { assertSame(sloppy_type, typeof this); },
44 set: function() { assertSame(sloppy_type, typeof this); }
regress-2326.js 32 function makeClosure() {
33 function f(mode, iterations) {
46 // Generate two closures sharing the same underlying function literal.
50 // This function should be optimized via OSR in the first tight loop.
53 // This function should be optimized via OSR in the second tight loop.
regress-2717.js 30 (function() {
31 function test1(a) {
40 (function() {
41 function test1(a) {
45 function test2(a) {
regress-354433.js 32 function __f_2() {
33 this.__defineGetter__('str', function() { return __f_2(this); });
35 this.toString = function() {
43 function __f_5(fun,a,b) {
49 function __f_8(a,b) { return a%b };
regress-calls-with-migrating-prototypes.js 30 function f() {
33 function C1(f) {
38 function foo(o) {
45 var o3 = new C1(function() { return 2; });
48 o2.__proto__.f = function() { return 3; };
regress-crbug-243868.js 32 function f(o) {
36 // Create an object with a constant function in another realm.
38 var realmObject = Realm.eval(realm, "function g() {}; var o = { val:g }; o;")
40 // Make the CompareNil IC in the function monomorphic.
44 // Optimize the function containing the CompareNil IC.
regress-deopt-store-effect.js 36 function g(o) {
44 set: function(v) { %DeoptimizeFunction(g); },
45 get: function() { return 20; }
57 function bar(o, p) {
74 function bar1(o, p) {
  /external/v8/test/webkit/
continue-break-multiple-labels.js 28 function test1()
45 function test2()
62 function test3()
81 function test4()
96 function test5()
dfg-cfa-prove-put-by-id-simple-when-storing-to-specialized-function.js 25 "Checks that the DFG CFA does the right things if it proves that a put_by_id is a simple replace when storing to a specialized function property."
28 function foo(o, v) {
36 function bar(f) {
41 function baz() {
49 function fuzz() {
dfg-constant-fold-logical-not-branch.js 28 function foo1(o) {
35 function foo2(o) {
42 function Stuff() {
46 thingy: function(x) { return x + 1; },
47 otherThingy: function(x) { return x - 1; }
dfg-inline-arguments-become-double.js 25 "This tests that inlining preserves function.arguments functionality if the arguments are reassigned to refer to an int32."
28 function foo() {
32 function bar(a,b,c) {
37 function baz(a,b,c) {
41 function argsToStr(args) {
dfg-inline-arguments-become-int32.js 25 "This tests that inlining preserves function.arguments functionality if the arguments are reassigned to refer to an int32."
28 function foo() {
32 function bar(a,b,c) {
37 function baz(a,b,c) {
41 function argsToStr(args) {
dfg-inline-arguments-int32.js 25 "This tests that inlining preserves function.arguments functionality if the arguments were represented as unboxed int32."
28 function foo() {
32 function bar(a,b,c) {
36 function baz(a,b,c) {
40 function argsToStr(args) {
dfg-inline-arguments-reset-changetype.js 25 "This tests that inlining preserves function.arguments functionality if the arguments are reassigned with a different type."
28 function foo() {
32 function bar(a,b,c) {
37 function baz(a,b,c) {
41 function argsToStr(args) {
dfg-inline-arguments-reset.js 25 "This tests that inlining preserves function.arguments functionality if the arguments are reassigned."
28 function foo() {
32 function bar(a,b,c) {
37 function baz(a,b,c) {
41 function argsToStr(args) {

Completed in 970 milliseconds

<<51525354555657585960>>