/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CopyOnWriteArrayList.java | 105 final Object[] getArray() { in getArray() method in CopyOnWriteArrayList 134 elements = ((CopyOnWriteArrayList<?>)c).getArray(); in CopyOnWriteArrayList() 162 return getArray().length; in size() 226 Object[] elements = getArray(); in contains() 234 Object[] elements = getArray(); in indexOf() 254 Object[] elements = getArray(); in indexOf() 262 Object[] elements = getArray(); in lastIndexOf() 283 Object[] elements = getArray(); in lastIndexOf() 320 Object[] elements = getArray(); in toArray() 364 Object[] elements = getArray(); in toArray() [all …]
|
D | CopyOnWriteArraySet.java | 278 ? compareSets(al.getArray(), (Set<?>) c) >= 0 in containsAll() 412 && compareSets(al.getArray(), (Set<?>) o) == 0); in equals() 440 (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
|
/libcore/luni/src/main/java/java/nio/charset/ |
D | CharsetDecoderICU.java | 114 data[OUTPUT_OFFSET] = getArray(out); in implFlush() 139 data[INPUT_OFFSET] = getArray(in); in decodeLoop() 140 data[OUTPUT_OFFSET]= getArray(out); in decodeLoop() 164 private int getArray(CharBuffer out) { in getArray() method in CharsetDecoderICU 180 private int getArray(ByteBuffer in) { in getArray() method in CharsetDecoderICU
|
D | CharsetEncoderICU.java | 142 data[OUTPUT_OFFSET] = getArray(out); in implFlush() 167 data[INPUT_OFFSET] = getArray(in); in encodeLoop() 168 data[OUTPUT_OFFSET]= getArray(out); in encodeLoop() 192 private int getArray(ByteBuffer out) { in getArray() method in CharsetEncoderICU 208 private int getArray(CharBuffer in) { in getArray() method in CharsetEncoderICU
|
/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/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
|