Searched defs:desired (Results 1 - 6 of 6) sorted by relevance

/frameworks/wilhelm/src/itf/
H A DIOutputMixExt.c210 unsigned desired = size; local
228 while (desired > 0) {
229 unsigned actual = desired;
269 desired -= actual;
311 // we need more data: desired > 0 but actual == 0
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java625 private int resolveMeasured(int measureSpec, int desired) argument
631 result = desired;
634 result = Math.max(specSize, desired);
/frameworks/base/tools/aapt/
H A DBundle.h243 bool isMinSdkAtLeast(int desired) { argument
261 if (minSdkNum < desired) {
/frameworks/native/libs/binder/
H A DParcel.cpp1697 status_t Parcel::restartWrite(size_t desired) argument
1699 if (desired > INT32_MAX) {
1707 return continueWrite(desired);
1710 uint8_t* data = (uint8_t*)realloc(mData, desired);
1711 if (!data && desired > mDataCapacity) {
1719 LOG_ALLOC("Parcel %p: restart from %zu to %zu capacity", this, mDataCapacity, desired);
1721 gParcelGlobalAllocSize += desired;
1725 mDataCapacity = desired;
1743 status_t Parcel::continueWrite(size_t desired) argument
1745 if (desired > INT32_MA
[all...]
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java1168 boolean checkMediaState(String desired) { argument
1172 if (desired.equals(actual)) {
/frameworks/base/core/java/android/widget/
H A DTextView.java2891 * @param unit The desired dimension unit.
2892 * @param size The desired size in the given units.
6417 * this to do their desired behavior.
6565 * The width passed in is now the desired layout width,
6791 private static int desired(Layout layout) { method in class:TextView
6871 des = desired(mLayout);
6903 hintDes = desired(mHintLayout);
6990 int desired = getDesiredHeight();
6992 height = desired;
6993 mDesiredHeightAtMeasure = desired;
[all...]

Completed in 329 milliseconds