Searched defs:Fragment (Results 1 - 6 of 6) sorted by relevance

/frameworks/compile/mclinker/lib/Fragment/
H A DFragment.cpp1 //===- Fragment.cpp -------------------------------------------------------===//
10 #include "mcld/Fragment/Fragment.h"
18 // Fragment
20 Fragment::Fragment() function in class:mcld::Fragment
24 Fragment::Fragment(Type pKind, SectionData* pParent) function in class:mcld::Fragment
30 Fragment::~Fragment() {
[all...]
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DFragment.h1 //===- Fragment.h ---------------------------------------------------------===//
24 /** \class Fragment
25 * \brief Fragment is the minimun linking unit of MCLinker.
27 class Fragment : public llvm::ilist_node_with_parent<Fragment, SectionData> { class in namespace:mcld
32 Fragment();
34 explicit Fragment(Type pKind, SectionData* pParent = NULL);
36 virtual ~Fragment();
51 static bool classof(const Fragment* O) { return true; }
54 assert(false && "Can not call abstract Fragment
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DANetworkSession.cpp105 struct Fragment { struct in struct:android::ANetworkSession::Session
119 List<Fragment> mOutFragments;
128 void dumpFragmentStats(const Fragment &frag);
513 void ANetworkSession::Session::dumpFragmentStats(const Fragment & /* frag */) {
546 const Fragment &frag = *mOutFragments.begin();
617 const Fragment &frag = *mOutFragments.begin();
754 Fragment frag;
/frameworks/base/core/java/android/app/
H A DFragment.java63 * A Fragment is a piece of an application's user interface or behavior
67 * {@link Fragment#getFragmentManager() Fragment.getFragmentManager()}.
69 * <p>The Fragment class can be used many ways to achieve a wide variety of
71 * that is running within a larger {@link Activity}. A Fragment is closely
73 * Fragment defines its own lifecycle, that lifecycle is dependent on its
77 * <p>All subclasses of Fragment must include a public no-argument constructor.
101 * While the Fragment API was introduced in
111 * <p>Though a Fragment's lifecycle is tied to its owning activity, it has
261 * {@link android.support.v4.app.Fragment} fo
265 public class Fragment implements ComponentCallbacks2, OnCreateContextMenuListener { class in inherits:ComponentCallbacks2,OnCreateContextMenuListener
494 public Fragment() { method in class:Fragment
[all...]
/frameworks/support/fragment/src/main/java/androidx/fragment/app/
H A DFragment.java71 * Static library support version of the framework's {@link android.app.Fragment}.
74 * to switch to the framework's implementation. See the framework {@link android.app.Fragment}
85 public class Fragment implements ComponentCallbacks, OnCreateContextMenuListener, LifecycleOwner, class in inherits:ComponentCallbacks,OnCreateContextMenuListener,LifecycleOwner,ViewModelStoreOwner
117 Fragment mTarget;
162 // ViewModelStore for storing ViewModels associated with this Fragment
165 // If this Fragment is contained in another Fragment, this is that container.
166 Fragment mParentFragment;
242 // Keep track of whether or not this Fragment has run performCreate(). Retained instance
261 * Get a {@link LifecycleOwner} that represents the {@link #getView() Fragment'
397 public Fragment() { method in class:Fragment
[all...]
H A DFragmentManager.java197 * {@link Fragment#postponeEnterTransition()} has been called.
213 public abstract Fragment findFragmentById(@IdRes int id);
224 public abstract Fragment findFragmentByTag(@Nullable String tag);
332 * @param fragment The Fragment whose reference is to be stored.
335 @NonNull Fragment fragment);
338 * Retrieve the current Fragment instance for a reference previously
339 * placed with {@link #putFragment(Bundle, String, Fragment)}.
343 * @return Returns the current Fragment instance that is associated with
347 public abstract Fragment getFragment(@NonNull Bundle bundle, @NonNull String key);
361 public abstract List<Fragment> getFragment
3798 public static final int[] Fragment = { field in class:FragmentManagerImpl.FragmentTag
[all...]

Completed in 87 milliseconds