Searched defs:create (Results 126 - 150 of 299) sorted by relevance

1234567891011>>

/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicConvolve3x3.java53 public static ScriptIntrinsicConvolve3x3 create(RenderScript rs, Element e) { method in class:ScriptIntrinsicConvolve3x3
79 * Must match the element type supplied during create.
H A DScriptIntrinsicConvolve5x5.java55 public static ScriptIntrinsicConvolve5x5 create(RenderScript rs, Element e) { method in class:ScriptIntrinsicConvolve5x5
80 * Must match the element type supplied during create.
H A DScriptIntrinsicHistogram.java48 public static ScriptIntrinsicHistogram create(RenderScript rs, Element e) { method in class:ScriptIntrinsicHistogram
H A DScriptIntrinsicLUT.java49 public static ScriptIntrinsicLUT create(RenderScript rs, Element e) { method in class:ScriptIntrinsicLUT
/frameworks/support/core-utils/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/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/app/
H A DDialogFragmentUsage.java69 MenuDialogFragment fragment = MenuDialogFragment.create(R.layout.dialog_content);
74 MenuDialogFragment fragment = MenuDialogFragment.create(R.layout.dialog_content_buttons);
86 static MenuDialogFragment create(int contentView) { method in class:DialogFragmentUsage.MenuDialogFragment
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/app/
H A DDialogFragmentUsage.java69 MenuDialogFragment fragment = MenuDialogFragment.create(R.layout.dialog_content);
74 MenuDialogFragment fragment = MenuDialogFragment.create(R.layout.dialog_content_buttons);
86 static MenuDialogFragment create(int contentView) { method in class:DialogFragmentUsage.MenuDialogFragment
/frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
H A DColorFilterDimmer.java68 public static ColorFilterDimmer create(ColorFilterCache dimmer, method in class:ColorFilterDimmer
/frameworks/av/media/libmedia/
H A DIMediaPlayerService.cpp66 virtual sp<IMediaPlayer> create( function in class:android::BpMediaPlayerService
147 sp<IMediaPlayer> player = create(client, audioSessionId);
/frameworks/base/apct-tests/perftests/core/src/android/view/
H A DViewShowHidePerfTest.java61 abstract View create(Context context, int depth); method in class:ViewShowHidePerfTest.SubTreeFactory
97 public View create(Context context, int depth) {
105 public View create(Context context, int depth) {
135 mChild = subTreeFactory.create(getContext(), depth);
/frameworks/base/core/java/android/printservice/
H A DPrintServiceInfo.java125 public static PrintServiceInfo create(Context context, ResolveInfo resolveInfo) { method in class:PrintServiceInfo
/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/media/java/android/media/soundtrigger/
H A DSoundTriggerManager.java111 * @param soundModelId UUID of the sound model to create the receiver object for.
138 * factory constructor {@link Model#create()} to create an instance.
154 * Factory constructor to create a SoundModel instance for use with methods in this
157 public static Model create(UUID modelUuid, UUID vendorUuid, byte[] data) { method in class:SoundTriggerManager.Model
/frameworks/base/obex/javax/obex/
H A DClientSession.java332 public HeaderSet setPath(HeaderSet header, boolean backup, boolean create) throws IOException { argument
379 * The create bit is bit 1 so if we or with 2 the bit will be set.
381 if (!create) {
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DDirectStatementRetriever.java71 public static Result create(List<Statement> statements, Long expireMillis) { method in class:DirectStatementRetriever.Result
146 return Result.create(statements, DO_NOT_CACHE_RESULT);
154 return Result.create(statements, DO_NOT_CACHE_RESULT);
160 return Result.create(statements, DO_NOT_CACHE_RESULT);
172 return Result.create(statements, webContent.getExpireTimeMillis());
174 return Result.create(statements, DO_NOT_CACHE_RESULT);
194 AndroidAppAsset actualSource = AndroidAppAsset.create(asset.getPackageName(), certFps);
207 return Result.create(statements, DO_NOT_CACHE_RESULT);
210 return Result.create(Collections.<Statement>emptyList(), DO_NOT_CACHE_RESULT);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DExtensionController.java56 T create(Map<String, String> settings); method in interface:ExtensionController.TunerFactory
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DShortcutParser.java137 public static Shortcut create(Context context, String value) { method in class:ShortcutParser.Shortcut
/frameworks/base/rs/java/android/renderscript/
H A DFont.java35 * and point size. You can create multiple font objects to represent styles such as bold or italic text,
49 //These help us create a font by family name
166 throw new RSRuntimeException("Unable to create font from file " + path);
190 throw new RSRuntimeException("Unable to create font from asset " + path);
221 throw new RSRuntimeException("Unable to create font from resource " + id);
239 static public Font create(RenderScript rs, Resources res, String familyName, Style fontStyle, float pointSize) { method in class:Font
H A DProgramFragmentFixedFunction.java50 public ProgramFragmentFixedFunction create() { method in class:ProgramFragmentFixedFunction.InternalBuilder
291 public ProgramFragmentFixedFunction create() { method in class:ProgramFragmentFixedFunction.Builder
306 Type.Builder typeBuilder = new Type.Builder(mRS, b.create());
308 constType = typeBuilder.create();
315 ProgramFragmentFixedFunction pf = sb.create();
H A DProgramVertexFixedFunction.java24 * simple way to create a fixed function emulation vertex shader
76 public ProgramVertexFixedFunction create() { method in class:ProgramVertexFixedFunction.InternalBuilder
142 Type.Builder typeBuilder = new Type.Builder(rs, b.create());
144 return typeBuilder.create();
173 public ProgramVertexFixedFunction create() { method in class:ProgramVertexFixedFunction.Builder
185 sb.addInput(b.create());
187 return sb.create();
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiMhlControllerStub.java28 * It can be created only by {@link HdmiMhlControllerStub#create}.
38 // Private constructor. Use HdmiMhlControllerStub.create().
47 static HdmiMhlControllerStub create(HdmiControlService service) { method in class:HdmiMhlControllerStub
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DClassHasNativeVisitor.java17 package com.android.tools.layoutlib.create;
H A DReplaceMethodCallsAdapter.java17 package com.android.tools.layoutlib.create;
H A DTransformClassAdapter.java17 package com.android.tools.layoutlib.create;
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DPromoteClassClassAdapterTest.java17 package com.android.tools.layoutlib.create;
126 add("com.android.tools.layoutlib.create.PromoteClassClassAdapterTest$PrivateClass");
127 add("com.android.tools.layoutlib.create" +
134 "name=com/android/tools/layoutlib/create" +
136 "outerName=com/android/tools/layoutlib/create" +
145 "name=com/android/tools/layoutlib/create" +
147 "outerName=com/android/tools/layoutlib/create" +
160 add("com.android.tools.layoutlib.create.PackageProtectedClass");
166 "name=com/android/tools/layoutlib/create/PackageProtectedClass, signature=null, " +

Completed in 7550 milliseconds

1234567891011>>