HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 3026 - 3050 of 6482) sorted by null

<<121122123124125126127128129130>>

  /external/v8/test/mjsunit/compiler/
eval-introduced-closure.js 35 function f() { return x; }
39 function do_eval(str) {
49 function do_eval_local(str) {
60 function do_eval_with_other_eval_call(str) {
72 function test_non_strict_outer_eval() {
73 function strict_eval(str) { "use strict"; return eval(str); }
84 function test_strict_outer_eval() {
86 function strict_eval(str) { "use strict"; return eval(str); }
  /external/v8/test/mjsunit/
debug-referenced-by.js 53 function d(){};
61 function closure_simple(p) {
62 return function() { p = null; };
65 // This adds a reference (function context).
68 // This clears the reference (in function context).
73 function closure_eval(p, s) {
77 return function e(s) { eval(s); };
80 // This adds a references (function context).
debug-stepout-recursive-function.js 37 function listener(event, exec_state, event_data, data) {
53 function BeginTest(name) {
59 function EndTest(expected_break_point_hit_count) {
70 function fact(x) {
82 shouldBreak = function(x) { return x == 3; };
88 shouldBreak = function(x) { return x == 2; };
94 shouldBreak = function(x) { return x == 1; };
100 shouldBreak = function(x) { return x == 1 || x == 3; };
double-equals.js 34 function testEqual(a, b) {
41 function testNotEqual(a, b) {
49 function Wrapper(value) {
51 this.valueOf = function () { return this.value; };
55 // valueOf isn't a function.
56 function Wrapper2(value) {
59 this.toString = function () { return this.value; };
110 (function () {
116 (function () {
122 (function () {
    [all...]
mirror-function.js 31 function MirrorRefCache(json_refs) {
39 MirrorRefCache.prototype.lookup = function(handle) {
43 function testFunctionMirror(f) {
59 assertEquals('function', mirror.type());
61 assertEquals("Function", mirror.className());
74 assertEquals('function', fromJSON.type);
75 assertEquals('Function', fromJSON.className);
76 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type);
77 assertEquals('Function', refs.lookup(fromJSON.constructorFunction.ref).name);
88 testFunctionMirror(function(){});
    [all...]
prototype.js 28 function A() { }
29 function B() { }
30 function C() { }
32 function NewC() {
63 function D() {
77 function X() { }
78 function Y() { }
80 X.prototype = function(a,b) { };
setter-on-constructor-prototype.js 30 function RunTest(ensure_fast_case) {
31 function C1() {
46 function C2() {
62 function C3() {
66 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; });
78 function C4() {
83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; });
95 function D() {
  /external/v8/test/mjsunit/regress/
regress-1692.js 36 f : { get: function(){}, enumerable: true },
37 g : { get: function(){}, enumerable: false },
38 11 : { get: function(){}, enumerable: true },
39 12 : { get: function(){}, enumerable: false }
46 h : { get: function(){}, enumerable: true },
47 k : { get: function(){}, enumerable: false },
48 13 : { get: function(){}, enumerable: true },
49 14 : { get: function(){}, enumerable: false }
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
clear-watch-invalid-id-crash.js 9 document.body.onload = function() {
10 navigator.geolocation.watchPosition(function() {});
position-string.js 16 navigator.geolocation.getCurrentPosition(function(p) {
25 }, function(e) {
window-close-crash.js 14 function gotPosition(p)
21 function waitForWindowToClose()
  /external/webkit/Source/JavaScriptCore/interpreter/
CallFrameClosure.h 34 JSFunction* function; member in struct:JSC::CallFrameClosure
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.4.js 34 is the this value for the invocation of the function; it is an error if
65 function test() {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.1.1-1.js 47 function test() {
15.9.1.1-2.js 40 function test() {
15.9.5.1.js 47 function test() {
15.9.5.34-1.js 52 function test() {
66 function getFunctionCases() {
77 "function",
93 function getTestCases() {
147 function addNewTestCase( DateString, UTCDate, LocalDate) {
182 function MyDate() {
191 function LocalDateFromTime(t) {
195 function UTCDateFromTime(t) {
198 function MyDateFromTime( t ) {
214 function SetMonth( t, mon, date )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.12-2-n.js 59 function test() {
11.12-3.js 59 function test() {
11.12-4.js 59 function test() {
11.2.3-2-n.js 24 ECMA Section: 11.2.3. Function Calls
60 var TITLE = "Function Calls";
78 function test() {
11.2.3-3-n.js 24 ECMA Section: 11.2.3. Function Calls
60 var TITLE = "Function Calls";
69 function test() {
11.2.3-4-n.js 24 ECMA Section: 11.2.3. Function Calls
60 var TITLE = "Function Calls";
69 function test() {
11.2.3-5.js 24 ECMA Section: 11.2.3. Function Calls
60 var TITLE = "Function Calls";
69 function test() {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
15.3.3.1-1.js 24 ECMA Section: 15.3.3.1 Properties of the Function Constructor
25 Function.prototype
27 Description: The initial value of Function.prototype is the built-in
28 Function prototype object.
33 This test the value of Function.prototype.
42 var TITLE = "Function.prototype";
47 testcases[tc++] = new TestCase( SECTION, "Function.prototype == Function.proto", true, Function.__proto__ == Function.prototype )
    [all...]

Completed in 363 milliseconds

<<121122123124125126127128129130>>