Searched refs:mResId (Results 1 - 4 of 4) sorted by relevance

/frameworks/opt/bitmap/src/com/android/bitmap/
H A DResourceRequestKey.java30 private int mResId; field in class:ResourceRequestKey
45 mResId = resId;
55 return mResources.openRawResource(mResId);
76 if (mResId != that.mResId) {
85 return mResId;
92 return String.format("ResourceRequestKey: %d", mResId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DIntentTile.java171 private final int mResId; field in class:IntentTile.PackageDrawableIcon
175 mResId = resId;
182 return Objects.equals(other.mPackage, mPackage) && other.mResId == mResId;
188 return context.createPackageContext(mPackage, 0).getDrawable(mResId);
190 Log.w(TAG, "Error loading package drawable pkg=" + mPackage + " id=" + mResId, t);
197 return String.format("PackageDrawableIcon[pkg=%s,id=0x%08x]", mPackage, mResId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTile.java328 private final int mResId; field in class:QSTile.ResourceIcon
331 mResId = resId;
345 return context.getDrawable(mResId);
350 return o instanceof ResourceIcon && ((ResourceIcon) o).mResId == mResId;
355 return String.format("ResourceIcon[resId=0x%08x]", mResId);
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/
H A DBitmapRegionTileSource.java325 private int mResId; field in class:BitmapRegionTileSource.ResourceBitmapSource
329 mResId = resId;
332 InputStream is = mRes.openRawResource(mResId);
350 return BitmapFactory.decodeResource(mRes, mResId, options);

Completed in 92 milliseconds