Searched refs:desired (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DFaceUnlockView.java34 private int resolveMeasured(int measureSpec, int desired) argument
40 result = desired;
43 result = Math.max(specSize, desired);
H A DLockPatternView.java476 private int resolveMeasured(int measureSpec, int desired) argument
482 result = desired;
485 result = Math.max(specSize, desired);
/frameworks/native/libs/binder/
H A DParcel.cpp1540 status_t Parcel::restartWrite(size_t desired) argument
1544 return continueWrite(desired);
1547 uint8_t* data = (uint8_t*)realloc(mData, desired);
1548 if (!data && desired > mDataCapacity) {
1556 LOG_ALLOC("Parcel %p: restart from %zu to %zu capacity", this, mDataCapacity, desired);
1558 gParcelGlobalAllocSize += desired;
1562 mDataCapacity = desired;
1580 status_t Parcel::continueWrite(size_t desired) argument
1585 if (desired < mDataSize) {
1586 if (desired
[all...]
/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/tools/aapt/
H A DBundle.h238 bool isMinSdkAtLeast(int desired) { argument
256 if (minSdkNum < desired) {
/frameworks/native/include/binder/
H A DParcel.h238 status_t restartWrite(size_t desired);
239 status_t continueWrite(size_t desired);
/frameworks/base/core/java/android/widget/
H A DTextView.java2645 * @param unit The desired dimension unit.
2646 * @param size The desired size in the given units.
6113 * this to do their desired behavior.
6261 * The width passed in is now the desired layout width,
6493 private static int desired(Layout layout) { method in class:TextView
6573 des = desired(mLayout);
6605 hintDes = desired(mHintLayout);
6692 int desired = getDesiredHeight();
6694 height = desired;
6695 mDesiredHeightAtMeasure = desired;
[all...]
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DGlowPadView.java347 private int resolveMeasured(int measureSpec, int desired) argument
353 result = desired;
356 result = Math.min(specSize, desired);
1045 * Given the desired width and height of the ring and the allocated width and height, compute
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java1175 boolean checkMediaState(String desired) { argument
1179 if (desired.equals(actual)) {

Completed in 2426 milliseconds