HomeSort by relevance Sort by last modified time
    Searched refs:Space (Results 1 - 25 of 200) sorted by null

1 2 3 4 5 6 7 8

  /art/runtime/gc/space/
space-inl.h 20 #include "space.h"
29 namespace space { namespace in namespace:art::gc
31 inline ImageSpace* Space::AsImageSpace() {
36 inline MallocSpace* Space::AsMallocSpace() {
42 inline LargeObjectSpace* Space::AsLargeObjectSpace() {
47 inline ContinuousSpace* Space::AsContinuousSpace() {
52 inline DiscontinuousSpace* Space::AsDiscontinuousSpace() {
57 } // namespace space
space.cc 17 #include "space.h"
30 namespace space { namespace in namespace:art::gc
32 Space::Space(const std::string& name, GcRetentionPolicy gc_retention_policy)
35 void Space::Dump(std::ostream& os) const {
39 std::ostream& operator<<(std::ostream& os, const Space& space) {
40 space.Dump(os);
44 DlMallocSpace* Space::AsDlMallocSpace() {
49 RosAllocSpace* Space::AsRosAllocSpace()
    [all...]
space.h 40 namespace space { namespace in namespace:art::gc
57 // See Space::GetGcRetentionPolicy.
59 // Objects are retained forever with this policy for a space.
61 // Every GC cycle will attempt to collect objects in this space.
79 // A space contains memory allocated for managed objects.
80 class Space {
82 // Dump space. Also key method for C++ vtables.
85 // Name of the space. May vary, for example before/after the Zygote fork.
90 // The policy of when objects are collected associated with this space.
95 // Is the given object contained within this space
252 space::Space* const space; member in class:art::gc::space::AllocSpace::SweepCallbackContext::space
    [all...]
zygote_space.h 27 namespace space { namespace in namespace:art::gc
29 // A zygote space is a space which you cannot allocate into or free from.
93 friend class Space;
97 } // namespace space
  /external/gptfdisk/
gptcurses.h 46 { 'n', " New ", "Create new partition from free space" },
61 // A "Space" is a partition or an unallocated chunk of disk space, maintained
63 // partitions and unallocated chunks of space on the disk in the main
67 struct Space {
72 Space *nextSpace;
73 Space *prevSpace;
80 Space *firstSpace;
81 Space *lastSpace;
82 Space *currentSpace
    [all...]
gptcurses.cc 73 Space *trash;
85 // unpartitioned space on the disk.
89 Space *tempSpace;
94 tempSpace = new Space;
105 // Add a single empty Space to the current Spaces linked list and sort the result....
107 Space *tempSpace;
109 tempSpace = new Space;
122 Space *current;
149 // Remove the specified Space from the linked list and set its previous and
151 void GPTDataCurses::UnlinkSpace(Space *theSpace)
222 Space *space; local
    [all...]
  /frameworks/base/core/java/android/widget/
Space.java 25 * Space is a lightweight View subclass that may be used to create gaps between components
28 public final class Space extends View {
32 public Space(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
42 public Space(Context context, AttributeSet attrs, int defStyleAttr) {
49 public Space(Context context, AttributeSet attrs) {
56 public Space(Context context) {
  /packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
MessageHolder.java 24 import android.widget.Space;
30 public MessageHolder(Context context, Space space) {
31 super(context, space);
TransparentDividerDocumentHolder.java 22 import android.widget.Space;
36 super(context, new Space(context));
  /frameworks/support/legacy/core-ui/src/main/java/androidx/legacy/widget/
Space.java 29 * Space is a lightweight {@link View} subclass that may be used to create gaps between components
32 * @deprecated Use framework {@link android.widget.Space} class instead.
35 public class Space extends View {
38 * @deprecated Use framework {@link android.widget.Space} class instead.
41 public Space(@NonNull Context context, @Nullable AttributeSet attrs, int defStyle) {
49 * @deprecated Use framework {@link android.widget.Space} class instead.
52 public Space(@NonNull Context context, @Nullable AttributeSet attrs) {
57 * @deprecated Use framework {@link android.widget.Space} class instead.
60 public Space(@NonNull Context context) {
69 * @deprecated Use framework {@link android.widget.Space} class instead
    [all...]
  /external/ImageMagick/MagickWand/tests/
script-token-test-data.txt 27 'Space Character Escapes'
  /external/llvm/lib/MC/MCParser/
MCAsmLexer.cpp 16 CurTok.emplace_back(AsmToken::Space, StringRef());
  /art/runtime/gc/
verification.h 32 namespace space { namespace in namespace:art::gc
33 class Space;
34 } // namespace space
56 bool IsValidHeapObjectAddress(const void* addr, space::Space** out_space = nullptr) const
65 bool IsAddressInHeapSpace(const void* addr, space::Space** out_space = nullptr) const
verification.cc 67 space::Space* const space = heap_->FindSpaceFromAddress(addr); member in class:art::gc::space
68 if (space != nullptr) {
69 oss << " space=" << *space; local
119 bool Verification::IsAddressInHeapSpace(const void* addr, space::Space** out_space) const {
120 space::Space* const space = heap_->FindSpaceFromAddress(addr) member in class:art::gc::space
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/graph/
BottomLabelLayoutTest.java 24 import android.widget.Space;
38 private Space mSpace;
45 mSpace = new Space(RuntimeEnvironment.application);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdxmldom.h 27 WSDXML_NAMESPACE *Space;
34 WSDXML_NAMESPACE *Space;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
SlotIndexes.cpp 131 const unsigned Space = SlotIndex::InstrDist/2;
132 assert((Space & 3) == 0 && "InstrDist must be a multiple of 2*NUM");
138 curEntry->setIndex(index += Space);
  /frameworks/av/packages/MediaComponents/src/com/android/media/update/
ApiHelper.java 28 import android.support.v4.widget.Space;
99 } else if (Space.class.getCanonicalName().equals(name)) {
100 return new Space(context, attrs);
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestGridLayoutCodeLtr.java 29 import android.widget.Space;
120 Space c = new Space(context);
BiDiTestGridLayoutCodeRtl.java 29 import android.widget.Space;
120 Space c = new Space(context);
  /frameworks/support/leanback-preference/src/main/java/androidx/leanback/preference/
LeanbackSettingsFragment.java 29 import android.widget.Space;
202 final View v = new Space(inflater.getContext());
  /packages/apps/PackageInstaller/src/android/support/wearable/view/
AcceptDenyDialog.java 28 import android.widget.Space;
92 mSpacer = (Space) findViewById(R.id.spacer);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbKbDxe/
KeyBoard.h 49 CHAR16 Space;
  /frameworks/support/car/src/main/java/androidx/car/widget/
ActionBar.java 43 import android.widget.Space;
57 * (if the space allows) and on the additional space if the panel is expanded.
145 // Inflate space on the left
146 Space space = new Space(context); local
147 mRow.addView(space);
148 space.setLayoutParams(new LinearLayout.LayoutParams(0,
158 // Inflate space on the righ
    [all...]
  /external/llvm/lib/CodeGen/
SlotIndexes.cpp 124 const unsigned Space = SlotIndex::InstrDist/2;
125 static_assert((Space & 3) == 0, "InstrDist must be a multiple of 2*NUM");
130 curItr->setIndex(index += Space);

Completed in 799 milliseconds

1 2 3 4 5 6 7 8