HomeSort by relevance Sort by last modified time
    Searched refs:needToReload (Results 1 - 4 of 4) sorted by null

  /packages/apps/TV/src/com/android/tv/util/images/
ImageLoader.java 214 if (bitmapInfo != null && !bitmapInfo.needToReload(maxWidth, maxHeight)) {
246 boolean needToReload = loadBitmapTask.isReloadNeeded();
247 if (bitmapInfo != null && !needToReload) {
293 boolean needToReload =
294 bitmapInfo != null && bitmapInfo.needToReload(mMaxWidth, mMaxHeight);
296 if (needToReload) {
311 return needToReload;
BitmapUtils.java 236 public boolean needToReload(int reqWidth, int reqHeight) {
247 "needToReload("
262 public boolean needToReload(ScaledBitmapInfo other) {
263 return needToReload(other.bitmap.getWidth(), other.bitmap.getHeight());
ImageCache.java 97 * ScaledBitmapInfo#needToReload(ScaledBitmapInfo)} is true.
109 if (old != null && !old.needToReload(bitmapInfo)) {
  /packages/apps/TV/tests/unit/src/com/android/tv/util/images/
ScaledBitmapInfoTest.java 61 assertWithMessage(scaledBitmap.id + " needToReload(" + reqWidth + "," + reqHeight + ")")
62 .that(scaledBitmap.needToReload(reqWidth, reqHeight))

Completed in 6601 milliseconds