Searched refs:func (Results 1 - 25 of 292) sorted by relevance

1234567891011>>

/openjdk9/nashorn/test/script/error/
H A Dstrictmode.js31 function func() {} function
34 delete func.length;
H A Dconditional_catch_nse.js32 func();
/openjdk9/nashorn/test/script/basic/
H A Dfinallyreturn.js31 function func(){ function
39 print(func());
H A DNASHORN-22.js32 function func() { function
33 print("func, first def");
36 func();
38 function func() {
39 print("func, second def");
42 func();
H A Dindexedcall.js25 * Convert func["name"]() to func.name() test
31 function func() { function
32 print("func");
35 this["func"]();
H A DNASHORN-176.js31 function func(str) {} function
33 func("first\
38 func(eval("\"first\\\nsecond\\\n\n\""));
H A DNASHORN-321.js31 function func() { function
32 print("func one");
35 function f() { func(); }
39 func = function() {
40 print("func two");
H A DJDK-8068985.js31 function func(arg) { function
36 func(undefined);
37 func(null);
38 func(34.23);
39 func("hello");
40 func(false);
43 func(this);
44 func({});
45 func({ toString: function() { return "foo" } });
48 func(ne
[all...]
H A DNASHORN-101.js31 function func(x) { function
50 func(0);
51 func(1);
52 func(2);
53 func("hello");
54 func(null);
55 func(undefined);
56 func(true);
57 func(false);
58 func({});
[all...]
H A DJDK-8030182.js31 function func() { function
35 var f2 = func;
36 var f3 = func;
37 var f4 = func;
38 var f5 = func;
43 func();
H A DNASHORN-23.js33 func();
42 var func = function() { function
46 func(); // should be able to invoke now..
H A DNASHORN-294.js31 function func(s) { function
35 if (func("hello") !== 'h') {
43 if (func("world") !== 'foo') {
H A DNASHORN-33.js31 function func(y) { function
41 print(typeof(func(1)));
42 print(typeof(func(0)));
H A DJDK-8025048-2.js31 function func(x) { function
H A DJDK-8025048.js31 function func(x) { function
H A DNASHORN-38.js31 function func(){ function
42 // calling the returned function from 'func'
43 func()();
H A Dglobalaccess.js34 func = function() {
38 func();
32 func = function() { class
H A DNASHORN-115.js31 function func() { function
35 func();
38 obj.func = func;
39 obj.func();
H A DJDK-8134731.js31 function func() { function
41 Assert.assertTrue(func()() == 0);
42 Assert.assertTrue(func()(33) == 1);
43 Assert.assertTrue(func()(33, true) == 2);
44 Assert.assertTrue(func()(33, true, "hello") == 3);
45 Assert.assertTrue(func()(33, true, "hello", "world") == 4);
46 Assert.assertTrue(func()(33, true, "hello", "world", 42) == 5);
H A Dapplycall.js32 function func(x, y) { print(x); print(y); } function
34 print(func.call);
35 print("func.call.length = " + func.call.length);
37 func.call(this, "hello, ", "world");
38 func.apply(this, [ "hello, " , "world" ]);
39 func("hello, ", "world");
46 func.apply(this, list);
48 print("func.apply.length = " + func
[all...]
/openjdk9/langtools/test/tools/javac/OverrideChecks/
H A DT8139255.java9 static void func() { } method in class:T8139255
13 static int func() { return 0; } method in class:T8139255_1
/openjdk9/langtools/test/tools/javac/diags/examples/
H A DHideStatic.java28 static void func() { } method in class:Base
32 static int func() { return 0; } method in class:HideStatic
/openjdk9/nashorn/test/script/basic/8024180/
H A Dglobal_var_delete.js34 function func() { function
40 func();
46 func();
/openjdk9/nashorn/test/script/nosecurity/parsernegativetests/
H A Dstrict_repeatparam.js31 function func(x, x) {} function
/openjdk9/hotspot/src/share/vm/runtime/
H A DorderAccess.cpp33 void (*func)() = CAST_TO_FN_PTR(void (*)(), StubRoutines::fence_entry());
35 if (func != NULL) {
36 (*func)();

Completed in 83 milliseconds

1234567891011>>