HomeSort by relevance Sort by last modified time
    Searched defs:Fragment (Results 1 - 25 of 65) sorted by null

1 2 3

  /frameworks/compile/mclinker/lib/Fragment/
Fragment.cpp 1 //===- Fragment.cpp -------------------------------------------------------===//
10 #include "mcld/Fragment/Fragment.h"
18 // Fragment
20 Fragment::Fragment()
24 Fragment::Fragment(Type pKind, SectionData* pParent)
30 Fragment::~Fragment() {
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
FragmentTest.java 19 import android.app.Fragment;
24 public static class TestFragment extends Fragment {
35 assertNotNull(Fragment.instantiate(getContext(), TestFragment.class.getName()));
40 Fragment.instantiate(getContext(), TestNotFragment.class.getName());
  /frameworks/compile/mclinker/include/mcld/Fragment/
Fragment.h 1 //===- Fragment.h ---------------------------------------------------------===//
24 /** \class Fragment
25 * \brief Fragment is the minimun linking unit of MCLinker.
27 class Fragment : public llvm::ilist_node<Fragment> {
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::size()!")
    [all...]
  /external/deqp/framework/referencerenderer/
rrFragmentOperations.hpp 23 * \brief Reference implementation for per-fragment operations.
46 struct Fragment
54 Fragment (const tcu::IVec2& pixelCoord_, const GenericVec4& value_, deUint32 coverage_, const float* sampleDepths_)
63 Fragment (const tcu::IVec2& pixelCoord_, const GenericVec4& value_, const GenericVec4& value1_, deUint32 coverage_, const float* sampleDepths_)
72 Fragment (void)
90 * \brief Reference fragment renderer.
104 const Fragment* fragments,
134 void executeScissorTest (int fragNdxOffset, int numSamplesPerFragment, const Fragment* inputFragments, const WindowRectangle& scissorRect);
135 void executeStencilCompare (int fragNdxOffset, int numSamplesPerFragment, const Fragment* inputFragments, const StencilState& stencilState, int numStencilBits, const tcu::ConstPixelBufferAccess& stencilBuffer);
136 void executeStencilSFail (int fragNdxOffset, int numSamplesPerFragment, const Fragment* inputFragments, const StencilState& stencilState, int numStencilBits, const tcu::PixelBufferAcces (…)
    [all...]
  /external/llvm/lib/MC/
WinCOFFStreamer.cpp 236 MCFillFragment *Fragment =
238 SD.setFragment(Fragment);
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
Shader.java 78 * Control fragment rasterization. (e.g color of pixel).
80 Fragment,
  /external/llvm/lib/Transforms/IPO/
LowerBitSets.cpp 127 // Create a new fragment to hold the layout for F.
129 std::vector<uint64_t> &Fragment = Fragments.back();
136 // fragment.
137 Fragment.push_back(ObjIndex);
139 // This index belongs to an existing fragment. Copy the elements of the
140 // old fragment into this one and clear the old fragment. We don't update
141 // the fragment map just yet, this ensures that any further references to
142 // indices from the old fragment in this fragment do not insert any mor
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp     [all...]
  /frameworks/av/media/libstagefright/foundation/
ANetworkSession.cpp 116 struct Fragment {
130 List<Fragment> mOutFragments;
139 void dumpFragmentStats(const Fragment &frag);
524 void ANetworkSession::Session::dumpFragmentStats(const Fragment & /* frag */) {
557 const Fragment &frag = *mOutFragments.begin();
628 const Fragment &frag = *mOutFragments.begin();
765 Fragment frag;
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 69 /// Parent - The data for the section this fragment is in.
72 /// Atom - The atom this fragment is in, as represented by it's defining
81 /// Offset - The offset of this fragment in its section. This is ~0 until
85 /// LayoutOrder - The layout order of this fragment.
109 /// \brief Does this fragment have instructions emitted into it? By default
110 /// this is false, but specific fragment types may set it to true.
113 /// \brief Should this fragment be placed at the end of an aligned bundle?
117 /// \brief Get the padding size that must be inserted before this fragment.
120 /// to reduce the amount of space used for each fragment. In practice, larger
126 /// \brief Set the padding size for this fragment. By default it's a no-op
    [all...]
  /frameworks/base/core/java/android/app/
Fragment.java 69 Fragment mInstance;
71 public FragmentState(Fragment frag) {
96 public Fragment instantiate(FragmentHostCallback host, Fragment parent) {
106 mInstance = Fragment.instantiate(context, mClassName, mArguments);
122 "Instantiated fragment " + mInstance);
157 * A Fragment is a piece of an application's user interface or behavior
161 * {@link Fragment#getFragmentManager() Fragment.getFragmentManager()}.
163 * <p>The Fragment class can be used many ways to achieve a wide variety o
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
Fragment.java 65 Fragment mInstance;
67 public FragmentState(Fragment frag) {
92 public Fragment instantiate(FragmentHostCallback host, Fragment parent) {
102 mInstance = Fragment.instantiate(context, mClassName, mArguments);
119 "Instantiated fragment " + mInstance);
154 * Static library support version of the framework's {@link android.app.Fragment}.
157 * to switch to the framework's implementation. See the framework {@link android.app.Fragment}
168 public class Fragment implements ComponentCallbacks, OnCreateContextMenuListener {
183 // Non-null if the fragment's view hierarchy is currently animating away
    [all...]
FragmentManager.java 72 * Representation of an entry on the fragment back stack, as created
138 * <p>Note: A fragment transaction can only be created/committed prior
170 * Finds a fragment that was identified by the given id either when inflated
173 * activity; if no such fragment is found, then all fragments currently
175 * @return The fragment if found or null otherwise.
177 public abstract Fragment findFragmentById(@IdRes int id);
180 * Finds a fragment that was identified by the given tag either when inflated
183 * activity; if no such fragment is found, then all fragments currently
185 * @return The fragment if found or null otherwise.
187 public abstract Fragment findFragmentByTag(String tag)
1100 final Fragment fragment = f; local
2214 Fragment fragment = id != View.NO_ID ? findFragmentById(id) : null; local
    [all...]
  /development/samples/training/basic/ActivityLifecycle/libs/
android-support-v13.jar 
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/app/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/lib2/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests2/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests2/lib2/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests3/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/javaProjectTest/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/javaProjectTest/lib2/libs/
android-support-v4.jar 
  /sdk/testapps/libsAndJarTest/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/libsAndJarTest/lib2/libs/
android-support-v4.jar 

Completed in 384 milliseconds

1 2 3