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.java1412 Object[] objs = (Object[]) array;
1413 int len = objs.length;
1427 writeObject0(objs[i], false);
2340 private Object[] objs; field in class:ObjectOutputStream.HandleTable
2349 objs = new Object[initialCapacity];
2379 if (objs[i] == obj) {
2391 Arrays.fill(objs, 0, size, null);
2408 objs[handle] = obj;
2422 insert(objs[i], i);
2436 System.arraycopy(objs,
[all...]

Completed in 51 milliseconds