/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CopyOnWriteArrayList.java | 117 final Object[] getArray() { in getArray() method in CopyOnWriteArrayList 146 es = ((CopyOnWriteArrayList<?>)c).getArray(); in CopyOnWriteArrayList() 175 return getArray().length; in size() 246 Object[] es = getArray(); in indexOf() 266 Object[] es = getArray(); in indexOf() 274 Object[] es = getArray(); in lastIndexOf() 295 Object[] es = getArray(); in lastIndexOf() 335 return getArray().clone(); in toArray() 378 Object[] es = getArray(); in toArray() 407 return elementAt(getArray(), index); in get() [all …]
|
D | CopyOnWriteArraySet.java | 277 ? compareSets(al.getArray(), (Set<?>) c) >= 0 in containsAll() 411 && compareSets(al.getArray(), (Set<?>) o) == 0); in equals() 445 (al.getArray(), Spliterator.IMMUTABLE | Spliterator.DISTINCT); in spliterator()
|
/libcore/ojluni/src/main/java/java/sql/ |
D | Array.java | 128 Object getArray() throws SQLException; in getArray() method 156 Object getArray(java.util.Map<String,Class<?>> map) throws SQLException; in getArray() method 181 Object getArray(long index, int count) throws SQLException; in getArray() method 219 Object getArray(long index, int count, java.util.Map<String,Class<?>> map) in getArray() method
|
D | CallableStatement.java | 499 Array getArray (int parameterIndex) throws SQLException; in getArray() method 1667 Array getArray (String parameterName) throws SQLException; in getArray() method
|
D | ResultSet.java | 2530 Array getArray(int columnIndex) throws SQLException; in getArray() method 2622 Array getArray(String columnLabel) throws SQLException; in getArray() method
|
/libcore/luni/src/main/java/libcore/reflect/ |
D | ListOfVariables.java | 29 TypeVariable<?>[] getArray() { in getArray() method in ListOfVariables
|
D | GenericSignatureParser.java | 257 this.formalTypeParameters = typeParams.getArray(); in parseOptFormalTypeParameters()
|
/libcore/ojluni/src/main/java/java/nio/ |
D | FloatBuffer.java | 821 getArray(pos, dst, offset, length); in get() 898 getArray(index, dst, offset, length); in get() 934 private FloatBuffer getArray(int index, float[] dst, int offset, int length) { in getArray() method in FloatBuffer
|
D | LongBuffer.java | 821 getArray(pos, dst, offset, length); in get() 898 getArray(index, dst, offset, length); in get() 934 private LongBuffer getArray(int index, long[] dst, int offset, int length) { in getArray() method in LongBuffer
|
D | IntBuffer.java | 821 getArray(pos, dst, offset, length); in get() 898 getArray(index, dst, offset, length); in get() 934 private IntBuffer getArray(int index, int[] dst, int offset, int length) { in getArray() method in IntBuffer
|
D | ShortBuffer.java | 821 getArray(pos, dst, offset, length); in get() 898 getArray(index, dst, offset, length); in get() 934 private ShortBuffer getArray(int index, short[] dst, int offset, int length) { in getArray() method in ShortBuffer
|
D | DoubleBuffer.java | 821 getArray(pos, dst, offset, length); in get() 898 getArray(index, dst, offset, length); in get() 934 private DoubleBuffer getArray(int index, double[] dst, int offset, int length) { in getArray() method in DoubleBuffer
|
D | ByteBuffer.java | 821 getArray(pos, dst, offset, length); in get() 898 getArray(index, dst, offset, length); in get() 934 private ByteBuffer getArray(int index, byte[] dst, int offset, int length) { in getArray() method in ByteBuffer
|
D | CharBuffer.java | 821 getArray(pos, dst, offset, length); in get() 898 getArray(index, dst, offset, length); in get() 934 private CharBuffer getArray(int index, char[] dst, int offset, int length) { in getArray() method in CharBuffer
|
D | X-Buffer.java.template | 821 getArray(pos, dst, offset, length); 898 getArray(index, dst, offset, length); 934 private $Type$Buffer getArray(int index, $type$[] dst, int offset, int length) {
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/ |
D | CopyOnWriteArrayList.java | 58 final java.lang.Object[] getArray() { in getArray() method in CopyOnWriteArrayList
|
/libcore/luni/src/test/java/libcore/java/sql/ |
D | OldPreparedStatementTest.java | 2279 public Object getArray() throws SQLException { in getArray() method in OldPreparedStatementTest.MockArray 2283 public Object getArray(long index, int count) throws SQLException { in getArray() method in OldPreparedStatementTest.MockArray 2287 public Object getArray(long index, int count, Map<String, Class<?>> map) in getArray() method in OldPreparedStatementTest.MockArray 2292 public Object getArray(Map<String, Class<?>> map) throws SQLException { in getArray() method in OldPreparedStatementTest.MockArray
|
/libcore/api/ |
D | current.txt | 9618 method public Object getArray() throws java.sql.SQLException; 9619 …method public Object getArray(java.util.Map<java.lang.String,java.lang.Class<?>>) throws java.sql.… 9620 method public Object getArray(long, int) throws java.sql.SQLException; 9621 …method public Object getArray(long, int, java.util.Map<java.lang.String,java.lang.Class<?>>) throw… 9659 method public java.sql.Array getArray(int) throws java.sql.SQLException; 9660 method public java.sql.Array getArray(String) throws java.sql.SQLException; 10234 method public java.sql.Array getArray(int) throws java.sql.SQLException; 10235 method public java.sql.Array getArray(String) throws java.sql.SQLException;
|