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/ContactsCommon/src/com/android/contacts/common/
MoreContactUtils.java 173 final float appScale = context.getResources().getCompatibilityInfo().applicationScale;
178 rect.left = (int) (pos[0] * appScale + 0.5f);
179 rect.top = (int) (pos[1] * appScale + 0.5f);
180 rect.right = (int) ((pos[0] + view.getWidth()) * appScale + 0.5f);
181 rect.bottom = (int) ((pos[1] + view.getHeight()) * appScale + 0.5f);
  /frameworks/base/core/java/android/view/
Surface.java 273 float appScale = translator.applicationScale;
275 mCompatibleMatrix.setScale(appScale, appScale);
AccessibilityInteractionController.java 680 private boolean shouldApplyAppScaleAndMagnificationSpec(float appScale,
682 return (appScale != 1.0f || (spec != null && !spec.isNop()));
    [all...]
ViewRootImpl.java     [all...]
  /frameworks/base/core/java/android/widget/
RemoteViews.java 375 final float appScale = v.getContext().getResources()
381 rect.left = (int) (pos[0] * appScale + 0.5f);
382 rect.top = (int) (pos[1] * appScale + 0.5f);
383 rect.right = (int) ((pos[0] + v.getWidth()) * appScale + 0.5f);
384 rect.bottom = (int) ((pos[1] + v.getHeight()) * appScale + 0.5f);
455 final float appScale = view.getContext().getResources()
461 rect.left = (int) (pos[0] * appScale + 0.5f);
462 rect.top = (int) (pos[1] * appScale + 0.5f);
463 rect.right = (int) ((pos[0] + view.getWidth()) * appScale + 0.5f);
464 rect.bottom = (int) ((pos[1] + view.getHeight()) * appScale + 0.5f)
    [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java     [all...]

Completed in 142 milliseconds