Home | History | Annotate | Download | only in util

Lines Matching defs:valueCount

159     private final int valueCount;
288 private DiskLruCache(File directory, int appVersion, int valueCount, long maxSize) {
293 this.valueCount = valueCount;
303 * @param valueCount the number of values per cache entry. Must be positive.
307 public static DiskLruCache open(File directory, int appVersion, int valueCount, long maxSize)
312 if (valueCount <= 0) {
313 throw new IllegalArgumentException("valueCount <= 0");
317 DiskLruCache cache = new DiskLruCache(directory, appVersion, valueCount, maxSize);
334 cache = new DiskLruCache(directory, appVersion, valueCount, maxSize);
350 || !Integer.toString(valueCount).equals(valueCountString)
386 if (parts[0].equals(CLEAN) && parts.length == 2 + valueCount) {
408 for (int t = 0; t < valueCount; t++) {
413 for (int t = 0; t < valueCount; t++) {
438 writer.write(Integer.toString(valueCount));
490 InputStream[] ins = new InputStream[valueCount];
492 for (int i = 0; i < valueCount; i++) {
573 for (int i = 0; i < valueCount; i++) {
581 for (int i = 0; i < valueCount; i++) {
639 for (int i = 0; i < valueCount; i++) {
913 this.lengths = new long[valueCount];
928 if (strings.length != valueCount) {