Searched defs:newWidth (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java613 final void resize(int newWidth, int newHeight) { argument
627 if (totalGap + totalWidth > newWidth) {
629 float scaleFactor = (float)(newWidth - totalGap) / totalWidth;
638 mTotalWidth = newWidth;
/frameworks/native/libs/gui/
H A DSurfaceTexture.cpp706 int32_t newWidth = mCurrentCrop.width(); local
709 if (newWidth * mDefaultHeight > newHeight * mDefaultWidth) {
710 newWidth = newHeight * mDefaultWidth / mDefaultHeight;
711 ST_LOGV("too wide: newWidth = %d", newWidth);
712 } else if (newWidth * mDefaultHeight < newHeight * mDefaultWidth) {
713 newHeight = newWidth * mDefaultHeight / mDefaultWidth;
718 if (newWidth < mCurrentCrop.width()) {
719 int32_t dw = (newWidth - mCurrentCrop.width())/2;
/frameworks/base/core/jni/
H A Dandroid_app_NativeActivity.cpp864 int32_t newWidth = getWindowProp(code->nativeWindow.get(), local
868 if (newWidth != code->lastWindowWidth

Completed in 2152 milliseconds