Home
last modified time | relevance | path

Searched refs:space (Results 1 – 25 of 137) sorted by relevance

123456

/frameworks/compile/mclinker/lib/Support/
DMemoryArea.cpp56 Space* space = find(pOffset, pLength); in request() local
57 if (NULL == space) { in request()
65 space = Space::Create(*m_pFileHandle, pOffset, pLength); in request()
66 m_SpaceMap.insert(std::make_pair(Key(space->start(), space->size()), space)); in request()
70 off_t distance = pOffset - space->start(); in request()
71 void* r_start = space->memory() + distance; in request()
74 return MemoryRegion::Create(r_start, pLength, *space); in request()
83 Space *space = pRegion->parent(); in release() local
86 if (0 == space->numOfRegions()) { in release()
94 Space::Sync(space, *m_pFileHandle); in release()
[all …]
DMemoryAreaFactory.cpp83 Space* space = Space::Create(pMemBuffer, pSize); in produce() local
85 new (result) MemoryArea(*space); in produce()
/frameworks/native/opengl/specs/
DEGL_ANDROID_recordable.txt114 color space conversion must be performed at some point because most video
115 encoding formats use a YUV color space. The two approaches are
116 distinguished by the point at which this color space conversion is
119 One approach involves performing the color space conversion as part of the
125 space conversion when rendering the frame as well as a YUV -> RGB
128 The other approach involves performing the color space conversion in the
/frameworks/base/docs/html/guide/topics/ui/layout/
Dlinear.jd42 space on the screen, set the <a
61 terms of how much space is should occupy on the screen. A larger weight value allows it to expand
62 to fill any remaining space in the parent view.
63 Child views can specify a weight value, and then any remaining space in the view group is
69 area required by its content. The other two will expand equally to fill the space remaining after
71 it is now declared more important than both the others, so it gets half the total remaining space,
/frameworks/base/docs/html/reference/renderscript/
Ddoxygen.css365 white-space: nowrap;
374 white-space: nowrap;
410 white-space: nowrap;
478 white-space: nowrap;
483 white-space: nowrap;
560 white-space: nowrap;
591 white-space: nowrap;
650 white-space: nowrap;
758 white-space: nowrap;
772 white-space: nowrap;
[all …]
/frameworks/base/docs/html/training/keyboard-input/
Dvisibility.jd25 space on the screen is constrained, the text field might fill all space above the input method.
92 <p>When the input method appears on the screen, it reduces the amount of space available
95 you should specify how you'd like the system to display your UI in the remaining space.</p>
102 <p>For example, to ensure that the system resizes your layout to the available space&mdash;which
Dindex.jd45 your layout should adjust to the reduced screen space.
/frameworks/base/docs/html/about/versions/
Dkitkat.jd106 <span style="white-space:nowrap;">Android 4.4</span> is designed to run fast,
121 "white-space:nowrap;">Android 4.4</span> efficiently, even on low-memory
139 For developers, <span style="white-space:nowrap;">Android 4.4</span> helps
164 <span style="white-space:nowrap;">Android 4.4</span> introduces new platform
207 "white-space:nowrap;">Android 4.4</span> devices that support NFC will
222 <span style="white-space:nowrap;">Android 4.4</span> introduces native
270 Most devices running <span style="white-space:nowrap;">Android 4.4</span>
343 Most devices running <span style="white-space:nowrap;">Android 4.4</span>
354 <span style="white-space:nowrap;">Android 4.4</span> introduces platform
395 <span style="white-space:nowrap;">Android 4.4</span> also adds platform
[all …]
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
DQueryController.java513 for(int space = 0; space < mLogIndent; space++) in formatLog()
/frameworks/base/services/java/com/android/server/
DEventLogTags.logtags41 # The disk space free on the /data partition, in bytes
43 # Device low memory notification and disk space free on the /data partition, in bytes at that time
45 # disk space free on the /data, /system, and /cache partitions in bytes
/frameworks/base/docs/html/training/basics/data-storage/
Dfiles.jd51 Some devices divide the permanent storage space into "internal" and "external" partitions, so even
54 The following lists summarize the facts about each storage space.</p>
91 they have an external storage space that's larger than the internal storage. For more
330 whether sufficient space is available without causing an {@link
332 java.io.File#getTotalSpace}. These methods provide the current available space and the
333 total space in the storage volume, respectively. This information is also useful to avoid filling
342 <p class="note"><strong>Note:</strong> You aren't required to check the amount of available space
345 this if you don't know exactly how much space you need. For example, if you
/frameworks/av/media/libnbaio/
DREADME.txt32 if configured to block, then will wait until space available before returning
/frameworks/base/docs/html/guide/topics/sensors/
Dsensors_environment.jd56 <th scope="col" style="white-space:nowrap">Sensor</th>
57 <th scope="col" style="white-space:nowrap">Sensor event data</th>
58 <th scope="col" style="white-space:nowrap">Units of measure</th>
59 <th scope="col" style="white-space:nowrap">Data description</th>
/frameworks/base/wifi/java/android/net/wifi/
DWifiMonitor.java515 int space = eventStr.indexOf(' '); in run() local
516 if (space != -1) { in run()
517 iface = eventStr.substring(7,space); in run()
525 eventStr = eventStr.substring(space + 1); in run()
/frameworks/base/docs/html/training/basics/firstapp/
Dbuilding-ui.jd294 <p>The weight value is a number that specifies the amount of remaining space each view should
300 the remaining space and the second view fills the rest. If you add a third view and give it a weight
301 of 1, then the first view (with weight of 2) now gets 1/2 the remaining space, while the remaining
305 greater than 0 to only one view, then that view fills whatever space remains after all views are
306 given the space they require. So, to fill the remaining space in your layout with the {@link
320 remaining space.</p>
333 given all the layout weight, so fills the remaining space in the {@link
/frameworks/base/docs/html/training/design-navigation/
Dmultiple-sizes.jd47 …ets and TVs, on the other hand, generally have much more available screen space and are able to pr…
73 …f the large amount of available horizontal space. However, in the portrait orientation, your horiz…
86 … chat contact photos, names, and online statuses. In portrait, horizontal space could be collapsed…
/frameworks/base/docs/html/design/building-blocks/
Dswitches.jd37 consider a spinner, which uses less space.</p>
/frameworks/base/services/java/com/android/server/am/
DProcessList.java285 private static String buildOomTag(String prefix, String space, int val, int base) { in buildOomTag() argument
287 if (space == null) return prefix; in buildOomTag()
/frameworks/base/docs/html/design/patterns/
Dmulti-pane-layouts.jd18 when less space is available.</p>
28 list and detail views into a single compound view. This uses the additional space more efficiently
/frameworks/base/docs/html/training/cloudsave/
Dconflict-res.jd280 <td class="new-value" style="white-space:nowrap">(130, +10)</td>
288 <td class="new-value" style="white-space:nowrap">(125, +115)</td>
322 <td class="new-value" style="white-space:nowrap">(140, +10)</td>
324 <td class="new-value" style="white-space:nowrap">(140, +10)</td>
418 <td class="new-value" style="white-space:nowrap">(231, +110)</td>
420 <td class="new-value" style="white-space:nowrap">(231, +110)</td>
570 <td class="new-value" style="white-space:nowrap">(X:20, A:110, B:1)</td>
571 <td style="white-space:nowrap">(X:20, A:100, B:1)</td>
572 <td class="new-value" style="white-space:nowrap">(X:20, A:110, B:1)
/frameworks/base/docs/html/training/system-ui/
Dstatus.jd41 content use more of the display space, thereby providing a more immersive user experience.
181 to leave space for the system windows. This is sufficient for most applications.</p>
185 content lays out relative to the system bars (which occupy a space known as the window's
197 space available as if the action bar is not there and the system draws the action bar in
/frameworks/base/docs/html/google/play-services/
Did.jd71 <strong style="white-space:nowrap">ad tracking preference</strong>. When the
145 <td style="white-space:nowrap;">Retrieves the advertising ID.</td>
148 <td style="white-space:nowrap;"><code>public boolean isLimitAdTrackingEnabled()</code></td>
/frameworks/base/docs/html/
Dindex.jd39 … <h1 style="white-space:nowrap;line-height:1.2em;">DevBytes: <br />Android 4.4</h1>
67 <h1 style="white-space:nowrap;line-height:1.2em;">ADIA: <br />Android 4.4</h1>
/frameworks/support/v7/gridlayout/
DREADME.txt60 …<android.support.v7.widget.Space <=== space widgets also need the full support …
/frameworks/base/docs/html/guide/topics/renderscript/
Dadvanced.jd341 lets you specify the memory space of this memory allocation. There are four memory space
346 space. This is the default memory space if you do not specify a memory space.</li>
349 texture memory space of the GPU.</li>
352 memory space of the GPU.</li>
355 constants memory space of the GPU that is used by the various program objects.</li>
539 many memory spaces concurrently. If memory is modified in one space, you must explicitly

123456