HomeSort by relevance Sort by last modified time
    Searched defs:displayWidth (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
AwLegacyQuirksTest.java 49 float displayWidth = (deviceInfo.getDisplayWidth());
54 assertEquals(displayWidth * (240f / deviceDpi), actualWidth, 10f);
58 assertEquals(displayWidth * (100f / deviceDpi), actualWidth, 10f);
81 float displayWidth = (float) (deviceInfo.getDisplayWidth() / deviceInfo.getDIPScale());
83 assertEquals(displayWidth, actualWidth, 10f);
107 float displayWidth = (float) (deviceInfo.getDisplayWidth() / deviceInfo.getDIPScale());
109 assertEquals(displayWidth, actualWidth, 10f);
115 assertEquals(displayWidth, actualWidth, 10f);
AwSettingsTest.java     [all...]
  /developers/build/prebuilts/androidtv/visual-game-controller/src/com/example/android/visualgamecontroller/
ControllerView.java 214 private void loadBitmaps(int displayWidth, int displayHeight) {
303 int displayWidth = mSize.x;
305 displayWidth = getWidth();
317 width = Math.min(displayWidth, widthSpecSize);
319 width = displayWidth;
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
SoftKeyboard.java 101 int displayWidth = getMaxWidth();
102 if (displayWidth == mLastDisplayWidth) return;
103 mLastDisplayWidth = displayWidth;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/android/org/webrtc/
VideoRendererGui.java 329 float displayWidth = (texRight - texLeft) * screenWidth / 2;
331 if (displayWidth > 1 && displayHeight > 1 &&
333 float displayAspectRatio = displayWidth / displayHeight;
338 float deltaX = (displayWidth - videoAspectRatio * displayHeight) /
343 float deltaY = (displayHeight - displayWidth / videoAspectRatio) /

Completed in 190 milliseconds