Searched defs:resourceID (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/rs/java/android/renderscript/
H A DScriptC.java57 * @param resourceID
59 protected ScriptC(RenderScript rs, Resources resources, int resourceID) { argument
61 long id = internalCreate(rs, resources, resourceID);
87 private static synchronized long internalCreate(RenderScript rs, Resources resources, int resourceID) { argument
90 InputStream is = resources.openRawResource(resourceID);
116 String resName = resources.getResourceEntryName(resourceID);
H A DProgram.java244 * @param resourceID id of the file containing GLSL shader code
248 public BaseProgramBuilder setShader(Resources resources, int resourceID) { argument
251 InputStream is = resources.openRawResource(resourceID);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptC.java55 * @param resourceID
57 protected ScriptC(RenderScript rs, Resources resources, int resourceID) { argument
59 long id = internalCreate(rs, resources, resourceID);
88 private static synchronized long internalCreate(RenderScript rs, Resources resources, int resourceID) { argument
91 InputStream is = resources.openRawResource(resourceID);
117 String resName = resources.getResourceEntryName(resourceID);
/frameworks/base/core/java/android/view/animation/
H A DLayoutAnimationController.java178 * @param resourceID the resource identifier of the animation
185 public void setAnimation(Context context, @AnimRes int resourceID) { argument
186 setAnimation(AnimationUtils.loadAnimation(context, resourceID));
223 * @param resourceID the resource identifier of the interpolator
230 public void setInterpolator(Context context, @InterpolatorRes int resourceID) { argument
231 setInterpolator(AnimationUtils.loadInterpolator(context, resourceID));
/frameworks/base/core/java/android/widget/
H A DViewAnimator.java308 * @param resourceID The resource id of the animation.
313 public void setInAnimation(Context context, @AnimRes int resourceID) { argument
314 setInAnimation(AnimationUtils.loadAnimation(context, resourceID));
321 * @param resourceID The resource id of the animation.
326 public void setOutAnimation(Context context, @AnimRes int resourceID) { argument
327 setOutAnimation(AnimationUtils.loadAnimation(context, resourceID));
H A DAdapterViewAnimator.java909 * @param resourceID The resource id of the animation.
914 public void setInAnimation(Context context, int resourceID) { argument
915 setInAnimation((ObjectAnimator) AnimatorInflater.loadAnimator(context, resourceID));
922 * @param resourceID The resource id of the animation.
927 public void setOutAnimation(Context context, int resourceID) { argument
928 setOutAnimation((ObjectAnimator) AnimatorInflater.loadAnimator(context, resourceID));

Completed in 701 milliseconds