Home
last modified time | relevance | path

Searched refs:lastLocation (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/libs/hwui/tests/unit/
DLinearAllocatorTests.cpp106 char* lastLocation = &v[0]; in TEST() local
112 EXPECT_LT(lastLocation, &v[0]); in TEST()
113 EXPECT_GT(lastLocation + 20, &v[0]); in TEST()
/frameworks/base/services/core/java/com/android/server/
DLocationManagerService.java2732 Location lastLocation = null; in getLastLocation() local
2737 lastLocation = new Location(mLocationFudger.getOrCreate(noGPSLocation)); in getLastLocation()
2740 lastLocation = new Location(location); in getLastLocation()
2743 if (lastLocation != null) { in getLastLocation()
2749 lastLocation = null; in getLastLocation()
2752 return lastLocation; in getLastLocation()
3466 Location lastLocation = mLastLocation.get(provider); in updateLastLocationLocked() local
3467 if (lastLocation == null) { in updateLastLocationLocked()
3468 lastLocation = new Location(provider); in updateLastLocationLocked()
3469 mLastLocation.put(provider, lastLocation); in updateLastLocationLocked()
[all …]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
DFusedPrintersProvider.java258 Location lastLocation = mLocationManager.getLastLocation(); in onStartLoading() local
259 if (lastLocation != null) { in onStartLoading()
260 onLocationChanged(lastLocation); in onStartLoading()