Searched defs:create (Results 101 - 125 of 264) sorted by relevance

1234567891011

/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DWebAsset.java120 protected static WebAsset create(JSONObject asset) method in class:WebAsset
/frameworks/base/rs/java/android/renderscript/
H A DProgramRaster.java87 rs.mProgramRaster_CULL_BACK = builder.create();
99 rs.mProgramRaster_CULL_FRONT = builder.create();
111 rs.mProgramRaster_CULL_NONE = builder.create();
152 public ProgramRaster create() { method in class:ProgramRaster.Builder
H A DScriptIntrinsicColorMatrix.java63 public static ScriptIntrinsicColorMatrix create(RenderScript rs, Element e) { method in class:ScriptIntrinsicColorMatrix
64 return create(rs);
75 public static ScriptIntrinsicColorMatrix create(RenderScript rs) { method in class:ScriptIntrinsicColorMatrix
H A DScriptIntrinsicHistogram.java44 public static ScriptIntrinsicHistogram create(RenderScript rs, Element e) { method in class:ScriptIntrinsicHistogram
H A DScriptIntrinsicLUT.java53 public static ScriptIntrinsicLUT create(RenderScript rs, Element e) { method in class:ScriptIntrinsicLUT
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DDevicePowerStatusAction.java45 static DevicePowerStatusAction create(HdmiCecLocalDevice source, method in class:DevicePowerStatusAction
H A DOneTouchPlayAction.java58 static OneTouchPlayAction create(HdmiCecLocalDevicePlayback source, method in class:OneTouchPlayAction
87 // Because only playback device can create this action, it's safe to cast.
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameImage2D.java103 static FrameImage2D create(BackingStore backingStore) { method in class:FrameImage2D
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DAlignmentTest.java50 View create(String name, int size); method in interface:AlignmentTest.ViewFactory
54 public View create(String name, int size) {
68 public View create(String name, int size) {
77 public View create(String name, int size) {
87 public static ViewGroup create(Context context1) { method in class:AlignmentTest
99 container.addView(factory.create(name, 20), layoutParams);
124 setContentView(create(getBaseContext()));
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DLruCache.java36 * override {@link #create}. This simplifies the calling code, allowing it to
111 * created by {@code #create}. If a value was returned, it is moved to the
131 * Attempt to create a value. This may take a long time, and the map
132 * may be different when create() returns. If a conflicting value was
133 * added to the map while create() was working, we leave that value in
137 V createdValue = create(key);
292 protected V create(K key) { method in class:LruCache
357 * Returns the number of times {@link #create(Object)} returned a value.
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DCreateInfo.java17 package com.android.tools.layoutlib.create;
H A DDelegateClassAdapter.java17 package com.android.tools.layoutlib.create;
H A DRefactorClassAdapter.java17 package com.android.tools.layoutlib.create;
/frameworks/compile/mclinker/lib/Script/
H A DRpnExpr.cpp54 RpnExpr* RpnExpr::create() { function in class:mcld::RpnExpr
81 RpnExpr* expr = RpnExpr::create();
82 expr->push_back(SectDescOperand::create(*pIter));
83 expr->push_back(&Operator::create<Operator::ADDR>());
84 expr->push_back(SectDescOperand::create(*pIter));
85 expr->push_back(&Operator::create<Operator::SIZEOF>());
86 expr->push_back(&Operator::create<Operator::ADD>());
92 RpnExpr* expr = RpnExpr::create();
93 expr->push_back(FragOperand::create(pFrag));
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMException.cpp52 std::unique_ptr<ARMExData> ARMExData::create(Module& pModule) { function in class:mcld::ARMExData
57 exData->addInputMap(input, ARMInputExMap::create(*input));
62 std::unique_ptr<ARMInputExMap> ARMInputExMap::create(Input& pInput) { function in class:mcld::ARMInputExMap
/frameworks/native/opengl/libs/EGL/
H A Degl_tls.cpp63 static void create() { function in struct:android::TlsKeyInitializer
67 pthread_once(&sOnceKey, TlsKeyInitializer::create);
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMnsObexServer.java124 final boolean backup, final boolean create) {
123 onSetPath(final HeaderSet request, HeaderSet reply, final boolean backup, final boolean create) argument
/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/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/v8/renderscript/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/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/core/java/android/printservice/
H A DPrintServiceInfo.java117 public static PrintServiceInfo create(ResolveInfo resolveInfo, Context context) { method in class:PrintServiceInfo

Completed in 465 milliseconds

1234567891011