Searched refs:s2 (Results 1 - 25 of 463) sorted by relevance

1234567891011>>

/openjdk9/jdk/test/java/util/ServiceLoader/modules/s2/
H A Dmodule-info.java23 module s2 {
/openjdk9/langtools/test/tools/javac/Diagnostics/6722234/
H A DT6722234c.java11 <T> void m(String s2) {} argument
/openjdk9/langtools/test/tools/javac/lambda/
H A DLocalBreakAndContinue.java40 SAM s2 = ()-> { while (true) continue; }; field in class:LocalBreakAndContinue
H A DLambdaConv27.java33 SAM s = ()-> { SAM s2 = ()->{ new Object() { }; }; s2.m(); };
H A DBadBreakContinue.java17 SAM s2 = ()-> { continue; }; field in class:BadBreakContinue
26 SAM s2 = ()-> { continue loop; };
37 SAM s2 = ()-> { continue; };
H A DLambdaExpr05.java38 SAM s2 = i -> 2 * i; field in class:LambdaExpr05
H A DNakedThis.java41 SAM s2 = (int x) -> NakedThis.this; field in class:NakedThis
H A DLambdaExprNotVoid.java15 SAM s2 = i -> 2 * i; field in class:LambdaExpr05
/openjdk9/hotspot/test/serviceability/tmtools/jstack/utils/
H A DUtils.java31 public static boolean compareStrings(String s1, String s2) { argument
34 || s2 != null && s2.equals(Consts.UNKNOWN)) {
38 if (s1 == null && s2 != null || s1 != null && s2 == null) {
42 if (s1 == null || s2 == null) {
45 return s1.equals(s2);
/openjdk9/jdk/test/java/lang/String/
H A DRegionMatches.java35 String s2="def";
37 if (!s1.regionMatches(0,s2,0,Integer.MIN_VALUE))
/openjdk9/jdk/test/com/sun/jdi/
H A DNativeInstanceFilterTarg.java28 String s2 = "def";
31 s2.intern(); // this is the call that generates events that ought
/openjdk9/jdk/test/java/util/ServiceLoader/modules/p2/
H A Dmodule-info.java24 requires s2;
/openjdk9/langtools/test/tools/javac/lambda/lambdaExpression/
H A DEffectivelyFinal_neg.java13 String s2 = "a";
17 s2 = "b"; //re-assign illegal here
/openjdk9/jdk/test/java/net/MulticastSocket/
H A DReuse.java29 MulticastSocket s1, s2;
33 s2 = new MulticastSocket(4160);
35 s2.close();
/openjdk9/jdk/test/java/lang/String/concat/
H A DImplicitStringConcatArgCount.java97 static String s2 = "o"; field in class:ImplicitStringConcatArgCount
102 test("foo", s + s1 + s2);
103 test("foo7", s + s1 + s2 + i);
104 test("foo77", s + s1 + s2 + i + i);
105 test("foo777", s + s1 + s2 + i + i + i);
106 test("foo7777", s + s1 + s2 + i + i + i + i);
107 test("foo77777", s + s1 + s2 + i + i + i + i + i);
108 test("foo777777", s + s1 + s2 + i + i + i + i + i + i);
109 test("foo7777777", s + s1 + s2 + i + i + i + i + i + i + i);
110 test("foo77777777", s + s1 + s2
[all...]
/openjdk9/jdk/src/java.logging/share/classes/sun/net/www/protocol/http/logging/
H A DHttpLogFormatter.java83 String s2 = s.substring(8);
84 int c = s2.indexOf("Cookie2=[");
86 s2 = s2.substring(0, c-1);
87 s = s2.substring(c);
91 if (s2.length() < 4) {
94 Matcher m = cpattern.matcher(s2);
99 String cookie = s2.substring(i + 1, j > 0 ? j - 1 : s2.length() - 1);
105 String s2
[all...]
/openjdk9/jdk/test/java/net/ipv6tests/
H A DUdpTest.java34 static DatagramSocket c3, s1, s2, s3; field in class:UdpTest
83 s2 = new DatagramSocket ();
84 simpleDataExchange (s1, ia4addr, s2, ia4addr);
85 s1.close (); s2.close ();
89 s2 = new DatagramSocket ();
90 simpleDataExchange (s1, ia6addr, s2, ia6addr);
91 s1.close (); s2.close ();
95 s2 = new DatagramSocket (0, ia6addr);
96 simpleDataExchange (s1, ia6addr, s2, ia6addr);
97 s1.close (); s2
[all...]
/openjdk9/nashorn/test/script/basic/es6/
H A Dcomputed-property-getter.js39 var s2 = Symbol(); variable
50 get [f(s2)]() { return s2 }
62 Assert.assertEquals(object[s2], s2);
64 for (var s of ['a', 'b', 'c', 'd', 1, 2, 3, s1, s2]) {
H A Dcomputed-property.js39 var s2 = Symbol(); variable
50 [f(s2)]: s2
62 Assert.assertEquals(object[s2], s2);
64 for (var s of ['a', 'b', 'c', 'd', 1, 2, 3, s1, s2]) {
H A Dcomputed-property-method.js39 var s2 = Symbol(); variable
50 [f(s2)]() { return s2 }
62 Assert.assertEquals(object[s2](), s2);
64 for (var s of ['a', 'b', 'c', 'd', 1, 2, 3, s1, s2]) {
/openjdk9/jdk/src/java.base/share/native/libjimage/
H A Dinttypes.hpp38 typedef short s2; typedef
/openjdk9/nashorn/test/src/jdk/nashorn/test/models/
H A DOverloadedSam.java31 public void sam(String s1, String s2); argument
/openjdk9/jdk/test/java/net/Socket/
H A DShutdownInput.java48 Socket s2 = ss.accept() ) {
50 test(s1, s2, "Testing NET");
57 SocketChannel s2 = sc.accept() ) {
59 test(s1.socket(), s2.socket(), "Testing NIO");
67 public static void test(Socket s1, Socket s2, String mesg) throws Exception { argument
71 InputStream in = s2.getInputStream();
72 s2.shutdownInput();
76 System.out.println(mesg + ":" + s2 + " in.available() should be 0, " +
86 System.out.append(mesg + ":" + s2 + " in.read() should be -1");
/openjdk9/jdk/test/java/io/FilePermission/
H A DCorrectness.java137 // Checks if s2 is inside s1 and depth is expected.
138 static void contains(String s1, String s2, int expected) throws Exception { argument
139 contains0(s1, s2, expected);
141 contains0("C:" + s1, s2, -1);
142 contains0(s1, "C:" + s2, -1);
143 contains0("C:" + s1, "D:" + s2, -1);
144 contains0("C:" + s1, "C:" + s2, expected);
148 static void contains0(String s1, String s2, int expected) throws Exception { argument
150 Path p2 = Paths.get(s2);
158 System.out.printf("%-20s -> %-20s: %20s %5d %5d %s\n", s1, s2,
165 check0(String s1, String s2, boolean expected) argument
178 check(String s1, String s2, boolean expected) argument
188 check(String s1, String s2) argument
192 checkNo(String s1, String s2) argument
[all...]
/openjdk9/jdk/src/java.instrument/share/native/libinstrument/
H A DFileSystemSupport.h37 int filenameStrcmp(const char* s1, const char* s2);

Completed in 307 milliseconds

1234567891011>>