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.java1592 int sizeIndex = 0; in getInternalFormatSizes() local
1628 sizes[sizeIndex++] = config.getSize(); in getInternalFormatSizes()
1633 if ((sizeIndex != sizesCount) && (dataspace == HAL_DATASPACE_DYNAMIC_DEPTH || in getInternalFormatSizes()
1636 if (sizeIndex > sizesCount) { in getInternalFormatSizes()
1639 sizeIndex + ")"); in getInternalFormatSizes()
1642 if (sizeIndex <= 0) { in getInternalFormatSizes()
1645 sizes = Arrays.copyOf(sizes, sizeIndex); in getInternalFormatSizes()
1647 } else if (sizeIndex != sizesCount) { in getInternalFormatSizes()
1649 "Too few sizes (expected " + sizesCount + ", actual " + sizeIndex + ")"); in getInternalFormatSizes()
/frameworks/base/core/java/com/android/internal/content/
DFileSystemProvider.java652 final int sizeIndex = ArrayUtils.indexOf(columns, Document.COLUMN_SIZE); in includeFile() local
653 if (sizeIndex != -1) { in includeFile()
654 row.add(sizeIndex, file.length()); in includeFile()