HomeSort by relevance Sort by last modified time
    Searched defs:mResId (Results 1 - 25 of 30) sorted by null

1 2

  /frameworks/opt/bitmap/src/com/android/bitmap/
ResourceRequestKey.java 30 private int mResId;
45 mResId = resId;
55 return mResources.openRawResource(mResId);
76 if (mResId != that.mResId) {
85 return mResId;
92 return String.format("ResourceRequestKey: %d", mResId);
  /frameworks/support/graphics/drawable/animated/src/androidTest/java/androidx/vectordrawable/graphics/drawable/tests/
PathInterpolatorExceptionParameterizedTest.java 42 private int mResId;
59 mResId = resId;
71 mResId);
PathInterpolatorValueParameterizedTest.java 47 private int mResId;
61 mResId = resId;
72 Interpolator interpolator = AnimationUtilsCompat.loadInterpolator(mActivity, mResId);
AnimatedVectorDrawableParameterizedTest.java 58 private int mResId;
72 mResId = resId;
91 mResId);
PathInterpolatorParameterizedTest.java 52 private int mResId;
65 mResId = resId;
81 mResId);
90 saveVectorDrawableIntoPNG(mActivity.getResources(), bitmap, mResId, "start");
124 saveVectorDrawableIntoPNG(mActivity.getResources(), bitmap, mResId, "end");
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
ResourceTexture.java 30 protected final int mResId;
35 mResId = resId;
44 mContext.getResources(), mResId, options);
  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/tileinfo/
ResourceWallpaperInfo.java 16 private final int mResId;
21 mResId = resId;
28 new BitmapRegionTileSource.InputStreamSource(mResources, mResId, a);
53 a.cropImageAndSetWallpaper(mResources, mResId, true /* shouldFadeOutOnFinish */);
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
VectorDrawableSizeTest.java 41 private int mResId;
53 mResId = resId;
70 VectorDrawable drawable = (VectorDrawable) mResources.getDrawable(mResId, null);
AnimatedVectorDrawableTest.java 68 private final int mResId = R.drawable.animation_vector_drawable_grouping_1;
82 XmlPullParser parser = mResources.getXml(mResId);
107 DrawableTestUtils.saveAutoNamedVectorDrawableIntoPNG(mActivity, bitmap, mResId, null);
151 AnimatedVectorDrawable d1 = (AnimatedVectorDrawable) mResources.getDrawable(mResId);
152 AnimatedVectorDrawable d2 = (AnimatedVectorDrawable) mResources.getDrawable(mResId);
153 AnimatedVectorDrawable d3 = (AnimatedVectorDrawable) mResources.getDrawable(mResId);
179 mResources.getDrawable(mResId).setAlpha(restoreAlpha);
186 AnimatedVectorDrawable d1 = (AnimatedVectorDrawable) mResources.getDrawable(mResId);
196 AnimatedVectorDrawable d1 = (AnimatedVectorDrawable) mResources.getDrawable(mResId);
205 final AnimatedVectorDrawable d1 = (AnimatedVectorDrawable) mResources.getDrawable(mResId);
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
CursorFactoryListAdapter.java 43 private int mResId;
46 mResId = resId;
52 return inflater.inflate(mResId, parent, false);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
ShortcutParser.java 46 private final int mResId;
70 mResId = resId;
76 if (mResId != 0) {
79 XmlResourceParser parser = mResources.getXml(mResId);
  /packages/apps/Contacts/src/com/android/contacts/util/
AccountSelectionUtil.java 58 final private int mResId;
70 mResId = resId;
83 doImport(mActivity, mResId, mAccountList.get(which), mSubscriptionId);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/screenpinning/
ScreenPinningTestActivity.java 229 private final int mResId;
232 mResId = showId;
240 if (mResId == 0) {
243 show(mResId);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
IntentTile.java 209 private final int mResId;
213 mResId = resId;
220 return Objects.equals(other.mPackage, mPackage) && other.mResId == mResId;
226 return context.createPackageContext(mPackage, 0).getDrawable(mResId);
228 Log.w(TAG, "Error loading package drawable pkg=" + mPackage + " id=" + mResId, t);
235 return String.format("PackageDrawableIcon[pkg=%s,id=0x%08x]", mPackage, mResId);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumLabelMaker.java 92 private int mResId;
95 mResId = resId;
103 mContext.getResources(), mResId, options);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MaterialSearchSuggestionsList.java 172 private final int mResId;
178 mResId = resource;
206 convertView = getInflater().inflate(mResId, parent, false);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
SoundPlayerObject.java 49 private int mResId = -1;
54 return mResId;
116 mResId = resId;
  /frameworks/layoutlib/bridge/src/android/graphics/
ImageDecoder.java 188 mResId = resId;
193 final int mResId;
  /frameworks/support/preference/src/main/java/androidx/preference/
PreferenceGroupAdapter.java 88 private int mResId;
95 mResId = other.mResId;
106 return mResId == other.mResId
114 result = 31 * result + mResId;
239 pl.mResId = preference.getLayoutResource();
355 final View view = inflater.inflate(pl.mResId, parent, false);
  /packages/apps/Contacts/src/com/android/contacts/widget/
SelectPhoneAccountDialogFragment.java 216 private int mResId;
221 mResId = resource;
234 rowView = inflater.inflate(mResId, null);
  /packages/apps/Settings/src/com/android/settings/sim/
SimDialogActivity.java 276 private int mResId;
285 mResId = resource;
299 rowView = inflater.inflate(mResId, null);
SimPreferenceDialog.java 194 private int mResId;
200 mResId = resource;
216 rowView = inflater.inflate(mResId, null);
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/
BitmapRegionTileSource.java 325 private int mResId;
329 mResId = resId;
332 InputStream is = mRes.openRawResource(mResId);
350 return BitmapFactory.decodeResource(mRes, mResId, options);
  /packages/apps/Dialer/java/com/android/contacts/common/widget/
SelectPhoneAccountDialogFragment.java 279 private int mResId;
289 mResId = resource;
302 rowView = inflater.inflate(mResId, null);
  /frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/app/
MediaRouteButton.java 600 private final int mResId;
603 mResId = resId;
608 return ApiHelper.getLibResources(getContext()).getDrawable(mResId);
624 sRemoteIndicatorCache.put(mResId, remoteIndicator.getConstantState());

Completed in 460 milliseconds

1 2