Searched defs:mResId (Results 1 - 5 of 5) 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.java205 private final int mResId; field in class:IntentTile.PackageDrawableIcon
209 mResId = resId;
216 return Objects.equals(other.mPackage, mPackage) && other.mResId == mResId;
222 return context.createPackageContext(mPackage, 0).getDrawable(mResId);
224 Log.w(TAG, "Error loading package drawable pkg=" + mPackage + " id=" + mResId, t);
231 return String.format("PackageDrawableIcon[pkg=%s,id=0x%08x]", mPackage, 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);
/frameworks/base/core/java/android/content/res/
H A DResources.java1648 int[] mResId; field in class:Resources.ThemeKey
1655 if (mResId == null) {
1656 mResId = new int[4];
1663 mResId = GrowingArrayUtils.append(mResId, mCount, resId);
1676 mResId = other.mResId == null ? null : other.mResId.clone();
1703 if (mResId[i] != t.mResId[
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTile.java508 protected final int mResId; field in class:QSTile.ResourceIcon
511 mResId = resId;
525 return context.getDrawable(mResId);
530 return context.getDrawable(mResId);
535 return o instanceof ResourceIcon && ((ResourceIcon) o).mResId == mResId;
540 return String.format("ResourceIcon[resId=0x%08x]", mResId);

Completed in 1857 milliseconds