Searched refs:sLocation (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Camera/src/com/android/camera/
H A DUtil.java577 private static int sLocation[] = new int[2]; field in class:Util
581 v.getLocationInWindow(sLocation);
582 return x >= sLocation[0] && x < (sLocation[0] + v.getWidth())
583 && y >= sLocation[1] && y < (sLocation[1] + v.getHeight());
587 reference.getLocationInWindow(sLocation);
588 int referenceX = sLocation[0];
589 int referenceY = sLocation[1];
590 view.getLocationInWindow(sLocation);
[all...]
/packages/apps/Camera2/src/com/android/camera/util/
H A DCameraUtil.java634 private static int sLocation[] = new int[2]; field in class:CameraUtil
638 v.getLocationInWindow(sLocation);
639 return x >= sLocation[0] && x < (sLocation[0] + v.getWidth())
640 && y >= sLocation[1] && y < (sLocation[1] + v.getHeight());
644 reference.getLocationInWindow(sLocation);
645 int referenceX = sLocation[0];
646 int referenceY = sLocation[1];
647 view.getLocationInWindow(sLocation);
[all...]

Completed in 1157 milliseconds