Home
last modified time | relevance | path

Searched refs:lon (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/java/com/android/server/location/
DLocationFudger.java213 double lon = coarse.getLongitude(); in createCoarseLocked() local
217 lon = wrapLongitude(lon); in createCoarseLocked()
229 lon += metersToDegreesLongitude(mOffsetLongitudeMeters, lat); in createCoarseLocked()
236 lon = wrapLongitude(lon); in createCoarseLocked()
251 lon = Math.round(lon / lonGranularity) * lonGranularity; in createCoarseLocked()
255 lon = wrapLongitude(lon); in createCoarseLocked()
259 coarse.setLongitude(lon); in createCoarseLocked()
318 private static double wrapLongitude(double lon) { in wrapLongitude() argument
319 lon %= 360.0; // wraps into range (-360.0, +360.0) in wrapLongitude()
320 if (lon >= 180.0) { in wrapLongitude()
[all …]
/frameworks/base/telephony/java/android/telephony/
DCellIdentityCdma.java75 public CellIdentityCdma (int nid, int sid, int bid, int lon, int lat) { in CellIdentityCdma() argument
79 mLongitude = lon; in CellIdentityCdma()