HomeSort by relevance Sort by last modified time
    Searched defs:ydpi (Results 1 - 25 of 43) sorted by null

1 2

  /frameworks/native/include/ui/
DisplayInfo.h 31 float ydpi; member in struct:android::DisplayInfo
  /hardware/libhardware/include/hardware/
fb.h 56 const float ydpi; member in struct:framebuffer_device_t
  /hardware/qcom/display/libgralloc/
fb_priv.h 51 float ydpi; member in struct:private_module_t
framebuffer.cpp 246 float ydpi = (info.yres * 25.4f) / info.height; local
287 info.height, ydpi,
302 module->ydpi = ydpi;
390 const_cast<float&>(dev->device.ydpi) = m->ydpi;
  /system/extras/tests/framebuffer/
refresh.c 76 float ydpi = (info.yres * 25.4f) / info.height; local
105 info.height, ydpi,
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowDisplay.java 22 private float ydpi = 240.0f; field in class:ShadowDisplay
41 outMetrics.ydpi = ydpi;
94 return ydpi;
97 public void setYdpi(float ydpi) {
98 this.ydpi = ydpi;
  /frameworks/base/core/java/android/util/
DisplayMetrics.java 122 * {@link #xdpi} and {@link #ydpi}, but rather is used to scale the size of
150 public float ydpi; field in class:DisplayMetrics
189 * The reported display ydpi prior to any compatibility mode scaling
205 ydpi = o.ydpi;
222 ydpi = DENSITY_DEVICE;
229 noncompatYdpi = ydpi;
265 && ydpi == other.ydpi
283 ", xdpi=" + xdpi + ", ydpi=" + ydpi + "}"
    [all...]
  /hardware/libhardware/modules/gralloc/
framebuffer.cpp 222 float ydpi = (info.yres * 25.4f) / info.height; local
251 info.height, ydpi,
267 module->ydpi = ydpi;
341 const_cast<float&>(dev->device.ydpi) = m->ydpi;
gralloc_priv.h 52 float ydpi; member in struct:private_module_t
  /hardware/msm7k/libgralloc/
framebuffer.cpp 239 float ydpi = (info.yres * 25.4f) / info.height; local
268 info.height, ydpi,
284 module->ydpi = ydpi;
362 const_cast<float&>(dev->device.ydpi) = m->ydpi;
gralloc_priv.h 56 float ydpi; member in struct:private_module_t
  /hardware/samsung_slsi/exynos5/gralloc/
framebuffer.cpp 190 float ydpi = (module->yres * 25.4f) / info.height; local
199 ydpi, (float)refreshRate);
203 module->ydpi = ydpi;
266 const_cast<float&>(dev->ydpi) = m->ydpi;
  /external/qemu/android/
qemulator.c 285 int xdpi, ydpi; local
287 if ( SDL_WM_GetMonitorDPI( &xdpi, &ydpi ) < 0 ) {
291 D( "system reported monitor resolutions: xdpi=%d ydpi=%d\n", xdpi, ydpi);
292 dpi_monitor = (xdpi + ydpi+1)/2;
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.h 311 float ydpi; member in struct:android::HWComposer::DisplayData
  /hardware/msm7k/libgralloc-qsd8k/
framebuffer.cpp 275 float ydpi = (info.yres * 25.4f) / info.height; local
304 info.height, ydpi,
320 module->ydpi = ydpi;
398 const_cast<float&>(dev->device.ydpi) = m->ydpi;
gralloc_priv.h 76 float ydpi; member in struct:private_module_t
  /hardware/samsung_slsi/exynos5/include/
gralloc_priv.h 52 float ydpi; member in struct:private_module_t
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11wm.c 538 int xdpi, ydpi; local
550 ydpi = (int)(height * MM_PER_INCH / height_mm + 0.5);
552 if (xdpi < 20 || xdpi > 400 || ydpi < 20 || ydpi > 400) {
557 *py_dpi = ydpi;
  /device/generic/goldfish/opengl/system/gralloc/
gralloc.cpp 950 EGLint ydpi = rcEnc->rcGetFBParam(rcEnc, FB_YDPI); local
951 D("gralloc: ydpi=%d\n", ydpi);
986 const_cast<float&>(dev->device.ydpi) = ydpi;
  /hardware/qcom/display/libhwcomposer/
hwc_utils.h 78 float ydpi; member in struct:qhwc::DisplayAttributes
hwc_utils.cpp 65 float ydpi = (info.yres * 25.4f) / info.height; local
96 ctx->dpyAttr[HWC_DISPLAY_PRIMARY].ydpi = ydpi;
    [all...]
  /system/core/include/system/
window.h 338 : flags(0), minSwapInterval(0), maxSwapInterval(0), xdpi(0), ydpi(0)
368 const float ydpi; member in struct:ANativeWindow
  /external/qemu/distrib/sdl-1.2.15/src/video/windib/
SDL_dibvideo.c 121 static int DIB_GetMonitorDPI(_THIS, int* xDpi, int *yDpi);
1403 int xdpi, ydpi; local
    [all...]
  /hardware/samsung_slsi/exynos5/libhwc/
hwc.cpp 124 int32_t ydpi; member in struct:exynos5_hwc_composer_device_1_t
    [all...]
  /sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/
ConfigGenerator.java 117 public static final String NODE_YDPI = "ydpi";
221 double yin = metrics.heightPixels / metrics.ydpi;
281 Element ydpi = doc.createElement(PREFIX + NODE_YDPI); local
282 screen.appendChild(ydpi);
283 ydpi.appendChild(doc.createTextNode(Double.toString(metrics.ydpi)));

Completed in 3605 milliseconds

1 2