Searched defs:resourceID (Results 1 - 5 of 5) sorted by last modified time

/frameworks/base/graphics/java/android/renderscript/
H A DProgram.java183 * @param resourceID id of the file containing GLSL shader code
187 public BaseProgramBuilder setShader(Resources resources, int resourceID) { argument
190 InputStream is = resources.openRawResource(resourceID);
H A DScriptC.java54 * @param resourceID
56 protected ScriptC(RenderScript rs, Resources resources, int resourceID) { argument
58 int id = internalCreate(rs, resources, resourceID);
66 private static synchronized int internalCreate(RenderScript rs, Resources resources, int resourceID) { argument
69 InputStream is = resources.openRawResource(resourceID);
98 String resName = resources.getResourceEntryName(resourceID);
/frameworks/base/core/java/android/view/animation/
H A DLayoutAnimationController.java176 * @param resourceID the resource identifier of the animation
183 public void setAnimation(Context context, int resourceID) { argument
184 setAnimation(AnimationUtils.loadAnimation(context, resourceID));
221 * @param resourceID the resource identifier of the interpolator
228 public void setInterpolator(Context context, int resourceID) { argument
229 setInterpolator(AnimationUtils.loadInterpolator(context, resourceID));
/frameworks/base/core/java/android/widget/
H A DAdapterViewAnimator.java892 * @param resourceID The resource id of the animation.
897 public void setInAnimation(Context context, int resourceID) { argument
898 setInAnimation((ObjectAnimator) AnimatorInflater.loadAnimator(context, resourceID));
905 * @param resourceID The resource id of the animation.
910 public void setOutAnimation(Context context, int resourceID) { argument
911 setOutAnimation((ObjectAnimator) AnimatorInflater.loadAnimator(context, resourceID));
H A DViewAnimator.java303 * @param resourceID The resource id of the animation.
308 public void setInAnimation(Context context, int resourceID) { argument
309 setInAnimation(AnimationUtils.loadAnimation(context, resourceID));
316 * @param resourceID The resource id of the animation.
321 public void setOutAnimation(Context context, int resourceID) { argument
322 setOutAnimation(AnimationUtils.loadAnimation(context, resourceID));

Completed in 95 milliseconds