Searched defs:create (Results 251 - 275 of 299) sorted by relevance

<<1112

/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java181 public static final AlertController create(Context context, DialogInterface di, Window window) { method in class:AlertController
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsHelper.java62 * onAttach() for Fragment), call create() in onCreate() and call destroy() in onDestroy().
270 public void create(BatteryStats stats) { method in class:BatteryStatsHelper
275 public void create(Bundle icicle) { method in class:BatteryStatsHelper
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
H A DGlobalActionsDialog.java747 return action.create(mContext, convertView, parent, LayoutInflater.from(mContext));
767 View create(Context context, View convertView, ViewGroup parent, LayoutInflater inflater); method in interface:GlobalActionsDialog.Action
835 public View create( method in class:GlobalActionsDialog.SinglePressAction
929 public View create(Context context, View convertView, ViewGroup parent, method in class:GlobalActionsDialog.ToggleAction
1050 public View create(Context context, View convertView, ViewGroup parent, method in class:GlobalActionsDialog.SilentModeTriStateAction
1202 mAlert = AlertController.create(mContext, this, getWindow());
/frameworks/base/rs/java/android/renderscript/
H A DElement.java1196 throw new RSIllegalArgumentException("Cannot create vector of " +
1380 public Element create() { method in class:Element.Builder
/frameworks/base/services/core/java/com/android/server/
H A DLockSettingsStorage.java107 static CredentialHash create(byte[] hash, int type) { method in class:LockSettingsStorage.CredentialHash
H A DNetworkScoreService.java345 // If we're not connected at all then create a new connection.
410 FilteringCacheUpdatingConsumer.create(mContext, entry.getValue(),
438 static FilteringCacheUpdatingConsumer create(Context context, method in class:NetworkScoreService.FilteringCacheUpdatingConsumer
H A DSyntheticPasswordManager.java144 protected static AuthenticationToken create() { method in class:SyntheticPasswordManager.AuthenticationToken
168 public static PasswordData create(int passwordType) { method in class:SyntheticPasswordManager.PasswordData
251 AuthenticationToken result = AuthenticationToken.create();
278 Log.e(TAG, "Fail to create new SID for user " + userId);
346 PasswordData pwd = PasswordData.create(credentialType);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecLocalDevice.java164 static HdmiCecLocalDevice create(HdmiControlService service, int deviceType) { method in class:HdmiCecLocalDevice
/frameworks/base/services/core/java/com/android/server/policy/
H A DLegacyGlobalActions.java750 return action.create(mContext, convertView, parent, LayoutInflater.from(mContext));
770 View create(Context context, View convertView, ViewGroup parent, LayoutInflater inflater); method in interface:LegacyGlobalActions.Action
838 public View create( method in class:LegacyGlobalActions.SinglePressAction
932 public View create(Context context, View convertView, ViewGroup parent, method in class:LegacyGlobalActions.ToggleAction
1053 public View create(Context context, View convertView, ViewGroup parent, method in class:LegacyGlobalActions.SilentModeTriStateAction
1205 mAlert = AlertController.create(mContext, this, getWindow());
/frameworks/base/services/core/java/com/android/server/vr/
H A DVrManagerService.java453 int i=mVrStateRemoteCallbacks.beginBroadcast(); // create the broadcast item array
929 mCurrentVrService = VrManagerService.create(mContext, component, userId);
966 private static ManagedApplicationService create(@NonNull Context context, method in class:VrManagerService
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java17 package com.android.tools.layoutlib.create;
H A DDependencyFinder.java17 package com.android.tools.layoutlib.create;
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DViewDataBinding.java84 public WeakListener create(ViewDataBinding viewDataBinding, int localFieldId) {
94 public WeakListener create(ViewDataBinding viewDataBinding, int localFieldId) {
104 public WeakListener create(ViewDataBinding viewDataBinding, int localFieldId) {
536 listener = listenerCreator.create(this, localFieldId);
1320 WeakListener create(ViewDataBinding viewDataBinding, int localFieldId); method in interface:ViewDataBinding.CreateWeakListener
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCameraAgentImpl.java99 return AndroidCameraDeviceInfo.create();
143 public static AndroidCameraDeviceInfo create() { method in class:AndroidCameraAgentImpl.AndroidCameraDeviceInfo
376 AndroidCameraDeviceInfo.create().getCharacteristics(cameraId);
/frameworks/rs/cpu_ref/
H A DrsCpuCore.cpp47 RsdCpuReference * RsdCpuReference::create(Context *rsc, uint32_t version_major, function in class:android::renderscript::RsdCpuReference
/frameworks/rs/
H A DrsFont.cpp295 Font * Font::create(Context *rsc, const char *name, float fontSize, uint32_t dpi, function in class:android::renderscript::Font
513 ObjectBaseRef<const Element> constInput = Element::create(mRSC, 2, ebe1, ebn1);
609 ObjectBaseRef<const Element> vertexDataElem = Element::create(mRSC, 2, ebe1, ebn1);
761 mDefault.set(Font::create(mRSC, fullPath, 8, mRSC->getDPI()));
860 Font *newFont = Font::create(rsc, name, fontSize, dpi);
871 Font *newFont = Font::create(rsc, name, fontSize, dpi, data, data_length);
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DElement.java818 throw new RSIllegalArgumentException("Cannot create vector of " +
1001 public Element create() { method in class:Element.Builder
H A DScriptGroup.java370 mArgIndex.add(Pair.create(closure, Integer.valueOf(index)));
374 mFieldID.add(Pair.create(closure, fieldID));
543 //create allocation here
611 * Once all connections are made, a call to {@link #create} will
880 public ScriptGroup create() { method in class:ScriptGroup.Builder
1023 * A script group is created by a call to the {@link #create} method, which
1145 public ScriptGroup create(String name, Future... outputs) { method in class:ScriptGroup.Builder2
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DViewDragHelper.java342 * Factory method to create a new ViewDragHelper.
348 public static ViewDragHelper create(ViewGroup forParent, Callback cb) { method in class:ViewDragHelper
353 * Factory method to create a new ViewDragHelper.
361 public static ViewDragHelper create(ViewGroup forParent, float sensitivity, Callback cb) { method in class:ViewDragHelper
362 final ViewDragHelper helper = create(forParent, cb);
368 * Apps should use ViewDragHelper.create() to get a new instance.
/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp74 int (* create)(preproc_effect_t *fx); member in struct:preproc_ops_s
712 status = effect->ops->create(effect);
1014 ALOGW("Session_SetConfig Cannot create speex resampler: %s",
1024 ALOGW("Session_SetConfig Cannot create speex resampler: %s",
1036 ALOGW("Session_SetConfig Cannot create speex resampler: %s",
/frameworks/base/core/java/android/app/
H A DDialog.java276 public void create() { method in class:Dialog
505 * or {@link #create()}).
/frameworks/base/core/java/android/content/
H A DIntentFilter.java81 * <p>For information about how to create and resolve intents, read the
389 public static IntentFilter create(String action, String dataType) { method in class:IntentFilter
/frameworks/base/core/java/android/view/
H A DRenderNode.java100 * mDisplayList = DisplayList.create("MyDisplayList");
178 public static RenderNode create(String name, @Nullable View owningView) { method in class:RenderNode
H A DThreadedRenderer.java263 public static ThreadedRenderer create(Context context, boolean translucent, String name) { method in class:ThreadedRenderer
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
H A DMLand.java351 addPlayerInternal(Player.create(this));
357 addPlayerInternal(Player.create(this));
1042 public static Player create(MLand land) { method in class:MLand.Player

Completed in 447 milliseconds

<<1112