Home
last modified time | relevance | path

Searched refs:sizeIndex (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/params/
DStreamConfigurationMap.java1514 int sizeIndex = 0; in getInternalFormatSizes() local
1548 sizes[sizeIndex++] = config.getSize(); in getInternalFormatSizes()
1553 if ((sizeIndex != sizesCount) && (dataspace == HAL_DATASPACE_DYNAMIC_DEPTH || in getInternalFormatSizes()
1556 if (sizeIndex > sizesCount) { in getInternalFormatSizes()
1559 sizeIndex + ")"); in getInternalFormatSizes()
1562 if (sizeIndex <= 0) { in getInternalFormatSizes()
1565 sizes = Arrays.copyOf(sizes, sizeIndex); in getInternalFormatSizes()
1567 } else if (sizeIndex != sizesCount) { in getInternalFormatSizes()
1569 "Too few sizes (expected " + sizesCount + ", actual " + sizeIndex + ")"); in getInternalFormatSizes()
/frameworks/base/core/java/com/android/internal/content/
DFileSystemProvider.java586 final int sizeIndex = ArrayUtils.indexOf(columns, Document.COLUMN_SIZE); in includeFile() local
587 if (sizeIndex != -1) { in includeFile()
588 row.add(sizeIndex, file.length()); in includeFile()