Searched refs:resourceID (Results 1 - 11 of 11) sorted by relevance

/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
62 ScriptCThunker s = new ScriptCThunker(rst, resources, resourceID);
67 int id = internalCreate(rs, resources, resourceID);
75 private static synchronized int internalCreate(RenderScript rs, Resources resources, int resourceID) { argument
78 InputStream is = resources.openRawResource(resourceID);
104 String resName = resources.getResourceEntryName(resourceID);
H A DScriptCThunker.java38 protected ScriptCThunker(RenderScriptThunker rs, Resources resources, int resourceID) { argument
39 super(rs.mN, resources, resourceID);
/frameworks/base/graphics/java/android/renderscript/
H A DScriptC.java55 * @param resourceID
57 protected ScriptC(RenderScript rs, Resources resources, int resourceID) { argument
59 int id = internalCreate(rs, resources, resourceID);
73 private static synchronized int internalCreate(RenderScript rs, Resources resources, int resourceID) { argument
76 InputStream is = resources.openRawResource(resourceID);
102 String resName = resources.getResourceEntryName(resourceID);
H A DProgram.java243 * @param resourceID id of the file containing GLSL shader code
247 public BaseProgramBuilder setShader(Resources resources, int resourceID) { argument
250 InputStream is = resources.openRawResource(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/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DTexture2D.java50 public Texture2D(int resourceID) { argument
52 mResourceID = resourceID;
H A DTextureCube.java51 public TextureCube(int resourceID) { argument
53 mResourceID = resourceID;
H A DVertexShader.java42 public Builder setShader(Resources resources, int resourceID) { argument
43 mBuilder.setShader(resources, resourceID);
H A DFragmentShader.java46 public Builder setShader(Resources resources, int resourceID) { argument
47 mBuilder.setShader(resources, resourceID);
/frameworks/base/core/java/android/widget/
H A DViewAnimator.java309 * @param resourceID The resource id of the animation.
314 public void setInAnimation(Context context, int resourceID) { argument
315 setInAnimation(AnimationUtils.loadAnimation(context, resourceID));
322 * @param resourceID The resource id of the animation.
327 public void setOutAnimation(Context context, int resourceID) { argument
328 setOutAnimation(AnimationUtils.loadAnimation(context, resourceID));
H A DAdapterViewAnimator.java907 * @param resourceID The resource id of the animation.
912 public void setInAnimation(Context context, int resourceID) { argument
913 setInAnimation((ObjectAnimator) AnimatorInflater.loadAnimator(context, resourceID));
920 * @param resourceID The resource id of the animation.
925 public void setOutAnimation(Context context, int resourceID) { argument
926 setOutAnimation((ObjectAnimator) AnimatorInflater.loadAnimator(context, resourceID));

Completed in 212 milliseconds