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

1 2 3 4 5 6

  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
Space.java 23 * @deprecated Use {@link android.support.v4.widget.Space} instead.
26 public final class Space extends android.support.v4.widget.Space {
28 public Space(Context context) {
32 public Space(Context context, AttributeSet attrs) {
36 public Space(Context context, AttributeSet attrs, int defStyle) {
  /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"
27 namespace space { namespace in namespace:art::gc
29 Space::Space(const std::string& name, GcRetentionPolicy gc_retention_policy)
32 void Space::Dump(std::ostream& os) const {
36 std::ostream& operator<<(std::ostream& os, const Space& space) {
37 space.Dump(os);
41 DlMallocSpace* Space::AsDlMallocSpace() {
46 RosAllocSpace* Space::AsRosAllocSpace()
    [all...]
space.h 41 namespace space { namespace in namespace:art::gc
58 // See Space::GetGcRetentionPolicy.
60 // Objects are retained forever with this policy for a space.
62 // Every GC cycle will attempt to collect objects in this space.
80 // A space contains memory allocated for managed objects.
81 class Space {
83 // Dump space. Also key method for C++ vtables.
86 // Name of the space. May vary, for example before/after the Zygote fork.
91 // The policy of when objects are collected associated with this space.
96 // Is the given object contained within this space
253 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 // An zygote space is a space which you cannot allocate into or free from.
93 friend class Space;
97 } // namespace space
image_space.h 22 #include "space.h"
29 namespace space { namespace in namespace:art::gc
31 // An image space is a space backed with a memory mapped image.
38 // Create a boot image space from an image file for a specified instruction
43 // creation of the alloc space. The ReleaseOatFile will later be
52 // Try to open an existing app image space.
174 friend class Space;
187 // reserve space contiguous to the image. It is later released to
201 } // namespace space
    [all...]
  /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) {
  /frameworks/support/core-ui/java/android/support/v4/widget/
Space.java 25 * Space is a lightweight {@link View} subclass that may be used to create gaps between components
28 public class Space extends View {
30 public Space(Context context, AttributeSet attrs, int defStyle) {
37 public Space(Context context, AttributeSet attrs) {
41 public Space(Context context) {
  /external/ImageMagick/MagickWand/tests/
script-token-test-data.txt 27 'Space Character Escapes'
  /system/core/libbacktrace/
BacktraceOffline.h 30 struct Space {
35 Space() {
99 Space eh_frame_hdr_space_;
100 Space eh_frame_space_;
101 Space stack_space_;
  /external/skia/src/core/
SkLinearBitmapPipeline.h 39 "Size Variant: %d, Space: %d", sizeof(Variant), sizeof(fSpace));
49 struct SK_STRUCT_ALIGN(16) Space {
50 char space[kSize]; variable
52 mutable Space fSpace;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdxmldom.h 37 WSDXML_NAMESPACE *Space;
65 WSDXML_NAMESPACE *Space;
  /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);
  /prebuilts/go/darwin-x86/src/encoding/json/
example_test.go 180 Space string
181 Point json.RawMessage // delay parsing until we know the color space
195 {"Space": "YCbCr", "Point": {"Y": 255, "Cb": 0, "Cr": -10}},
196 {"Space": "RGB", "Point": {"R": 98, "G": 218, "B": 255}}
206 switch c.Space {
216 fmt.Println(c.Space, dst)
  /prebuilts/go/linux-x86/src/encoding/json/
example_test.go 180 Space string
181 Point json.RawMessage // delay parsing until we know the color space
195 {"Space": "YCbCr", "Point": {"Y": 255, "Cb": 0, "Cr": -10}},
196 {"Space": "RGB", "Point": {"R": 98, "G": 218, "B": 255}}
206 switch c.Space {
216 fmt.Println(c.Space, dst)
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
SectionBreakDocumentsAdapterWrapper.java 25 import android.widget.Space;
230 super(context, new Space(context));
  /frameworks/support/v17/preference-leanback/src/android/support/v17/preference/
LeanbackSettingsFragment.java 34 import android.widget.Space;
193 final View v = new Space(inflater.getContext());
  /external/v8/test/mjsunit/
whitespaces.js 10 0x0020, // Space SP
11 0x00A0, // No-break space NBSP
21 0x1680, // Ogham Space Mark
25 0x2002, // EN SPACE
26 0x2003, // EM SPACE
27 0x2004, // THREE-PER-EM SPACE
28 0x2005, // FOUR-PER-EM SPACE
29 0x2006, // SIX-PER-EM SPACE
30 0x2007, // FIGURE SPACE
31 0x2008, // PUNCTUATION SPACE
    [all...]
  /external/llvm/lib/CodeGen/
SlotIndexes.cpp 129 const unsigned Space = SlotIndex::InstrDist/2;
130 static_assert((Space & 3) == 0, "InstrDist must be a multiple of 2*NUM");
135 curItr->setIndex(index += Space);
  /prebuilts/go/darwin-x86/src/encoding/xml/
xml.go 39 // with a name space identifier (Space).
40 // In tokens returned by Decoder.Token, the Space identifier
44 Space, Local string
155 // In particular it does not reject name space tags using undefined prefixes.
156 // Such tags are recorded with the unknown prefix as the name space URL.
182 // DefaultSpace sets the default name space used for unadorned tags,
235 // Name structures contained in the Token has the Space
236 // set to the URL identifying its name space when known.
237 // If Token encounters an unrecognized name space prefix
834 func (d *Decoder) space() { func
    [all...]
  /prebuilts/go/linux-x86/src/encoding/xml/
xml.go 39 // with a name space identifier (Space).
40 // In tokens returned by Decoder.Token, the Space identifier
44 Space, Local string
155 // In particular it does not reject name space tags using undefined prefixes.
156 // Such tags are recorded with the unknown prefix as the name space URL.
182 // DefaultSpace sets the default name space used for unadorned tags,
235 // Name structures contained in the Token has the Space
236 // set to the URL identifying its name space when known.
237 // If Token encounters an unrecognized name space prefix
834 func (d *Decoder) space() { func
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QuickQSPanel.java 25 import android.widget.Space;
178 addView(new Space(mContext), getChildCount(), generateSpaceParams());

Completed in 575 milliseconds

1 2 3 4 5 6