Searched defs:la (Results 1 - 11 of 11) sorted by relevance

/openjdk7/langtools/test/tools/javac/generics/inference/6356673/
H A DT6365166.java36 static <A> void add(List<? super A> l, List<A> la) { argument
37 l.addAll(la); //doesn't compile - but it should
/openjdk7/jdk/test/sun/security/util/BitArray/
H A DNamedBitList.java101 static void check(int la, int lb) throws Exception { argument
102 if (la != lb) {
103 System.err.println("Length is " + la + ", should be " + lb);
/openjdk7/langtools/test/tools/javac/generics/inference/6938454/
H A DT6938454b.java46 List<B> test(List<A> la) { argument
47 return m(la, new C());
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DTCUtility.java191 static void unmarshalIn(org.omg.CORBA.portable.InputStream s, TypeCode typeCode, long[] la, Object[] oa) argument
326 la[0] = l;
/openjdk7/hotspot/test/compiler/6378821/
H A DTest6378821.java34 static final long[] la = new long[] { 0x12345678abcdefL }; field in class:Test6378821
42 sub(la[0]);
44 sub(la);
62 static void sub(long[] la) { check(la[0], fint(la), fcomp(la)); } argument
73 static int fint (long[] la) { return Long.bitCount(la[0]); } argument
74 static int fcomp(long[] la) { retur argument
[all...]
/openjdk7/hotspot/test/compiler/6797305/
H A DTest6797305.java36 static final long[] la = new long[] { -1 }; field in class:Test6797305
92 long l = loadL(la);
113 static long loadL (long[] la) { return la[0]; } argument
/openjdk7/hotspot/test/compiler/6823354/
H A DTest6823354.java37 static final long[] la = new long[] { 0L, 1L, -1L, Long.MIN_VALUE, Long.MAX_VALUE }; field in class:Test6823354
83 long x = la[i];
96 for (int i = 0; i < la.length; i++) {
97 testclass(classname, la[i]);
139 for (int i = 0; i < la.length; i++) {
140 long x = la[i];
153 for (int i = 0; i < la.length; i++) {
154 testclass(classname, la[i]);
/openjdk7/jdk/make/tools/src/build/tools/generatecurrencydata/
H A DGenerateCurrencyData.java369 private static void writeLongArray(long[] la, int count) throws IOException { argument
371 out.writeLong(la[i]);
/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DTestN1.java62 public long[] la; field in class:N1.Inner2
187 in1.getField("la").getGenericType() == long[].class :
188 "Type of Inner2.la should be long[]";
/openjdk7/langtools/test/tools/javah/6572945/
H A DTestClass1.java53 long[] la; field in class:TestClass1
226 long[] la; field in class:TestClass1.Inner1
364 long[] la; field in class:TestClass1.Inner2
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapClient.java632 Attribute la; // Attribute read from response
660 la = parseAttribute(replyBer, binaryAttrs);
661 lattrs.put(la);
718 Attribute la = new LdapAttribute(attrid);
724 attrlen -= parseAttributeValue(ber, la, hasBinaryValues);
734 return la;
740 private int parseAttributeValue(BerDecoder ber, Attribute la, argument
746 la.add(ber.parseOctetString(ber.peekByte(), len));
748 la.add(ber.parseStringWithTag(Ber.ASN_SIMPLE_STRING, isLdapv3, len));

Completed in 116 milliseconds