Searched defs:objs (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/pkcs/
H A DPKCS9Attributes.java356 static DerEncoder[] castToDerEncoder(Object[] objs) { argument
358 DerEncoder[] encoders = new DerEncoder[objs.length];
361 encoders[i] = (DerEncoder) objs[i];
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
H A DObjectInputStreamTest.java1362 private ObjectStreamClass[] objs; field in class:ObjectInputStreamTest.TestObjectOutputStream
1365 public TestObjectOutputStream(OutputStream out, ObjectStreamClass[] objs) throws IOException { argument
1367 this.objs = objs;
1372 objs[pos++] = osc;
1377 private ObjectStreamClass[] objs; field in class:ObjectInputStreamTest.TestObjectInputStream
1380 public TestObjectInputStream(InputStream in, ObjectStreamClass[] objs) throws IOException { argument
1382 this.objs = objs;
1387 return objs[po
[all...]
/libcore/ojluni/src/main/java/java/io/
H A DObjectOutputStream.java1403 Object[] objs = (Object[]) array;
1404 int len = objs.length;
1418 writeObject0(objs[i], false);
2327 private Object[] objs; field in class:ObjectOutputStream.HandleTable
2336 objs = new Object[initialCapacity];
2366 if (objs[i] == obj) {
2378 Arrays.fill(objs, 0, size, null);
2395 objs[handle] = obj;
2409 insert(objs[i], i);
2423 System.arraycopy(objs,
[all...]

Completed in 180 milliseconds