Home
last modified time | relevance | path

Searched refs:growSize (Results 1 – 9 of 9) sorted by relevance

/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/content/res/
DGrowingArrayUtils.java45 growSize(currentSize)); in append()
60 int[] newArray = new int[growSize(currentSize)]; in append()
75 long[] newArray = new long[growSize(currentSize)]; in append()
90 boolean[] newArray = new boolean[growSize(currentSize)]; in append()
119 growSize(currentSize)); in insert()
138 int[] newArray = new int[growSize(currentSize)]; in insert()
157 long[] newArray = new long[growSize(currentSize)]; in insert()
176 boolean[] newArray = new boolean[growSize(currentSize)]; in insert()
188 public static int growSize(int currentSize) { in growSize() method in GrowingArrayUtils
/frameworks/base/core/java/com/android/internal/util/
DGrowingArrayUtils.java46 (Class<T>) array.getClass().getComponentType(), growSize(currentSize)); in append()
61 int[] newArray = ArrayUtils.newUnpaddedIntArray(growSize(currentSize)); in append()
76 long[] newArray = ArrayUtils.newUnpaddedLongArray(growSize(currentSize)); in append()
91 boolean[] newArray = ArrayUtils.newUnpaddedBooleanArray(growSize(currentSize)); in append()
106 float[] newArray = ArrayUtils.newUnpaddedFloatArray(growSize(currentSize)); in append()
136 growSize(currentSize)); in insert()
155 int[] newArray = ArrayUtils.newUnpaddedIntArray(growSize(currentSize)); in insert()
174 long[] newArray = ArrayUtils.newUnpaddedLongArray(growSize(currentSize)); in insert()
193 boolean[] newArray = ArrayUtils.newUnpaddedBooleanArray(growSize(currentSize)); in insert()
205 public static int growSize(int currentSize) { in growSize() method in GrowingArrayUtils
/frameworks/rs/
DrsStream.h90 growSize(); in align()
101 growSize(); in addI32()
111 growSize(); in addU32()
121 growSize(); in addU16()
128 growSize(); in addU8()
150 void growSize();
DrsStream.cpp68 growSize(); in addByteArray()
78 growSize(); in addOffset()
96 growSize(); in addString()
107 void OStream::growSize() { in growSize() function in android::renderscript::OStream
/frameworks/base/core/java/android/text/
DPackedObjectVector.java115 GrowingArrayUtils.growSize(size()) * mColumns); in growBuffer()
DPackedIntVector.java261 GrowingArrayUtils.growSize(size()) * columns); in growBuffer()
DSpannableStringBuilder.java63 mText = ArrayUtils.newUnpaddedCharArray(GrowingArrayUtils.growSize(srclen)); in SpannableStringBuilder()
145 char[] newText = ArrayUtils.newUnpaddedCharArray(GrowingArrayUtils.growSize(size)); in resizeFor()
1053 return ArrayUtils.newUnpaddedIntArray(GrowingArrayUtils.growSize(size)); in checkSortBuffer()
DStaticLayout.java927 final int[] grow = ArrayUtils.newUnpaddedIntArray(GrowingArrayUtils.growSize(want));
935 GrowingArrayUtils.growSize(j));
DSpannableStringInternal.java231 GrowingArrayUtils.growSize(mSpanCount)); in setSpan()