Searched refs:print (Results 1 - 25 of 3005) sorted by relevance

1234567891011>>

/openjdk10/jdk/test/javax/script/
H A DTest1.js0 print("Test1 passes");
/openjdk10/nashorn/test/script/error/
H A Dquotemissing.js28 print("hello);
/openjdk10/nashorn/test/script/basic/
H A DJDK-8047035.js31 // should not print ")" at the end
32 print(function() "hello");
33 print(function() '');
36 print((function() '')());
37 print((function() "hello")());
H A DNASHORN-74.js34 print("after for loop");
H A Dandor.js31 print("a" && "b");
32 print(false && "b");
33 print("a" || "b");
34 print(false || "b");
H A Dhello.js31 print("hello world");
H A DJDK-8006337.js31 (function() {})(print("hello"))
H A DNASHORN-423.js31 print(0);
32 print(1);
33 print(2);
34 print(3);
35 print(4);
36 print(5);
37 print(6);
38 print(7);
39 print(8);
40 print(
[all...]
H A Dvoid.js31 print(void 0);
32 print(void 0/0);
33 print(void 123);
34 print(void "string");
35 print(void null);
37 print(typeof(void 0));
38 print(3 == void 0);
40 print(x);
H A DNASHORN-55.js32 print("ERROR: new Boolean(false) should be true");
36 print("ERROR: new Boolean() should be true");
H A DJDK-8019488.js38 print("0"); break;
40 print("1"); break;
45 print("0"); break;
47 print("1"); break;
52 print("1");
57 print("0");
62 print("0");
67 print("1");
H A DNASHORN-64.js32 print("Error: 'abc' < 'abceasy' is false");
36 print("Error: 2 < 3 is false");
40 print("Error: 'abc' <= 'abceasy' is false");
44 print("Error: 2 <= 3 is false");
48 print("Error: 'abceasy' > 'abc' is false");
52 print("Error: 3 > 2 is false");
56 print("Error: 'abceasy' >= 'abc' is false");
60 print("Error: 3 >= 2 is false");
H A DNASHORN-66.js31 print("typeof Date() is " + typeof Date());
32 print("typeof new Date() is " + typeof new Date());
H A DNASHORN-126.js31 print(String(1000000000000000000000) === "1e+21");
32 print(String(0.000000000100000000000) === "1e-10");
H A Dtry2.js32 print("a");
34 print("b");
36 print("c");
38 print("d");
40 print("e");
42 print("f");
44 print("g");
49 print("done");
H A DNASHORN-29.js32 print('ERROR ("-1.234" >>> 0) === 4294967295. got ' + (("-1.234" >>> 0)));
34 print('yes ("-1.234" >>> 0) === 4294967295"');
39 print('ERROR x === 4294967295. got ' + (x));
41 print('yes x === 4294967295');
H A DNASHORN-69.js31 print(-1 >>> 0);
32 print(-2147483647 >>> 0);
33 print(-1.234 >>> 0);
34 print("-1.234" >>> 0);
35 print(-5.4321 >>> 0);
36 print(2147483648 >>> 0);
37 print(4294967295 >>> 0);
38 print(2147483648.1 >>> 0);
39 print(4294967295 >>> -32.1);
40 print(Numbe
[all...]
H A DJDK-8025163.js31 print(1 / (new Date(0, 0, 1)).getYear());
32 print(1 / (new Date(1969, 1, 2)).getDay());
33 print(1 / (new Date(1969, 0, 1)).getHours());
34 print(1 / (new Date(1969, 0, 1)).getHours());
35 print(1 / (new Date(1969, 0, 1)).getMinutes());
36 print(1 / (new Date(1969, 0, 1)).getSeconds());
37 print(1 / (new Date(1969, 0, 1)).getMilliseconds());
38 print(1 / (new Date(1969, 0, 1)).getMilliseconds());
H A DJDK-8047357.js31 print((function() { switch(0) { default: {var x; break ; } throw x; } })());
32 print((function() { switch(0) { default: {break;} return; } })());
H A DNASHORN-163.js31 print(Object.keys({0:'a'}));
32 print(Object.keys({0:'a',26:'z'}));
34 print(Object.keys(['a']));
35 print(Object.keys(['a','b',,,'z']));
37 print(Object.getOwnPropertyNames({0:'a'}));
38 print(Object.getOwnPropertyNames({0:'a',26:'z'}));
40 print(Object.getOwnPropertyNames(['a']));
41 print(Object.getOwnPropertyNames(['a','b',,,'z']));
/openjdk10/nashorn/docs/source/
H A Dtest.js32 print("This is hello from test.js");
/openjdk10/nashorn/test/script/nosecurity/parsertests/
H A Dblock.js31 { print("hello"); }
/openjdk10/nashorn/test/script/nosecurity/parsernegativetests/
H A Dcaseoutofswitch.js30 print("23");
32 print("hello");
/openjdk10/jdk/src/java.desktop/share/classes/javax/print/
H A Dpackage-info.java31 * <li>Discover and select print services based on their capabilities
32 * <li>Specify the format of print data
33 * <li>Submit print jobs to services that support the document type to be
39 * {@link javax.print.PrintServiceLookup PrintServiceLookup} to locate print
40 * services that have the capabilities to satisfy the application's print
41 * request. For example, to print a double-sided document, the application first
46 * IPP printers or JINI printers, a print-service provider can write
47 * implementations of {@code PrintServiceLookup}. The print-service provider can
52 * The {@link javax.print
[all...]
/openjdk10/nashorn/test/script/error/NASHORN-154/
H A Dwith_in_strict.js34 print(__FILE__ + " @" + __LINE__);
37 print("hello world");

Completed in 174 milliseconds

1234567891011>>