Searched defs:create (Results 1 - 25 of 221) sorted by last modified time

123456789

/frameworks/support/v4/java/android/support/v4/app/
H A DTaskStackBuilder.java136 public static TaskStackBuilder create(Context context) { method in class:TaskStackBuilder
147 * @deprecated use {@link #create(Context)} instead
150 return create(context);
/frameworks/support/v4/java/android/support/v4/graphics/drawable/
H A DRoundedBitmapDrawableFactory.java66 public static RoundedBitmapDrawable create(Resources res, Bitmap bitmap) { method in class:RoundedBitmapDrawableFactory
76 public static RoundedBitmapDrawable create(Resources res, method in class:RoundedBitmapDrawableFactory
78 final RoundedBitmapDrawable drawable = create(res, BitmapFactory.decodeFile(filepath));
89 public static RoundedBitmapDrawable create(Resources res, method in class:RoundedBitmapDrawableFactory
91 final RoundedBitmapDrawable drawable = create(res, BitmapFactory.decodeStream(is));
/frameworks/support/v4/java/android/support/v4/util/
H A DLruCache.java73 * created by {@code #create}. If a value was returned, it is moved to the
93 * Attempt to create a value. This may take a long time, and the map
94 * may be different when create() returns. If a conflicting value was
95 * added to the map while create() was working, we leave that value in
99 V createdValue = create(key);
244 protected V create(K key) { method in class:LruCache
309 * Returns the number of times {@link #create(Object)} returned a value.
H A DPair.java76 public static <A, B> Pair <A, B> create(A a, B b) { method in class:Pair
/frameworks/support/v4/java/android/support/v4/widget/
H A DScrollerCompat.java245 public static ScrollerCompat create(Context context) { method in class:ScrollerCompat
246 return create(context, null);
249 public static ScrollerCompat create(Context context, Interpolator interpolator) { method in class:ScrollerCompat
H A DViewDragHelper.java340 * Factory method to create a new ViewDragHelper.
346 public static ViewDragHelper create(ViewGroup forParent, Callback cb) { method in class:ViewDragHelper
351 * Factory method to create a new ViewDragHelper.
359 public static ViewDragHelper create(ViewGroup forParent, float sensitivity, Callback cb) { method in class:ViewDragHelper
360 final ViewDragHelper helper = create(forParent, cb);
366 * Apps should use ViewDragHelper.create() to get a new instance.
391 mScroller = ScrollerCompat.create(context, sInterpolator);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DOpReorderTest.java291 items.add(Item.create());
365 final Item newItem = Item.create();
595 static Item create() { method in class:OpReorderTest.Item
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DElement.java760 return ElementThunker.create(rst, dt);
811 throw new RSIllegalArgumentException("Cannot create vector of " +
1009 public Element create() { method in class:Element.Builder
1011 return mT.create(mRS);
H A DElementThunker.java177 static Element create(RenderScript rs, DataType dt) { method in class:ElementThunker
302 public Element create(RenderScript rs) { method in class:ElementThunker.BuilderThunker
304 android.renderscript.Element e = mN.create();
H A DRenderScript.java975 public static RenderScript create(Context ctx, int sdkVersion) { method in class:RenderScript
976 return create(ctx, sdkVersion, ContextType.NORMAL);
986 public static RenderScript create(Context ctx, int sdkVersion, ContextType ct) { method in class:RenderScript
997 return RenderScriptThunker.create(ctx, sSdkVersion);
1027 throw new RSDriverException("Failed to create RS context.");
1040 public static RenderScript create(Context ctx) { method in class:RenderScript
1041 return create(ctx, ContextType.NORMAL);
1053 public static RenderScript create(Context ctx, ContextType ct) { method in class:RenderScript
1055 return create(ctx, v, ct);
H A DRenderScriptThunker.java55 public static RenderScript create(Context ctx, int sdkVersion) { method in class:RenderScriptThunker
61 Method create = javaRS.getDeclaredMethod("create", signature);
62 rs.mN = (android.renderscript.RenderScript)create.invoke(null, args);
68 throw new RSRuntimeException("Failure to create platform RenderScript context");
H A DSampler.java119 rs.mSampler_CLAMP_NEAREST = b.create();
139 rs.mSampler_CLAMP_LINEAR = b.create();
159 rs.mSampler_CLAMP_LINEAR_MIP_LINEAR = b.create();
179 rs.mSampler_WRAP_NEAREST = b.create();
199 rs.mSampler_WRAP_LINEAR = b.create();
219 rs.mSampler_WRAP_LINEAR_MIP_LINEAR = b.create();
239 rs.mSampler_MIRRORED_REPEAT_NEAREST = b.create();
259 rs.mSampler_MIRRORED_REPEAT_LINEAR = b.create();
330 public Sampler create() { method in class:Sampler.Builder
339 return b.create();
[all...]
H A DSamplerThunker.java130 public Sampler create() { method in class:SamplerThunker.Builder
139 android.renderscript.Sampler s = b.create();
H A DScriptGroup.java36 * script kernels and connections. Attempting to create a
37 * ScriptGroup with multiple DAGs or attempting to create
166 * Once all connections are made, a call to {@link #create} will
403 public ScriptGroup create() { method in class:ScriptGroup.Builder
406 return mT.create();
H A DScriptGroupThunker.java106 public ScriptGroupThunker create() { method in class:ScriptGroupThunker.Builder
109 sg.mN = bN.create();
H A DScriptIntrinsic3DLUT.java49 public static ScriptIntrinsic3DLUT create(RenderScript rs, Element e) { method in class:ScriptIntrinsic3DLUT
52 return ScriptIntrinsic3DLUTThunker.create(rs, e);
H A DScriptIntrinsic3DLUTThunker.java36 public static ScriptIntrinsic3DLUTThunker create(RenderScript rs, Element e) { method in class:ScriptIntrinsic3DLUTThunker
42 lut.mN = android.renderscript.ScriptIntrinsic3DLUT.create(rst.mN, et.getNObj());
H A DScriptIntrinsicBlend.java37 public static ScriptIntrinsicBlend create(RenderScript rs, Element e) { method in class:ScriptIntrinsicBlend
40 return ScriptIntrinsicBlendThunker.create(rs, e);
H A DScriptIntrinsicBlendThunker.java30 public static ScriptIntrinsicBlendThunker create(RenderScript rs, Element e) { method in class:ScriptIntrinsicBlendThunker
36 blend.mN = android.renderscript.ScriptIntrinsicBlend.create(rst.mN, et.getNObj());
H A DScriptIntrinsicBlur.java48 public static ScriptIntrinsicBlur create(RenderScript rs, Element e) { method in class:ScriptIntrinsicBlur
51 return ScriptIntrinsicBlurThunker.create(rs, e);
64 * Must match the element type supplied during create.
H A DScriptIntrinsicBlurThunker.java35 public static ScriptIntrinsicBlurThunker create(RenderScript rs, Element e) { method in class:ScriptIntrinsicBlurThunker
41 blur.mN = android.renderscript.ScriptIntrinsicBlur.create(rst.mN, et.getNObj());
H A DScriptIntrinsicColorMatrix.java49 public static ScriptIntrinsicColorMatrix create(RenderScript rs, Element e) { method in class:ScriptIntrinsicColorMatrix
52 return ScriptIntrinsicColorMatrixThunker.create(rs, e);
H A DScriptIntrinsicColorMatrixThunker.java32 public static ScriptIntrinsicColorMatrixThunker create(RenderScript rs, Element e) { method in class:ScriptIntrinsicColorMatrixThunker
38 cm.mN = android.renderscript.ScriptIntrinsicColorMatrix.create(rst.mN, et.getNObj());
H A DScriptIntrinsicConvolve3x3.java49 public static ScriptIntrinsicConvolve3x3 create(RenderScript rs, Element e) { method in class:ScriptIntrinsicConvolve3x3
52 return ScriptIntrinsicConvolve3x3Thunker.create(rs, e);
68 * Must match the element type supplied during create.
H A DScriptIntrinsicConvolve3x3Thunker.java33 public static ScriptIntrinsicConvolve3x3Thunker create(RenderScript rs, Element e) { method in class:ScriptIntrinsicConvolve3x3Thunker
39 si.mN = android.renderscript.ScriptIntrinsicConvolve3x3.create(rst.mN, et.getNObj());

Completed in 426 milliseconds

123456789