Home
last modified time | relevance | path

Searched refs:desired (Results 1 – 25 of 94) sorted by relevance

1234

/frameworks/native/libs/binder/
DParcel.cpp1703 status_t Parcel::restartWrite(size_t desired) in restartWrite() argument
1705 if (desired > INT32_MAX) { in restartWrite()
1713 return continueWrite(desired); in restartWrite()
1716 uint8_t* data = (uint8_t*)realloc(mData, desired); in restartWrite()
1717 if (!data && desired > mDataCapacity) { in restartWrite()
1725 LOG_ALLOC("Parcel %p: restart from %zu to %zu capacity", this, mDataCapacity, desired); in restartWrite()
1727 gParcelGlobalAllocSize += desired; in restartWrite()
1731 mDataCapacity = desired; in restartWrite()
1749 status_t Parcel::continueWrite(size_t desired) in continueWrite() argument
1751 if (desired > INT32_MAX) { in continueWrite()
[all …]
/frameworks/wilhelm/src/itf/
DIOutputMixExt.c210 unsigned desired = size; in IOutputMixExt_FillBuffer() local
228 while (desired > 0) { in IOutputMixExt_FillBuffer()
229 unsigned actual = desired; in IOutputMixExt_FillBuffer()
269 desired -= actual; in IOutputMixExt_FillBuffer()
/frameworks/base/docs/html/training/system-ui/
Dvisibility.jd63 // TODO: The system bars are visible. Make any desired
67 // TODO: The system bars are NOT visible. Make any desired
/frameworks/base/docs/html/sdk/installing/
Dstudio-layout.jd31 appropriate tab at the bottom of the window to display the desired editor.</p>
47 and choose the desired device, such as Nexus 4:</p>
133 the desired location.</p>
145 shadow. Once you have the desired effect, you can save the image.</p>
Dadding-packages.jd180 <p>Once you've selected all the desired packages, continue to install:</p>
/frameworks/compile/libbcc/tests/debuginfo/target-tests/driver-common/SRC/
DDriverView.java.template38 // Initialize renderscript with desired surface characteristics.
/frameworks/base/tools/aapt/
DBundle.h243 bool isMinSdkAtLeast(int desired) { in isMinSdkAtLeast() argument
261 if (minSdkNum < desired) { in isMinSdkAtLeast()
/frameworks/native/include/binder/
DParcel.h242 status_t restartWrite(size_t desired);
243 status_t continueWrite(size_t desired);
/frameworks/base/core/java/android/widget/
DTextView.java6791 private static int desired(Layout layout) { in desired() method in TextView
6871 des = desired(mLayout); in onMeasure()
6903 hintDes = desired(mHintLayout); in onMeasure()
6990 int desired = getDesiredHeight(); in onMeasure() local
6992 height = desired; in onMeasure()
6993 mDesiredHeightAtMeasure = desired; in onMeasure()
6996 height = Math.min(desired, heightSize); in onMeasure()
7033 int desired = layout.getLineTop(linecount); in getDesiredHeight() local
7037 desired = Math.max(desired, dr.mDrawableHeightLeft); in getDesiredHeight()
7038 desired = Math.max(desired, dr.mDrawableHeightRight); in getDesiredHeight()
[all …]
/frameworks/base/docs/html/tools/projects/
Dprojects-eclipse.jd87 <strong>Properties</strong>, select <strong>Android</strong> and then check the desired
103 <li>In the <strong>Configure Project</strong> page, select the desired settings and click
143 <li>Set the other options as desired and click <strong>Next</strong>.</li>
/frameworks/base/docs/html/guide/topics/connectivity/usb/
Dhost.jd109 android.hardware.usb.UsbManager} to retrieve the desired {@link android.hardware.usb.UsbDevice}.
198 communication with the device if desired. To do this, your application has to:</p>
215 desired device. Enumerating connected USB devices is useful if you want to get a list of all
271 <p>If desired, you can also just obtain an iterator from the hash map and process each device one
/frameworks/base/docs/html/training/design-navigation/
Dindex.jd47 …hic mockups) representing the screens in a news application based on the desired information model…
/frameworks/native/opengl/specs/
DEGL_ANDROID_presentation_time.txt41 this desired presentation time to be specified for each frame rendered to
/frameworks/base/docs/html/training/wearables/data-layer/
Dassets.jd30 assets can be as large as desired. However, transferring large assets affects the
Ddata-items.jd77 <li>Set any desired values for the data map using the <code>put...()</code> methods, such as
/frameworks/base/core/java/com/android/internal/widget/
DLockPatternView.java625 private int resolveMeasured(int measureSpec, int desired) in resolveMeasured() argument
631 result = desired; in resolveMeasured()
634 result = Math.max(specSize, desired); in resolveMeasured()
/frameworks/base/docs/html/tools/help/
Dgltracer.jd79 <li>Select the desired <strong>Data Collection Options</strong>.
Dlint.jd22 The <em>Specify Inspections Scope</em> dialog appears so you can specify the desired inspection
/frameworks/base/docs/html/training/location/
Dgeofencing.jd104 … html">Geofence.Builder</a></code> to create a geofence, setting the desired radius, duration, and
283 <p>Stopping geofence monitoring when it is no longer needed or desired can help save battery
/frameworks/base/docs/html/guide/topics/security/
Dpermissions.jd137 permission when installed, and can use that feature as desired, or the
153 means that your app has been granted its desired permissions.</p>
286 android.R.attr#permission android:permission} attribute on the desired
381 method. Call with a desired
/frameworks/base/docs/html/training/contacts-provider/
Dmodify-data.jd263 {@link android.content.Intent#putExtra putExtra()} as desired.
301 // Add code here to insert extended data, if desired
/frameworks/base/docs/html/guide/topics/ui/
Dhow-android-draws.jd114 used by a parent to determine the desired dimension
/frameworks/base/docs/html/training/gestures/
Dmulti.jd131 the desired action associated with that event.</p>
/frameworks/base/docs/html/guide/topics/ui/layout/
Dgridview.jd166 configured with desired properties for the image presentation:</p>
/frameworks/base/docs/html/training/basics/firstapp/
Drunning-app.jd156 <li>Select the desired system version for the AVD and click <strong>Next</strong>.

1234