HomeSort by relevance Sort by last modified time
    Searched refs:appScale (Results 1 - 7 of 7) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailPhotoSetter.java 70 final float appScale =
77 rect.left = (int) (pos[0] * appScale + 0.5f);
78 rect.top = (int) (pos[1] * appScale + 0.5f);
79 rect.right = (int) ((pos[0] + v.getWidth()) * appScale + 0.5f);
80 rect.bottom = (int) ((pos[1] + v.getHeight()) * appScale + 0.5f);
  /packages/apps/Launcher2/src/com/android/launcher2/
SearchDropTargetBar.java 227 final float appScale = mQSBSearchBar.getContext().getResources()
233 rect.left = (int) (pos[0] * appScale + 0.5f);
234 rect.top = (int) (pos[1] * appScale + 0.5f);
235 rect.right = (int) ((pos[0] + mQSBSearchBar.getWidth()) * appScale + 0.5f);
236 rect.bottom = (int) ((pos[1] + mQSBSearchBar.getHeight()) * appScale + 0.5f);
  /packages/apps/Contacts/src/com/android/contacts/
ContactsUtils.java 303 final float appScale = context.getResources().getCompatibilityInfo().applicationScale;
308 rect.left = (int) (pos[0] * appScale + 0.5f);
309 rect.top = (int) (pos[1] * appScale + 0.5f);
310 rect.right = (int) ((pos[0] + view.getWidth()) * appScale + 0.5f);
311 rect.bottom = (int) ((pos[1] + view.getHeight()) * appScale + 0.5f);
  /frameworks/base/core/java/android/view/
Surface.java 401 float appScale = translator.applicationScale;
403 mCompatibleMatrix.setScale(appScale, appScale);
ViewRootImpl.java     [all...]
  /frameworks/base/core/java/android/widget/
RemoteViews.java 299 final float appScale = v.getContext().getResources()
305 rect.left = (int) (pos[0] * appScale + 0.5f);
306 rect.top = (int) (pos[1] * appScale + 0.5f);
307 rect.right = (int) ((pos[0] + v.getWidth()) * appScale + 0.5f);
308 rect.bottom = (int) ((pos[1] + v.getHeight()) * appScale + 0.5f);
376 final float appScale = view.getContext().getResources()
382 rect.left = (int) (pos[0] * appScale + 0.5f);
383 rect.top = (int) (pos[1] * appScale + 0.5f);
384 rect.right = (int) ((pos[0] + view.getWidth()) * appScale + 0.5f);
385 rect.bottom = (int) ((pos[1] + view.getHeight()) * appScale + 0.5f)
    [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java     [all...]

Completed in 1274 milliseconds