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.cpp1671 status_t Parcel::restartWrite(size_t desired) argument
1673 if (desired > INT32_MAX) {
1681 return continueWrite(desired);
1684 uint8_t* data = (uint8_t*)realloc(mData, desired);
1685 if (!data && desired > mDataCapacity) {
1693 LOG_ALLOC("Parcel %p: restart from %zu to %zu capacity", this, mDataCapacity, desired);
1695 gParcelGlobalAllocSize += desired;
1699 mDataCapacity = desired;
1717 status_t Parcel::continueWrite(size_t desired) argument
1719 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.java2886 * @param unit The desired dimension unit.
2887 * @param size The desired size in the given units.
6420 * this to do their desired behavior.
6568 * The width passed in is now the desired layout width,
6794 private static int desired(Layout layout) { method in class:TextView
6874 des = desired(mLayout);
6906 hintDes = desired(mHintLayout);
6993 int desired = getDesiredHeight();
6995 height = desired;
6996 mDesiredHeightAtMeasure = desired;
[all...]

Completed in 158 milliseconds