Searched defs:newArray (Results 1 - 6 of 6) sorted by relevance

/libcore/ojluni/src/main/java/java/beans/
H A DChangeListenerMap.java59 protected abstract L[] newArray(int length); method in class:ChangeListenerMap
86 L[] clone = newArray(size + 1);
110 L[] clone = newArray(size);
168 return newArray(0);
186 return list.toArray(newArray(list.size()));
202 return newArray(0);
H A DPropertyChangeSupport.java518 protected PropertyChangeListener[] newArray(int length) { method in class:PropertyChangeSupport.PropertyChangeListenerMap
/libcore/ojluni/src/main/java/java/util/stream/
H A DNode.java294 T_ARR newArray(int count); method in interface:Node.OfPrimitive
370 default int[] newArray(int count) { method in interface:Node.OfInt
443 default long[] newArray(int count) { method in interface:Node.OfLong
518 default double[] newArray(int count) { method in interface:Node.OfDouble
H A DSpinedBuffer.java455 curChunk = newArray(1 << initialChunkPower);
463 curChunk = newArray(1 << initialChunkPower);
476 public abstract T_ARR newArray(int size); method in class:SpinedBuffer.OfPrimitive
510 spine[i] = newArray(nextChunkSize);
562 T_ARR result = newArray((int) size);
752 public int[] newArray(int size) { method in class:SpinedBuffer.OfInt
866 public long[] newArray(int size) { method in class:SpinedBuffer.OfLong
982 public double[] newArray(int size) { method in class:SpinedBuffer.OfDouble
/libcore/ojluni/src/main/java/java/lang/reflect/
H A DArray.java78 return newArray(componentType, length);
762 // Android-added: Added javadocs for newArray(Class, int)
772 // Android-changed: Non-native implementation of newArray(Class, int)
773 private static Object newArray(Class<?> componentType, int length) method in class:Array
/libcore/luni/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp76 jstring* newArray = new jstring[newCapacity]; local
77 if (newArray == NULL) {
81 memcpy(newArray, array, capacity * sizeof(jstring));
84 array = newArray;

Completed in 58 milliseconds