Searched refs:Space (Results 1 - 15 of 15) sorted by relevance

/frameworks/compile/mclinker/lib/Support/
H A DSpace.cpp1 //===- Space.cpp ----------------------------------------------------------===//
9 #include <mcld/Support/Space.h>
41 inline static Space::Type policy(off_t pOffset, size_t pLength)
44 return Space::ALLOCATED_ARRAY;
48 return Space::ALLOCATED_ARRAY;
50 return Space::MMAPED;
54 // Space
56 Space::Space() function in class:Space
61 Space function in class:Space
[all...]
H A DMemoryArea.cpp10 #include <mcld/Support/Space.h>
23 MemoryArea::MemoryArea(Space& pUniverse)
56 Space* space = find(pOffset, pLength);
60 // if m_pFileHandle is NULL, clients delegate us an universal Space and
65 space = Space::Create(*m_pFileHandle, pOffset, pLength);
83 Space *space = pRegion->parent();
89 // if m_pFileHandle is NULL, clients delegate us an universal Space and
91 // Space.
94 Space::Sync(space, *m_pFileHandle);
106 Space
[all...]
H A DRegionFactory.cpp10 #include <mcld/Support/Space.h>
H A DMemoryAreaFactory.cpp12 #include <mcld/Support/Space.h>
83 Space* space = Space::Create(pMemBuffer, pSize);
H A DAndroid.mk18 Space.cpp \
H A DMemoryRegion.cpp38 MemoryRegion* MemoryRegion::Create(void* pStart, size_t pSize, Space& pSpace)
/frameworks/compile/mclinker/include/mcld/Support/
H A DSpace.h1 //===- Space.h ------------------------------------------------------------===//
22 /** \class Space
23 * \brief Space contains a chunk of memory space that does not overlap with
24 * the other Space.
27 class Space class in namespace:mcld
42 Space();
44 ~Space();
46 Space(Type pType, void* pMemBuffer, size_t pSize);
76 /// Create - Create a Space from external memory
77 static Space* Creat
[all...]
H A DMemoryRegion.h18 #include <mcld/Support/Space.h>
44 typedef Space::Address Address;
45 typedef Space::ConstAddress ConstAddress;
54 void setParent(Space& pSpace) { m_pParent = &pSpace; }
69 /// If a wrapped memory comes from a Space, then we say the space is the
74 /// The wrapped memory will be deallocated by Space when the space has no
80 static MemoryRegion* Create(void* pStart, size_t pSize, Space& pSpace);
89 const Space* parent() const { return m_pParent; }
90 Space* parent() { return m_pParent; }
109 Space* m_pParen
[all...]
H A DMemoryArea.h27 class Space;
60 explicit MemoryArea(Space& pUniverse);
84 Space* find(size_t pOffset, size_t pLength);
86 const Space* find(size_t pOffset, size_t pLength) const;
113 typedef std::multimap<Key, Space*, Key::Compare> SpaceMapType;
/frameworks/base/core/java/android/widget/
H A DSpace.java26 * Space is a lightweight View subclass that may be used to create gaps between components
29 public final class Space extends View { class in inherits:View
33 public Space(Context context, AttributeSet attrs, int defStyle) { method in class:Space
43 public Space(Context context, AttributeSet attrs) { method in class:Space
50 public Space(Context context) { method in class:Space
H A DGridLayout.java83 * <h4>Space</h4>
85 * Space between children may be specified either by using instances of the
86 * dedicated {@link Space} view or by setting the
102 * <h4>Excess Space Distribution</h4>
647 if (c.getClass() == Space.class) {
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DSpace.java26 * Space is a lightweight View subclass that may be used to create gaps between components
29 public final class Space extends View { class in inherits:View
33 public Space(Context context, AttributeSet attrs, int defStyle) { method in class:Space
43 public Space(Context context, AttributeSet attrs) { method in class:Space
50 public Space(Context context) { method in class:Space
H A DGridLayout.java84 * <h4>Space</h4>
86 * Space between children may be specified either by using instances of the
87 * dedicated {@link android.support.v7.widget.Space} view or by setting the
103 * <h4>Excess Space Distribution</h4>
643 if (c.getClass() == android.support.v7.widget.Space.class) {
/frameworks/base/tests/BiDiTests/src/com/android/bidi/
H A DBiDiTestGridLayoutCodeLtr.java106 Space c = new Space(context);
H A DBiDiTestGridLayoutCodeRtl.java106 Space c = new Space(context);

Completed in 261 milliseconds