Searched refs:l2 (Results 1 - 25 of 77) sorted by relevance

1234

/openjdk7/langtools/test/tools/javac/diags/examples/
H A DUncheckedAssign.java31 void m(List l1, List<String> l2) { argument
32 l2 = l1;
H A DWhereCaptured.java37 <T> void m(List<T> l1, List<T> l2) {} argument
H A DWhereCaptured1.java38 <T> void m(List<T> l1, List<T> l2) {} argument
/openjdk7/jdk/test/java/util/LinkedList/
H A DAddAll.java37 List l2 = new LinkedList(head);
39 l2.addAll(tail);
40 if (!l1.equals(l2))
/openjdk7/langtools/test/tools/javac/warnings/
H A DT6763518.java37 void m(@SuppressWarnings("rawtypes") List l2) { argument
H A DDivZero.java30 public static final long l2 = 1L / 0L; field in class:DivZero
81 public static final long l2 = 1L / 0L; field in class:DivZero2
125 public static final long l2 = 1L / 0L; field in class:DivZero3
/openjdk7/jaxp/src/org/xml/sax/ext/
H A DLocator2Impl.java76 Locator2 l2 = (Locator2) locator;
78 version = l2.getXMLVersion ();
79 encoding = l2.getEncoding ();
/openjdk7/jdk/test/java/util/Collections/
H A DSwap.java42 List l2 = new ArrayList(Collections.nCopies(100, Boolean.FALSE));
43 l2.set(SIZE-1, Boolean.TRUE);
44 if (!l.equals(l2))
/openjdk7/langtools/test/tools/javac/Diagnostics/6722234/
H A DT6722234b.java13 <T> void m(List<T> l1, List<T> l2) {} argument
/openjdk7/hotspot/test/compiler/6769124/
H A DTestUnalignedLoad6769124.java41 long l2 = l2v;
53 if (l2 != l2v) {
54 System.out.println(l2 + " != " + l2v);
/openjdk7/jdk/test/javax/naming/ldap/LdapName/
H A DCompareToEqualsTests.java78 LdapName l2 = new LdapName(rdns2);
79 checkResults(l1, l2, 0);
81 l2 = new LdapName("binary=#61626378797A");
82 checkResults(l1, l2, 0);
84 l2 = new LdapName("binary=#61626378797B");
85 checkResults(l1, l2, -1);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DOrSelector.java46 List<Figure> l2 = selector2.selected(d);
48 for (Figure f : l2) {
H A DAndSelector.java45 List<Figure> l2 = selector2.selected(d);
47 for (Figure f : l2) {
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DCommandAPDU.java314 int l2 = apdu[apdu.length - 1] & 0xff;
315 this.ne = (l2 == 0) ? 256 : l2;
326 int l2 = ((apdu[5] & 0xff) << 8) | (apdu[6] & 0xff);
329 this.ne = (l2 == 0) ? 65536 : l2;
332 if (l2 == 0) {
334 + apdu.length + ", b1=" + l1 + ", b2||b3=" + l2);
336 if (apdu.length == 4 + 3 + l2) {
338 this.nc = l2;
[all...]
/openjdk7/jdk/test/javax/swing/JLayer/6872503/
H A Dbug6872503.java38 static JLayer<Component> l2; field in class:bug6872503
47 l2 = new JLayer<Component>();
48 l2.setLayerEventMask(AWTEvent.MOUSE_EVENT_MASK | AWTEvent.KEY_EVENT_MASK);
57 frame.add(l2);
69 if (!layerEventControllerMaskEquals(l1.getLayerEventMask() | l2.getLayerEventMask())) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DCompactSyntaxTokenManager.java1068 long l2 = 1L << (curChar & 077);
1074 if (jjCanMove_0(hiByte, i1, i2, l1, l2))
1079 if (jjCanMove_1(hiByte, i1, i2, l1, l2))
1087 if (jjCanMove_2(hiByte, i1, i2, l1, l2))
1093 if (jjCanMove_2(hiByte, i1, i2, l1, l2))
1095 if (jjCanMove_2(hiByte, i1, i2, l1, l2))
1099 if (!jjCanMove_0(hiByte, i1, i2, l1, l2))
1106 if (!jjCanMove_0(hiByte, i1, i2, l1, l2))
1113 if (!jjCanMove_1(hiByte, i1, i2, l1, l2))
1120 if (!jjCanMove_2(hiByte, i1, i2, l1, l2))
1499 jjCanMove_0(int hiByte, int i1, int i2, long l1, long l2) argument
1511 jjCanMove_1(int hiByte, int i1, int i2, long l1, long l2) argument
1567 jjCanMove_2(int hiByte, int i1, int i2, long l1, long l2) argument
[all...]
/openjdk7/jdk/test/java/util/concurrent/CopyOnWriteArraySet/
H A DRacingCows.java60 final List<Integer> l2 = new CopyOnWriteArrayList<Integer>();
67 case 0: l2.add(two); break;
68 case 1: l2.add(0, two); break;
71 case 0: l2.remove(two); break;
72 case 1: l2.remove(0); break;
73 case 2: l2.clear(); break;
91 check(! l1.equals(l2));
92 check(! l2.equals(l1));
95 try { new CopyOnWriteArrayList<Integer>(l2); }
/openjdk7/langtools/test/tools/javac/generics/inference/6369605/
H A DT6369605a.java47 List<?> l2 = m2(); field in class:T6369605a
H A DT6369605b.java47 List<?> l2 = m2(); field in class:T6369605b
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DSCDParserTokenManager.java2106 long l2 = 1L << (curChar & 077);
2113 if (!jjCanMove_1(hiByte, i1, i2, l1, l2))
2120 if (!jjCanMove_1(hiByte, i1, i2, l1, l2))
2127 if (!jjCanMove_1(hiByte, i1, i2, l1, l2))
2134 if (!jjCanMove_1(hiByte, i1, i2, l1, l2))
2141 if (!jjCanMove_1(hiByte, i1, i2, l1, l2))
2148 if (!jjCanMove_1(hiByte, i1, i2, l1, l2))
2155 if (!jjCanMove_0(hiByte, i1, i2, l1, l2))
2162 if (!jjCanMove_1(hiByte, i1, i2, l1, l2))
2169 if (!jjCanMove_1(hiByte, i1, i2, l1, l2))
2195 jjCanMove_0(int hiByte, int i1, int i2, long l1, long l2) argument
2251 jjCanMove_1(int hiByte, int i1, int i2, long l1, long l2) argument
[all...]
/openjdk7/jdk/test/java/lang/reflect/Proxy/
H A DBasic1.java87 List l2 = Arrays.asList(proxyClass.getInterfaces());
88 System.err.println("+ proxy class's interfaces: " + l2);
89 if (!l1.equals(l2)) {
91 "proxy class interfaces are " + l2 +
/openjdk7/langtools/test/tools/javadoc/6964914/
H A DTestStdDoclet.java94 private void checkEqual(String l1, int i1, String l2, int i2) throws Exception { argument
97 + l2 + " warn count, " + i2);
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dbytes.cpp94 size_t l2 = other.len; local
95 int cmp = memcmp(ptr, other.ptr, (l1 < l2) ? l1 : l2);
97 return (l1 < l2) ? -1 : (l1 > l2) ? 1 : 0;
/openjdk7/jdk/test/demo/jvmti/hprof/
H A DUseAllBytecodes.java44 public long l1, l2; field in class:UseAllBytecodes
151 l2 = p2;
152 return l2 + 1;
/openjdk7/langtools/test/tools/javac/api/6406133/
H A DT6406133.java101 for (Locale l2 : locales) {
102 compare(l1, l2, true);
103 compare(l1, l2, false);

Completed in 111 milliseconds

1234