HomeSort by relevance Sort by last modified time
    Searched defs:lastKnownLocation (Results 1 - 2 of 2) sorted by null

  /frameworks/base/services/java/com/android/server/location/
LocationBasedCountryDetector.java 115 Location lastKnownLocation = mLocationManager.getLastKnownLocation(provider);
116 if (lastKnownLocation != null) {
117 if (bestLocation == null || bestLocation.getTime() < lastKnownLocation.getTime()) {
118 bestLocation = lastKnownLocation;
  /external/jmonkeyengine/engine/src/desktop/com/jme3/input/awt/
AwtMouseInput.java 81 private Point lastKnownLocation;
90 lastKnownLocation = new Point();
116 lastKnownLocation = new Point();
146 lastKnownLocation.x = lastKnownLocation.y = 0;
167 int actualX = lastKnownLocation.x;
168 int actualY = component.getHeight() - lastKnownLocation.y;
264 lastKnownLocation.x = arg0.getX();
265 lastKnownLocation.y = arg0.getY();
271 int dx = arg0.getX() - lastKnownLocation.x
    [all...]

Completed in 611 milliseconds