Searched refs:create (Results 26 - 50 of 491) sorted by relevance

1234567891011>>

/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A DGroupTest.java44 mConvolve = ScriptIntrinsicConvolve3x3.create(mRS, Element.U8_4(mRS));
45 mMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS));
62 Type connect = tb.create();
69 mGroup = b.create();
H A DBlur25G.java64 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create());
65 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
70 mIntrinsic = ScriptIntrinsicBlur.create(mRS, Element.U8(mRS));
/frameworks/rs/java/tests/LatencyBenchmark/src/com/example/android/rs/computebench/
H A DLatencyBench.java32 mRS = RenderScript.create(this);
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_kernel.java39 A = Allocation.createTyped(RS, typeBuilder.create());
41 B = Allocation.createTyped(RS, typeBuilder.create());
48 RenderScript pRS = RenderScript.create(mCtx);
H A DUT_sampler.java50 minification = b.create();
54 magnification = b.create();
58 wrapS = b.create();
62 wrapT = b.create();
66 anisotropy = b.create();
142 RenderScript pRS = RenderScript.create(mCtx);
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A DUT_kernel.java39 A = Allocation.createTyped(RS, typeBuilder.create());
41 B = Allocation.createTyped(RS, typeBuilder.create());
48 RenderScript pRS = RenderScript.create(mCtx);
H A DUT_program_store.java57 ditherEnable = b.setDitherEnabled(true).create();
60 colorRWriteEnable = b.setColorMaskEnabled(true, false, false, false).create();
63 colorGWriteEnable = b.setColorMaskEnabled(false, true, false, false).create();
66 colorBWriteEnable = b.setColorMaskEnabled(false, false, true, false).create();
69 colorAWriteEnable = b.setColorMaskEnabled(false, false, false, true).create();
73 ProgramStore.BlendDstFunc.ZERO).create();
77 ProgramStore.BlendDstFunc.DST_ALPHA).create();
80 depthWriteEnable = b.setDepthMaskEnabled(true).create();
83 depthFunc = b.setDepthFunc(ProgramStore.DepthFunc.GREATER).create();
143 ProgramStore ps = pb.create();
[all...]
H A DUT_sampler.java52 minification = b.create();
56 magnification = b.create();
60 wrapS = b.create();
64 wrapT = b.create();
68 anisotropy = b.create();
144 RenderScript pRS = RenderScript.create(mCtx);
H A DUT_program_raster.java45 pointSpriteEnabled = b.setPointSpriteEnabled(true).create();
47 cullMode = b.setCullMode(CullMode.FRONT).create();
75 RenderScript pRS = RenderScript.create(mCtx);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DParserFactory.java42 public static XmlPullParser create(File f) method in class:ParserFactory
45 return create(stream, f.getName(), f.length());
48 public static XmlPullParser create(InputStream stream, String name) method in class:ParserFactory
50 return create(stream, name, -1);
53 private static XmlPullParser create(InputStream stream, String name, long size) method in class:ParserFactory
82 // create a buffered reader to facilitate reading.
93 // create the initial buffer and read it.
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DAlignmentTest.java40 View create(String name, int size); method in interface:AlignmentTest.ViewFactory
44 public View create(String name, int size) {
58 public View create(String name, int size) {
67 public View create(String name, int size) {
77 public static ViewGroup create(Context context1) { method in class:AlignmentTest
89 container.addView(factory.create(name, 20), layoutParams);
114 setContentView(create(getBaseContext()));
H A DAbstractLayoutTest.java36 public View create(Context context, String name, int size) { method in class:AbstractLayoutTest
47 public abstract ViewGroup create(Context context); method in class:AbstractLayoutTest
68 setContentView(create(getBaseContext()));
/frameworks/base/graphics/java/android/renderscript/
H A DSampler.java117 rs.mSampler_CLAMP_NEAREST = b.create();
137 rs.mSampler_CLAMP_LINEAR = b.create();
157 rs.mSampler_CLAMP_LINEAR_MIP_LINEAR = b.create();
177 rs.mSampler_WRAP_NEAREST = b.create();
197 rs.mSampler_WRAP_LINEAR = b.create();
217 rs.mSampler_WRAP_LINEAR_MIP_LINEAR = b.create();
237 rs.mSampler_MIRRORED_REPEAT_NEAREST = b.create();
257 rs.mSampler_MIRRORED_REPEAT_LINEAR = b.create();
277 rs.mSampler_MIRRORED_REPEAT_LINEAR_MIP_LINEAR = b.create();
348 public Sampler create() { method in class:Sampler.Builder
[all...]
H A DScriptIntrinsicYuvToRGB.java44 public static ScriptIntrinsicYuvToRGB create(RenderScript rs, Element e) { method in class:ScriptIntrinsicYuvToRGB
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
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...]
/frameworks/base/core/tests/coretests/src/android/util/
H A DScrollViewScenario.java57 View create(final Context context); method in interface:ScrollViewScenario.ViewFactory
101 public View create(final Context context) {
130 public View create(final Context context) {
159 public View create(final Context context) {
174 public View create(Context context) {
251 // create views specified by params
259 mLinearLayout.addView(viewFactory.create(this), lp);
/frameworks/base/data/fonts/
H A DAndroid.mk21 # create symlink for given font
24 define create-font-symlink
38 $(eval $(call create-font-symlink,DroidSans.ttf,Roboto-Regular.ttf))
39 $(eval $(call create-font-symlink,DroidSans-Bold.ttf,Roboto-Bold.ttf))
135 $(eval $(call create-font-symlink,Roboto-Light.ttf,Roboto-Regular.ttf))
136 $(eval $(call create-font-symlink,Roboto-LightItalic.ttf,Roboto-Italic.ttf))
137 $(eval $(call create-font-symlink,Roboto-Thin.ttf,Roboto-Regular.ttf))
138 $(eval $(call create-font-symlink,Roboto-ThinItalic.ttf,Roboto-Italic.ttf))
139 $(eval $(call create-font-symlink,RobotoCondensed-Regular.ttf,Roboto-Regular.ttf))
140 $(eval $(call create
[all...]
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DBlur25G.java68 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create());
69 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
74 mIntrinsic = ScriptIntrinsicBlur.create(mRS, Element.U8(mRS));
/frameworks/base/location/lib/java/com/android/location/provider/
H A DProviderPropertiesUnbundled.java31 public static ProviderPropertiesUnbundled create(boolean requiresNetwork, method in class:ProviderPropertiesUnbundled
/frameworks/base/media/java/android/media/audiofx/
H A DAcousticEchoCanceler.java61 public static AcousticEchoCanceler create(int audioSession) { method in class:AcousticEchoCanceler
H A DAutomaticGainControl.java61 public static AutomaticGainControl create(int audioSession) { method in class:AutomaticGainControl
H A DNoiseSuppressor.java63 public static NoiseSuppressor create(int audioSession) { method in class:NoiseSuppressor
/frameworks/base/media/java/android/media/videoeditor/
H A DVideoEditorFactory.java28 * by creating a new project {@link #create(String)} or by loading an
45 public static VideoEditor create(String projectPath) throws IOException { method in class:VideoEditorFactory
47 * If the project path does not exist create it
52 throw new FileNotFoundException("Cannot create project path: "
60 throw new FileNotFoundException("Cannot create file .nomedia");
/frameworks/base/tests/RenderScriptTests/FountainFbo/src/com/example/android/rs/fountainfbo/
H A DFountainFboRS.java49 Mesh sm = smb.create();
57 mProgramFragment = pfb.create();
65 mTextureProgramFragment = pfb.create();
71 mColorBuffer = Allocation.createTyped(mRS, colorBuilder.create(),
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DMethodListener.java17 package com.android.tools.layoutlib.create;

Completed in 1103 milliseconds

1234567891011>>