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

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateTestPage.java 40 private static String sLocation; // Persist between repeated invocations
65 if (sLocation != null) {
66 mLocation.setText(sLocation);
100 sLocation = path;
  /packages/apps/Camera/src/com/android/camera/
Util.java 577 private static int sLocation[] = new int[2];
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/
CameraUtil.java 695 private static int sLocation[] = new int[2];
699 v.getLocationInWindow(sLocation);
700 return x >= sLocation[0] && x < (sLocation[0] + v.getWidth())
701 && y >= sLocation[1] && y < (sLocation[1] + v.getHeight());
705 reference.getLocationInWindow(sLocation);
706 int referenceX = sLocation[0];
707 int referenceY = sLocation[1];
708 view.getLocationInWindow(sLocation);
    [all...]

Completed in 150 milliseconds