Searched refs:minCapacity (Results 1 - 5 of 5) sorted by relevance

/frameworks/support/v4/java/android/support/v4/util/
H A DCircularIntArray.java52 * Create a CircularIntArray with capacity for at least minCapacity elements.
54 * @param minCapacity The minimum capacity required for the CircularIntArray.
56 public CircularIntArray(int minCapacity) { argument
57 if (minCapacity <= 0) {
60 int arrayCapacity = minCapacity;
61 // If minCapacity isn't a power of 2, round up to the next highest power
63 if (Integer.bitCount(minCapacity) != 1) {
64 arrayCapacity = 1 << (Integer.highestOneBit(minCapacity) + 1);
H A DCircularArray.java51 * Create a CircularArray with capacity for at least minCapacity elements.
53 * @param minCapacity The minimum capacity required for the CircularArray.
55 public CircularArray(int minCapacity) { argument
56 if (minCapacity <= 0) {
59 int arrayCapacity = minCapacity;
60 // If minCapacity isn't a power of 2, round up to the next highest power
62 if (Integer.bitCount(minCapacity) != 1) {
63 arrayCapacity = 1 << (Integer.highestOneBit(minCapacity) + 1);
/frameworks/base/core/java/android/util/
H A DLongArray.java95 final int minCapacity = currentSize + count;
96 if (minCapacity >= mValues.length) {
99 final int newCapacity = targetCap > minCapacity ? targetCap : minCapacity;
H A DIntArray.java115 final int minCapacity = currentSize + count;
116 if (minCapacity >= mValues.length) {
119 final int newCapacity = targetCap > minCapacity ? targetCap : minCapacity;
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 168 milliseconds