Home
last modified time | relevance | path

Searched refs:create (Results 1 – 25 of 464) sorted by relevance

12345678910>>...19

/frameworks/base/graphics/java/android/graphics/
DTypeface.java82 public static Typeface create(String familyName, int style) { in create() method in Typeface
97 public static Typeface create(Typeface family, int style) { in create() method in Typeface
153 DEFAULT = create((String)null, 0);
154 DEFAULT_BOLD = create((String)null, Typeface.BOLD);
155 SANS_SERIF = create("sans-serif", 0);
156 SERIF = create("serif", 0);
157 MONOSPACE = create("monospace", 0);
162 create((String)null, Typeface.ITALIC),
163 create((String)null, Typeface.BOLD_ITALIC),
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
DTypefaceTest.java30 Typeface.create(Typeface.SANS_SERIF, 0),
31 Typeface.create(Typeface.SANS_SERIF, 1),
32 Typeface.create(Typeface.SERIF, 0),
33 Typeface.create(Typeface.SERIF, 1),
34 Typeface.create(Typeface.SERIF, 2),
35 Typeface.create(Typeface.SERIF, 3),
36 Typeface.create(Typeface.MONOSPACE, 0)
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
DAlignmentTest.java40 View create(String name, int size); in create() method
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) { in create() method in AlignmentTest
89 container.addView(factory.create(name, 20), layoutParams); in create()
114 setContentView(create(getBaseContext())); in onCreate()
DAbstractLayoutTest.java36 public View create(Context context, String name, int size) { in create() method in AbstractLayoutTest
47 public abstract ViewGroup create(Context context); in create() method in AbstractLayoutTest
68 setContentView(create(getBaseContext())); in onCreate()
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
DUT_alloc.java40 Allocation A = Allocation.createTyped(RS, typeBuilder.create()); in initializeGlobals()
45 Allocation AFaces = Allocation.createTyped(RS, typeBuilder.create()); in initializeGlobals()
48 Allocation ALOD = Allocation.createTyped(RS, typeBuilder.create()); in initializeGlobals()
51 Allocation AFacesLOD = Allocation.createTyped(RS, typeBuilder.create()); in initializeGlobals()
58 RenderScript pRS = RenderScript.create(mCtx); in run()
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/dataclass/
DOuterClass_InnerClass_Delegate.java17 package com.android.tools.layoutlib.create.dataclass;
19 import com.android.tools.layoutlib.create.DelegateClassAdapterTest;
20 import com.android.tools.layoutlib.create.dataclass.OuterClass.InnerClass;
DOuterClass_Delegate.java17 package com.android.tools.layoutlib.create.dataclass;
19 import com.android.tools.layoutlib.create.DelegateClassAdapterTest;
DClassWithNative_Delegate.java17 package com.android.tools.layoutlib.create.dataclass;
19 import com.android.tools.layoutlib.create.DelegateClassAdapterTest;
DOuterClass.java17 package com.android.tools.layoutlib.create.dataclass;
19 import com.android.tools.layoutlib.create.DelegateClassAdapterTest;
DClassWithNative.java17 package com.android.tools.layoutlib.create.dataclass;
19 import com.android.tools.layoutlib.create.DelegateClassAdapterTest;
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
DRsBenchRS.java234 return builder.create(); in BLEND_ADD_DEPTH_NONE()
264 return tmb.create(true); in getMbyNMesh()
285 return tmb.create(true); in getSingleMesh()
300 mProgStoreBlendAlpha = builder.create(); in initProgramStore()
313 mRS.bindProgramStore(builder.create()); in initProgramStore()
316 mScript.set_gPSLights(builder.create()); in initProgramStore()
325 mProgFragmentTexture = texBuilder.create(); in initProgramFragment()
330 mProgFragmentColor = colBuilder.create(); in initProgramFragment()
342 ProgramFragment pfb = builder.create(); in initProgramFragment()
351 ProgramFragment pfs = builder.create(); in initProgramFragment()
[all …]
/frameworks/base/tests/RenderScriptTests/FBOTest/src/com/android/fbotest/
DFBOSyncRS.java85 mPSBackground = b.create(); in initPFS()
96 mSampler = bs.create(); in initPF()
101 mPFBackground = b.create(); in initPF()
109 mPVBackground = pvb.create(); in initPV()
179 b.create(), in initRS()
186 b.create(), in initRS()
196 b.create(), in initRS()
203 mItalic = Font.create(mRS, mRes, "serif", Font.Style.ITALIC, 8); in initRS()
DFBOTestRS.java84 mPSBackground = b.create(); in initPFS()
95 mSampler = bs.create(); in initPF()
100 mPFBackground = b.create(); in initPF()
108 mPVBackground = pvb.create(); in initPV()
178 b.create(), in initRS()
188 b.create(), in initRS()
195 mItalic = Font.create(mRS, mRes, "serif", Font.Style.ITALIC, 8); in initRS()
/frameworks/base/graphics/java/android/renderscript/
DSampler.java69 rs.mSampler_CLAMP_NEAREST = b.create(); in CLAMP_NEAREST()
89 rs.mSampler_CLAMP_LINEAR = b.create(); in CLAMP_LINEAR()
109 rs.mSampler_CLAMP_LINEAR_MIP_LINEAR = b.create(); in CLAMP_LINEAR_MIP_LINEAR()
129 rs.mSampler_WRAP_NEAREST = b.create(); in WRAP_NEAREST()
149 rs.mSampler_WRAP_LINEAR = b.create(); in WRAP_LINEAR()
169 rs.mSampler_WRAP_LINEAR_MIP_LINEAR = b.create(); in WRAP_LINEAR_MIP_LINEAR()
242 public Sampler create() { in create() method in Sampler.Builder
DProgramRaster.java61 rs.mProgramRaster_CULL_BACK = builder.create(); in CULL_BACK()
70 rs.mProgramRaster_CULL_FRONT = builder.create(); in CULL_FRONT()
79 rs.mProgramRaster_CULL_NONE = builder.create(); in CULL_NONE()
105 public ProgramRaster create() { in create() method in ProgramRaster.Builder
DProgramVertexFixedFunction.java70 public ProgramVertexFixedFunction create() { in create() method in ProgramVertexFixedFunction.InternalBuilder
129 Type.Builder typeBuilder = new Type.Builder(rs, b.create()); in getConstantInputType()
131 return typeBuilder.create(); in getConstantInputType()
159 public ProgramVertexFixedFunction create() { in create() method in ProgramVertexFixedFunction.Builder
171 sb.addInput(b.create()); in create()
173 return sb.create(); in create()
DProgramStore.java161 rs.mProgramStore_BLEND_NONE_DEPTH_TEST = builder.create(); in BLEND_NONE_DEPTH_TEST()
182 rs.mProgramStore_BLEND_NONE_DEPTH_NO_DEPTH = builder.create(); in BLEND_NONE_DEPTH_NONE()
206 rs.mProgramStore_BLEND_ALPHA_DEPTH_TEST = builder.create(); in BLEND_ALPHA_DEPTH_TEST()
228 rs.mProgramStore_BLEND_ALPHA_DEPTH_NO_DEPTH = builder.create(); in BLEND_ALPHA_DEPTH_NONE()
338 public ProgramStore create() { in create() method in ProgramStore.Builder
DProgramFragmentFixedFunction.java47 public ProgramFragmentFixedFunction create() { in create() method in ProgramFragmentFixedFunction.InternalBuilder
252 public ProgramFragmentFixedFunction create() { in create() method in ProgramFragmentFixedFunction.Builder
267 Type.Builder typeBuilder = new Type.Builder(mRS, b.create()); in create()
269 constType = typeBuilder.create(); in create()
276 ProgramFragmentFixedFunction pf = sb.create(); in create()
/frameworks/base/core/tests/coretests/src/android/util/
DScrollViewScenario.java57 View create(final Context context); in create() method
101 public View create(final Context context) { in addTextView()
130 public View create(final Context context) { in addButton()
159 public View create(final Context context) { in addInternalSelectionView()
174 public View create(Context context) { in addVerticalLLOfButtons()
259 mLinearLayout.addView(viewFactory.create(this), lp); in onCreate()
/frameworks/base/docs/html/guide/developing/tools/
Dmksdcard.jd6 …<p>The <code>mksdcard</code> tool lets you quickly create a FAT32 disk image that you can load in …
8 card while creating an AVD in the AVD Manager, you usually use that feature to create an SD card.
29 <td>A volume label for the disk image to create.</td>
35 <td>An integer that specifies the size (in bytes) of disk image to create. You can also
43 <td>The path/filename of the disk image to create.</td>
/frameworks/base/core/java/android/util/
DSingleton.java29 protected abstract T create(); in create() method in Singleton
34 mInstance = create(); in get()
/frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/
DShadersTestRS.java91 mPSBackground = b.create(); in initPFS()
106 mPFBackground = b.create(); in initPF()
119 mPFVignette = fs.create(); in initPF()
126 mPVBackground = pvb.create(); in initPV()
192 mScreen = Allocation.createTyped(mRS, b.create(), in initBuffers()
198 mScreenDepth = Allocation.createTyped(mRS, b.create(), in initBuffers()
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
DSimpleModelRS.java83 mPSBackground = b.create(); in initPFS()
94 mSampler = bs.create(); in initPF()
99 mPFBackground = b.create(); in initPF()
107 mPVBackground = pvb.create(); in initPV()
177 mItalic = Font.create(mRS, mRes, "serif", Font.Style.ITALIC, 8); in initRS()
/frameworks/base/docs/html/guide/developing/devices/
Dindex.jd8 <p>The easiest way to create an AVD is to use the graphical <a href=
14 <p>You can also create AVDs on the command line by passing the <code>android</code> tool options.
15 For more information on how to create AVDs in this manner, see <a href=
38 <p>You can create as many AVDs as you need, based on the types of device you want to model.
39 …To thoroughly test your application, you should create an AVD for each general device configuration
54 …<li>You should create at least one AVD that uses a target whose API Level is greater than that req…
63 library is present. If you want to run your application on an emulator, create an AVD that
64 …includes the required library. Usually, you must create such an AVD using an Add-on component for …
/frameworks/base/core/jni/android/graphics/
DLayerRasterizer.cpp6 static SkRasterizer* create(JNIEnv* env, jobject) { in create() function in SkLayerRasterizerGlue
22 { "nativeConstructor", "()I", (void*)SkLayerRasterizerGlue::create },

12345678910>>...19