Home | History | Annotate | Download | only in browser

Lines Matching refs:estimatedSize

214      * @param estimatedSize the estimated size of a new database, or 0 if
222 String databaseIdentifier, long currentQuota, long estimatedSize,
261 // If we cannot satisfy the estimatedSize, we should return 0 as
264 if (totalUnusedQuota >= estimatedSize) {
265 newOriginQuota = estimatedSize;
270 " estimatedSize for the new database " +
271 " (estimatedSize: " + estimatedSize +
281 // Increase the quota. If estimatedSize == 0, then this is a quota overflow
283 long quotaIncrease = estimatedSize == 0 ?
285 estimatedSize;