Searched refs:create (Results 1 - 25 of 526) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/util/
H A DSingleton.java29 protected abstract T create(); method in class:Singleton
34 mInstance = create();
H A DPrefixPrinter.java35 public static Printer create(Printer printer, String prefix) { method in class:PrefixPrinter
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/dataclass/
H A DJavaClass.java17 package com.android.tools.layoutlib.create.dataclass;
H A 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;
H A DClassWithNative_Delegate.java17 package com.android.tools.layoutlib.create.dataclass;
19 import com.android.tools.layoutlib.create.DelegateClassAdapterTest;
H A DOuterClass.java17 package com.android.tools.layoutlib.create.dataclass;
19 import com.android.tools.layoutlib.create.DelegateClassAdapterTest;
H A DOuterClass_Delegate.java17 package com.android.tools.layoutlib.create.dataclass;
19 import com.android.tools.layoutlib.create.DelegateClassAdapterTest;
H A DClassWithNative.java17 package com.android.tools.layoutlib.create.dataclass;
19 import com.android.tools.layoutlib.create.DelegateClassAdapterTest;
/frameworks/base/media/mca/filterfw/java/android/filterfw/format/
H A DImageFormat.java36 public static MutableFrameFormat create(int width, method in class:ImageFormat
51 public static MutableFrameFormat create(int width, method in class:ImageFormat
55 return create(width,
62 public static MutableFrameFormat create(int colorspace, int target) { method in class:ImageFormat
63 return create(FrameFormat.SIZE_UNSPECIFIED,
70 public static MutableFrameFormat create(int colorspace) { method in class:ImageFormat
71 return create(FrameFormat.SIZE_UNSPECIFIED,
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DICreateInfo.java17 package com.android.tools.layoutlib.create;
H A DLogAbortException.java17 package com.android.tools.layoutlib.create;
/frameworks/base/graphics/java/android/graphics/
H A DTypeface.java87 public static Typeface create(String familyName, int style) { method in class:Typeface
102 public static Typeface create(Typeface family, int style) { method in class:Typeface
183 DEFAULT = create((String) null, 0);
184 DEFAULT_BOLD = create((String) null, Typeface.BOLD);
185 SANS_SERIF = create("sans-serif", 0);
186 SERIF = create("serif", 0);
187 MONOSPACE = create("monospace", 0);
192 create((String) null, Typeface.ITALIC),
193 create((String) null, Typeface.BOLD_ITALIC),
/frameworks/base/core/jni/android/graphics/
H A DLayerRasterizer.cpp6 static SkRasterizer* create(JNIEnv* env, jobject) { function in class:SkLayerRasterizerGlue
22 { "nativeConstructor", "()I", (void*)SkLayerRasterizerGlue::create },
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioCodec.cpp29 AudioCodec *(*create)(); member in struct:AudioCodecType
44 AudioCodec *codec = type->create();
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DTypefaceTest.java28 // create array of all std faces
30 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/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_alloc.java40 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
46 Allocation AFaces = Allocation.createTyped(RS, typeBuilder.create());
49 Allocation ALOD = Allocation.createTyped(RS, typeBuilder.create());
52 Allocation AFacesLOD = Allocation.createTyped(RS, typeBuilder.create());
59 RenderScript pRS = RenderScript.create(mCtx);
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A DUT_alloc.java40 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
46 Allocation AFaces = Allocation.createTyped(RS, typeBuilder.create());
49 Allocation ALOD = Allocation.createTyped(RS, typeBuilder.create());
52 Allocation AFacesLOD = Allocation.createTyped(RS, typeBuilder.create());
59 RenderScript pRS = RenderScript.create(mCtx);
H A DUT_static_globals.java32 RenderScript pRS = RenderScript.create(mCtx);
36 Allocation A = Allocation.createTyped(pRS, typeBuilder.setX(1).create());
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
H A DUT_alloc.java40 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
46 Allocation AFaces = Allocation.createTyped(RS, typeBuilder.create());
49 Allocation ALOD = Allocation.createTyped(RS, typeBuilder.create());
52 Allocation AFacesLOD = Allocation.createTyped(RS, typeBuilder.create());
59 RenderScript pRS = RenderScript.create(mCtx);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrame.java29 * output. You can also call {@link #create(FrameType, int[])} to obtain
107 return FrameValue.create(mBackingStore);
111 return FrameValues.create(mBackingStore);
115 return FrameBuffer1D.create(mBackingStore);
119 return FrameBuffer2D.create(mBackingStore);
123 return FrameImage2D.create(mBackingStore);
136 public static Frame create(FrameType type, int[] dimensions) { method in class:Frame
139 throw new IllegalStateException("Attempting to create new Frame outside of "
H A DFrameBuffer2D.java29 static FrameBuffer2D create(BackingStore backingStore) { method in class:FrameBuffer2D
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DLinearLayoutTest.java28 public ViewGroup create(Context context) { method in class:LinearLayoutTest
38 View v = create(context, VERTICAL_NAMES[i] + "-" + HORIZONTAL_NAMES[j], 20);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicYuvToRGB.java44 public static ScriptIntrinsicYuvToRGB create(RenderScript rs, Element e) { method in class:ScriptIntrinsicYuvToRGB
47 return ScriptIntrinsicYuvToRGBThunker.create(rs, e);
/frameworks/base/graphics/java/android/renderscript/
H A DProgramRaster.java90 rs.mProgramRaster_CULL_BACK = builder.create();
102 rs.mProgramRaster_CULL_FRONT = builder.create();
114 rs.mProgramRaster_CULL_NONE = builder.create();
155 public ProgramRaster create() { method in class:ProgramRaster.Builder
/frameworks/base/obex/javax/obex/
H A DObexTransport.java58 void create() throws IOException; method in interface:ObexTransport

Completed in 436 milliseconds

1234567891011>>