Searched defs:mLongitude (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareRequest.java31 private double mLongitude; field in class:GeofenceHardwareRequest
41 mLongitude = longitude;
117 return mLongitude;
/frameworks/base/location/java/android/location/
H A DGeofence.java35 private final double mLongitude; field in class:Geofence
56 mLongitude = longitude;
72 return mLongitude;
126 parcel.writeDouble(mLongitude);
143 typeToString(mType), mLatitude, mLongitude, mRadius);
153 temp = Double.doubleToLongBits(mLongitude);
176 if (mLongitude != other.mLongitude)
H A DAddress.java52 private double mLongitude; field in class:Address
340 return mLongitude;
350 mLongitude = longitude;
464 sb.append(mLongitude);
516 a.mLongitude = in.readDouble();
563 parcel.writeDouble(mLongitude);
H A DLocation.java84 private double mLongitude = 0.0; field in class:Location
134 mLongitude = l.mLongitude;
155 mLongitude = 0;
426 if (mLatitude != mLat1 || mLongitude != mLon1 ||
427 dest.mLatitude != mLat2 || dest.mLongitude != mLon2) {
428 computeDistanceAndBearing(mLatitude, mLongitude,
429 dest.mLatitude, dest.mLongitude, mResults);
431 mLon1 = mLongitude;
433 mLon2 = dest.mLongitude;
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityCdma.java43 private final int mLongitude; field in class:CellIdentityCdma
59 mLongitude = Integer.MAX_VALUE;
79 mLongitude = lon;
87 mLongitude = cid.mLongitude;
124 return mLongitude;
142 (mLatitude * primeNum) + (mLongitude * primeNum);
154 mLongitude == o.mLongitude;
169 sb.append(" mLongitude
[all...]

Completed in 95 milliseconds