Searched refs:l1 (Results 1 - 25 of 81) 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/hotspot/test/compiler/7160610/
H A DTest7160610.java52 int l1 = k1 - -(j1 << 0x26cb6487);
53 anIntArray1191[l1] = (anIntArray1190[l1 + -BYTE_ARRAY[0]] - -anIntArray1190[l1 - -BYTE_ARRAY[0]] - -anIntArray1190[-128 + l1] - -anIntArray1190[128 + l1]) / BYTE_ARRAY[6];
/openjdk7/jdk/test/java/util/LinkedList/
H A DAddAll.java36 List l1 = new ArrayList(head);
38 l1.addAll(tail);
40 if (!l1.equals(l2))
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DOrSelector.java45 List<Figure> l1 = selector1.selected(d);
49 if (!l1.contains(f)) {
50 l1.add(f);
54 return l1;
H A DAndSelector.java44 List<Figure> l1 = selector1.selected(d);
48 if (l1.contains(f)) {
/openjdk7/langtools/test/tools/javac/warnings/
H A DT6763518.java35 List l1; field in class:T6763518
/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.java39 long l1 = l1v;
49 if (l1 != l1v) {
50 System.out.println(l1 + " != " + l1v);
/openjdk7/jdk/test/sun/net/www/protocol/jar/
H A DB4756443.java57 long l1 = con1.getLastModified ();
59 if (l != l1) {
60 throw new RuntimeException ("l != l1 ("+l+"/"+l1+")");
/openjdk7/jdk/test/com/sun/jdi/
H A DMonitorFrameInfo.java50 Object l1 = new Object();
51 synchronized(l1) {
52 System.out.println("executing foo2 " + l1);
61 Object l1 = new Object();
62 synchronized(l1) {
63 System.out.println("executing main" + l1);
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DCommandAPDU.java298 int l1 = apdu[4] & 0xff;
301 this.ne = (l1 == 0) ? 256 : l1;
304 if (l1 != 0) {
305 if (apdu.length == 4 + 1 + l1) {
307 this.nc = l1;
310 } else if (apdu.length == 4 + 2 + l1) {
312 this.nc = l1;
319 ("Invalid APDU: length=" + apdu.length + ", b1=" + l1);
324 ("Invalid APDU: length=" + apdu.length + ", b1=" + l1);
[all...]
/openjdk7/jdk/test/javax/swing/JLayer/6872503/
H A Dbug6872503.java37 static JLayer<Component> l1; field in class:bug6872503
44 l1 = new JLayer<Component>();
45 l1.setLayerEventMask(AWTEvent.MOUSE_EVENT_MASK | AWTEvent.FOCUS_EVENT_MASK);
56 frame.add(l1);
69 if (!layerEventControllerMaskEquals(l1.getLayerEventMask() | l2.getLayerEventMask())) {
/openjdk7/langtools/test/tools/javac/generics/
H A DCasting.java43 List<Test> l1 = null;
44 List<Test> l2 = (List<Test>)l1;
/openjdk7/jdk/test/javax/naming/ldap/LdapName/
H A DCompareToEqualsTests.java73 LdapName l1 = new LdapName(rdns1);
79 checkResults(l1, l2, 0);
82 checkResults(l1, l2, 0);
85 checkResults(l1, l2, -1);
/openjdk7/langtools/test/tools/javac/generics/inference/6369605/
H A DT6369605a.java46 List<?> l1 = m1(); field in class:T6369605a
H A DT6369605b.java46 List<?> l1 = m1(); field in class:T6369605b
/openjdk7/langtools/test/tools/javadoc/6964914/
H A DTestStdDoclet.java94 private void checkEqual(String l1, int i1, String l2, int i2) throws Exception { argument
96 throw new Exception(l1 + " warn count, " + i1 + ", does not match "
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dbytes.cpp93 size_t l1 = len; local
95 int cmp = memcmp(ptr, other.ptr, (l1 < l2) ? l1 : l2);
97 return (l1 < l2) ? -1 : (l1 > l2) ? 1 : 0;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DQualifiedName.java152 final int l1 = prefix.length();
154 final int total = l1 + l2 + 1;
156 prefix.getChars(0, l1, charBuffer, 0);
157 charBuffer[l1] = ':';
158 localName.getChars(0, l2, charBuffer, l1 + 1);
181 final int l1 = prefix.length();
183 final int total = l1 + l2 + 1;
185 prefix.getChars(0, l1, charBuffer, 0);
186 charBuffer[l1] = ':';
187 localName.getChars(0, l2, charBuffer, l1
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DConditionalExpression.java194 Label l1 = new Label();
197 cond.codeBranch(env, ctx, asm, l1, false);
200 asm.add(l1);
205 Label l1 = new Label();
206 cond.codeBranch(env, ctx, asm, l1, false);
211 asm.add(l1);
215 asm.add(l1);
H A DDoStatement.java111 Label l1 = new Label();
112 asm.add(l1);
120 cond.codeBranch(env, newctx, asm, l1, true);
/openjdk7/jdk/test/demo/jvmti/hprof/
H A DUseAllBytecodes.java44 public long l1, l2; field in class:UseAllBytecodes
145 l1 = p1;
146 return l1 + 1;
/openjdk7/jdk/test/java/lang/reflect/Proxy/
H A DBasic1.java86 List l1 = Arrays.asList(interfaces);
89 if (!l1.equals(l2)) {
92 " (expected " + l1 + ")");

Completed in 2116 milliseconds

1234