Home
last modified time | relevance | path

Searched refs:vWidth (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/Keyguard/src/com/android/keyguard/
DKeyguardViewManager.java165 final int vWidth = getWidth();
169 canvas.translate(-(bounds.width() - vWidth) / 2,
212 final int vWidth = getWidth(); in computeCustomBackgroundBounds() local
216 final float vAspect = (float) vWidth / vHeight; in computeCustomBackgroundBounds()
221 mCustomBackground.setBounds(0, 0, vWidth, (int) (vWidth / bgAspect)); in computeCustomBackgroundBounds()
/frameworks/av/libvideoeditor/lvpp/
DPreviewPlayer.cpp1671 int32_t vWidth, vHeight; in notifyVideoSize_l() local
1674 CHECK(meta->findInt32(kKeyWidth, &vWidth)); in notifyVideoSize_l()
1677 mGivenWidth = vWidth; in notifyVideoSize_l()
1684 cropRight = vWidth - 1; in notifyVideoSize_l()
1687 ALOGD("got dimensions only %d x %d", vWidth, vHeight); in notifyVideoSize_l()
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
DVideoEditorVideoDecoder.cpp795 int32_t vWidth, vHeight; in VideoEditorVideoDecoder_configureFromMetadata() local
805 success = meta->findInt32(kKeyWidth, &vWidth); in VideoEditorVideoDecoder_configureFromMetadata()
810 ALOGV("vWidth = %d, vHeight = %d", vWidth, vHeight); in VideoEditorVideoDecoder_configureFromMetadata()
812 pDecShellContext->mGivenWidth = vWidth; in VideoEditorVideoDecoder_configureFromMetadata()
819 cropRight = vWidth - 1; in VideoEditorVideoDecoder_configureFromMetadata()