Searched defs:instantiate (Results 1 - 19 of 19) sorted by relevance

/frameworks/av/services/mediadrm/
H A DMediaDrmService.cpp32 void MediaDrmService::instantiate() { function in class:android::MediaDrmService
/frameworks/base/core/java/android/app/
H A DFragmentContainer.java48 * {@link Fragment#instantiate(Context, String, Bundle)}.
52 public Fragment instantiate(Context context, String className, Bundle arguments) { method in class:FragmentContainer
53 return Fragment.instantiate(context, className, arguments);
H A DFragmentState.java68 public Fragment instantiate(FragmentHostCallback host, FragmentContainer container, method in class:FragmentState
77 mInstance = container.instantiate(context, mClassName, mArguments);
79 mInstance = Fragment.instantiate(context, mClassName, mArguments);
H A DBackStackRecord.java94 public BackStackRecord instantiate(FragmentManagerImpl fm) { method in class:BackStackState
H A DFragment.java78 * The framework will often re-instantiate a fragment class when needed,
80 * constructor to instantiate it. If the no-argument constructor is not
337 // This state is set by FragmentState.instantiate and cleared in onCreate.
467 * Thrown by {@link Fragment#instantiate(Context, String, Bundle)} when
498 * Like {@link #instantiate(Context, String, Bundle)} but with a null
501 public static Fragment instantiate(Context context, String fname) { method in class:Fragment
502 return instantiate(context, fname, null);
509 * @param context The calling context being used to instantiate the fragment.
511 * @param fname The class name of the fragment to instantiate.
519 public static Fragment instantiate(Contex method in class:Fragment
[all...]
/frameworks/layoutlib/bridge/src/android/app/
H A DFragment_Delegate.java41 * Sets the current {@link LayoutlibCallback} to be used to instantiate classes coming
49 * Like {@link #instantiate(Context, String, Bundle)} but with a null
53 /*package*/ static Fragment instantiate(Context context, String fname) { method in class:Fragment_Delegate
54 return instantiate(context, fname, null);
61 * @param context The calling context being used to instantiate the fragment.
63 * @param fname The class name of the fragment to instantiate.
72 /*package*/ static Fragment instantiate(Context context, String fname, Bundle args) { method in class:Fragment_Delegate
87 throw new Fragment.InstantiationException("Unable to instantiate fragment " + fname
91 throw new Fragment.InstantiationException("Unable to instantiate fragment " + fname
95 throw new Fragment.InstantiationException("Unable to instantiate fragmen
[all...]
/frameworks/native/include/binder/
H A DBinderService.h51 static void instantiate() { publish(); } function in class:android::BinderService
/frameworks/native/libs/binder/include/binder/
H A DBinderService.h51 static void instantiate() { publish(); } function in class:android::BinderService
/frameworks/support/fragment/src/main/java/androidx/fragment/app/
H A DFragmentContainer.java47 * {@link Fragment#instantiate(Context, String, Bundle)}.
49 public Fragment instantiate(Context context, String className, Bundle arguments) { method in class:FragmentContainer
50 return Fragment.instantiate(context, className, arguments);
H A DFragmentState.java70 public Fragment instantiate(FragmentHostCallback host, FragmentContainer container, method in class:FragmentState
80 mInstance = container.instantiate(context, mClassName, mArguments);
82 mInstance = Fragment.instantiate(context, mClassName, mArguments);
H A DBackStackRecord.java94 public BackStackRecord instantiate(FragmentManagerImpl fm) { method in class:BackStackState
H A DFragment.java159 // This state is set by FragmentState.instantiate and cleared in onCreate.
372 * Thrown by {@link Fragment#instantiate(Context, String, Bundle)} when
401 * Like {@link #instantiate(Context, String, Bundle)} but with a null
404 public static Fragment instantiate(Context context, String fname) { method in class:Fragment
405 return instantiate(context, fname, null);
412 * @param context The calling context being used to instantiate the fragment.
414 * @param fname The class name of the fragment to instantiate.
422 public static Fragment instantiate(Context context, String fname, @Nullable Bundle args) { method in class:Fragment
437 throw new InstantiationException("Unable to instantiate fragment " + fname
441 throw new InstantiationException("Unable to instantiate fragmen
[all...]
/frameworks/base/drm/java/android/drm/
H A DDrmRights.java26 * A caller can instantiate a {@link DrmRights} object by first invoking the
31 * A caller can also instantiate a {@link DrmRights} object by using the
55 instantiate(file, mimeType);
94 instantiate(rightsFile, mimeType);
97 private void instantiate(File rightsFile, String mimeType) { method in class:DrmRights
/frameworks/base/libs/common_time/
H A Dcommon_clock_service.cpp26 sp<CommonClockService> CommonClockService::instantiate( function in class:android::CommonClockService
H A Dcommon_time_config_service.cpp24 sp<CommonTimeConfigService> CommonTimeConfigService::instantiate( function in class:android::CommonTimeConfigService
/frameworks/av/services/mediaanalytics/
H A DMediaAnalyticsService.cpp91 void MediaAnalyticsService::instantiate() { function in class:android::MediaAnalyticsService
/frameworks/base/packages/SystemUI/src/com/android/systemui/fragments/
H A DFragmentHostManager.java221 public Fragment instantiate(Context context, String className, Bundle arguments) { method in class:FragmentHostManager.HostCallbacks
222 return mPlugins.instantiate(context, className, arguments);
276 .replace(id, instantiate(context, currentClass, null), tag)
288 Fragment instantiate(Context context, String className, Bundle arguments) { method in class:FragmentHostManager.ExtensionFragmentManager
291 Fragment f = Fragment.instantiate(extensionContext, className, arguments);
297 return Fragment.instantiate(context, className, arguments);
/frameworks/av/drm/drmserver/
H A DDrmManagerService.cpp98 void DrmManagerService::instantiate() { function in class:DrmManagerService
99 ALOGV("instantiate");
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp269 void MediaPlayerService::instantiate() { function in class:android::MediaPlayerService

Completed in 325 milliseconds