Home | History | Annotate | Download | only in provider

Lines Matching defs:appScale

8166             final float appScale = context.getResources().getCompatibilityInfo().applicationScale;
8171 rect.left = (int) (pos[0] * appScale + 0.5f);
8172 rect.top = (int) (pos[1] * appScale + 0.5f);
8173 rect.right = (int) ((pos[0] + target.getWidth()) * appScale + 0.5f);
8174 rect.bottom = (int) ((pos[1] + target.getHeight()) * appScale + 0.5f);