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

  /packages/apps/Contacts/src/com/android/contacts/
ContactsUtils.java 232 final float appScale = context.getResources().getCompatibilityInfo().applicationScale;
237 rect.left = (int) (pos[0] * appScale + 0.5f);
238 rect.top = (int) (pos[1] * appScale + 0.5f);
239 rect.right = (int) ((pos[0] + view.getWidth()) * appScale + 0.5f);
240 rect.bottom = (int) ((pos[1] + view.getHeight()) * appScale + 0.5f);
  /packages/apps/Launcher2/src/com/android/launcher2/
SearchDropTargetBar.java 236 final float appScale = mQSBSearchBar.getContext().getResources()
242 rect.left = (int) (pos[0] * appScale + 0.5f);
243 rect.top = (int) (pos[1] * appScale + 0.5f);
244 rect.right = (int) ((pos[0] + mQSBSearchBar.getWidth()) * appScale + 0.5f);
245 rect.bottom = (int) ((pos[1] + mQSBSearchBar.getHeight()) * appScale + 0.5f);
  /frameworks/base/core/java/android/view/
Surface.java 374 float appScale = translator.applicationScale;
376 mCompatibleMatrix.setScale(appScale, appScale);
ViewRootImpl.java     [all...]
  /frameworks/base/core/java/android/widget/
RemoteViews.java 254 final float appScale = v.getContext().getResources()
260 rect.left = (int) (pos[0] * appScale + 0.5f);
261 rect.top = (int) (pos[1] * appScale + 0.5f);
262 rect.right = (int) ((pos[0] + v.getWidth()) * appScale + 0.5f);
263 rect.bottom = (int) ((pos[1] + v.getHeight()) * appScale + 0.5f);
331 final float appScale = view.getContext().getResources()
337 rect.left = (int) (pos[0] * appScale + 0.5f);
338 rect.top = (int) (pos[1] * appScale + 0.5f);
339 rect.right = (int) ((pos[0] + view.getWidth()) * appScale + 0.5f);
340 rect.bottom = (int) ((pos[1] + view.getHeight()) * appScale + 0.5f)
    [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java     [all...]

Completed in 827 milliseconds