OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PreFillType
(Results
1 - 5
of
5
) sorted by null
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
PreFillQueue.java
9
private final Map<
PreFillType
, Integer> bitmapsPerType;
10
private final List<
PreFillType
> keyList;
14
public PreFillQueue(Map<
PreFillType
, Integer> bitmapsPerType) {
17
keyList = new ArrayList<
PreFillType
>(bitmapsPerType.keySet());
24
public
PreFillType
remove() {
25
PreFillType
result = keyList.get(keyIndex);
BitmapPreFiller.java
34
public void preFill(
PreFillType
.Builder... bitmapAttributeBuilders) {
39
PreFillType
[] bitmapAttributes = new
PreFillType
[bitmapAttributeBuilders.length];
41
PreFillType
.Builder builder = bitmapAttributeBuilders[i];
55
PreFillQueue generateAllocationOrder(
PreFillType
[] preFillSizes) {
59
for (
PreFillType
size : preFillSizes) {
65
Map<
PreFillType
, Integer> attributeToCount = new HashMap<
PreFillType
, Integer>();
66
for (
PreFillType
size : preFillSizes) {
76
private static int getSizeInBytes(
PreFillType
size)
[
all
...]
PreFillType.java
9
public final class
PreFillType
{
29
PreFillType
(int width, int height, Bitmap.Config config, int weight) {
70
if (o instanceof
PreFillType
) {
71
PreFillType
other = (
PreFillType
) o;
100
* Builder for {@link
PreFillType
}.
166
* Returns a new {@link
PreFillType
}.
168
PreFillType
build() {
169
return new
PreFillType
(width, height, config, weight);
BitmapPreFillRunner.java
60
private final Set<
PreFillType
> seenTypes = new HashSet<
PreFillType
>();
91
PreFillType
toAllocate = toPrefill.remove();
120
private void addToBitmapPool(
PreFillType
toAllocate, Bitmap bitmap) {
/external/glide/library/src/main/java/com/bumptech/glide/
Glide.java
24
import com.bumptech.glide.load.engine.prefill.
PreFillType
;
339
* {@link com.bumptech.glide.load.engine.prefill.
PreFillType
.Builder Builders} representing
342
public void preFillBitmapPool(
PreFillType
.Builder... bitmapAttributeBuilders) {
Completed in 577 milliseconds