Searched refs:mResId (Results 1 - 6 of 6) 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.java195 private final int mResId; field in class:IntentTile.PackageDrawableIcon
199 mResId = resId;
206 return Objects.equals(other.mPackage, mPackage) && other.mResId == mResId;
212 return context.createPackageContext(mPackage, 0).getDrawable(mResId);
214 Log.w(TAG, "Error loading package drawable pkg=" + mPackage + " id=" + mResId, t);
221 return String.format("PackageDrawableIcon[pkg=%s,id=0x%08x]", mPackage, mResId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTile.java358 protected final int mResId; field in class:QSTile.ResourceIcon
361 mResId = resId;
375 Drawable d = context.getDrawable(mResId);
384 return o instanceof ResourceIcon && ((ResourceIcon) o).mResId == mResId;
389 return String.format("ResourceIcon[resId=0x%08x]", mResId);
407 final AnimatedVectorDrawable d = (AnimatedVectorDrawable) context.getDrawable(mResId)
/frameworks/base/core/java/android/content/res/
H A DResources.java1807 final int resId = mKey.mResId[j];
1841 final int resId = mKey.mResId[i];
1849 int[] mResId; field in class:Resources.ThemeKey
1856 if (mResId == null) {
1857 mResId = new int[4];
1864 mResId = GrowingArrayUtils.append(mResId, mCount, resId);
1877 mResId = other.mResId == null ? null : other.mResId
[all...]
/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/tools/layoutlib/bridge/src/android/content/res/
H A DResources_Theme_Delegate.java115 final int[] resId = key.mResId;

Completed in 194 milliseconds