Searched defs:mLocation (Results 1 - 15 of 15) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmCellBroadcastHandler.java202 private final SmsCbLocation mLocation; field in class:GsmCellBroadcastHandler.SmsCbConcatInfo
206 mLocation = location;
211 return (mHeader.getSerialNumber() * 31) + mLocation.hashCode();
223 && mLocation.equals(other.mLocation);
232 * and Cell ID are saved in mLocation or set to -1 to match all values.
240 return mLocation.isInLocationArea(plmn, lac, cid);
/frameworks/base/services/java/com/android/server/location/
H A DGeofenceState.java36 private final Location mLocation; field in class:GeofenceState
58 mLocation = new Location("");
59 mLocation.setLatitude(fence.getLatitude());
60 mLocation.setLongitude(fence.getLongitude());
68 mDistanceToCenter = mLocation.distanceTo(location);
H A DMockProvider.java46 private final Location mLocation; field in class:MockProvider
64 mLocation = new Location(name);
109 mLocation.set(l);
113 mLocationManager.reportLocation(mLocation, false);
147 pw.println(prefix + "mLocation:");
148 mLocation.dump(new PrintWriterPrinter(pw), prefix + " ");
H A DGpsLocationProvider.java307 private Location mLocation = new Location(LocationManager.GPS_PROVIDER); field in class:GpsLocationProvider
454 mLocation.setExtras(mLocationExtras);
1132 synchronized (mLocation) {
1135 mLocation.setLatitude(latitude);
1136 mLocation.setLongitude(longitude);
1137 mLocation.setTime(timestamp);
1140 mLocation.setElapsedRealtimeNanos(SystemClock.elapsedRealtimeNanos());
1143 mLocation.setAltitude(altitude);
1145 mLocation.removeAltitude();
1148 mLocation
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/location/
H A DLocationBasedCountryDetectorTest.java41 private final Location mLocation; field in class:LocationBasedCountryDetectorTest.TestCountryDetector
53 mLocation = new Location(provider);
68 if (mLocation.getProvider().endsWith(location.getProvider())) {
77 return mLocation;
131 listener.onLocationChanged(mLocation);
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerEntry.java37 private Location mLocation; field in class:TrackerEntry
84 mLocation = null;
89 mLocation = new Location(loc);
132 mLocation = location;
144 return mLocation;
175 cValues.put(LATITUDE, mLocation.getLatitude());
176 cValues.put(LONGITUDE, mLocation.getLongitude());
177 if (mLocation.hasAccuracy()) {
178 cValues.put(ACCURACY, mLocation.getAccuracy());
180 if (mLocation
[all...]
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbMessage.java117 private final SmsCbLocation mLocation; field in class:SmsCbMessage
150 mLocation = location;
164 mLocation = new SmsCbLocation(in);
200 mLocation.writeToParcel(dest, flags);
262 return mLocation;
367 + mSerialNumber + ", location=" + mLocation + ", serviceCategory="
/frameworks/base/core/java/android/app/
H A DNativeActivity.java84 final int[] mLocation = new int[2]; field in class:NativeActivity
307 mNativeContentView.getLocationInWindow(mLocation);
310 if (mLocation[0] != mLastContentX || mLocation[1] != mLastContentY
312 mLastContentX = mLocation[0];
313 mLastContentY = mLocation[1];
H A DLoadedApk.java720 final IntentReceiverLeaked mLocation; field in class:LoadedApk.ReceiverDispatcher
804 mLocation = new IntentReceiverLeaked(null);
805 mLocation.fillInStackTrace();
824 return mLocation;
941 private final ServiceConnectionLeaked mLocation; field in class:LoadedApk.ServiceDispatcher
978 mLocation = new ServiceConnectionLeaked(null);
979 mLocation.fillInStackTrace();
1010 return mLocation;
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareImpl.java606 " Location: " + geofenceTransition.mLocation + ":" + mGeofences);
613 geofenceTransition.mLocation, geofenceTransition.mTimestamp,
739 private Location mLocation; field in class:GeofenceHardwareImpl.GeofenceTransition
753 mLocation = location;
/frameworks/base/core/java/android/view/
H A DSurfaceView.java93 final int[] mLocation = new int[2]; field in class:SurfaceView
312 getLocationInWindow(mLocation);
314 int l = mLocation[0];
315 int t = mLocation[1];
437 getLocationInWindow(mLocation);
444 || mLeft != mLocation[0] || mTop != mLocation[1]
450 + " left=" + (mLeft != mLocation[0])
451 + " top=" + (mTop != mLocation[1]));
455 mLeft = mLocation[
[all...]
H A DViewGroup.java413 // Index of the child's left position in the mLocation array
415 // Index of the child's top position in the mLocation array
6649 private final Rect mLocation = new Rect(); field in class:ViewGroup.ViewLocationHolder
6679 if (mLocation.bottom - another.mLocation.top <= 0) {
6683 if (mLocation.top - another.mLocation.bottom >= 0) {
6688 final int leftDifference = mLocation.left - another.mLocation.left;
6694 final int rightDifference = mLocation
[all...]
H A DViewRootImpl.java145 final WindowLeaked mLocation; field in class:ViewRootImpl
347 mLocation = new WindowLeaked(null);
348 mLocation.fillInStackTrace();
744 return mLocation;
/frameworks/base/services/java/com/android/server/
H A DTwilightService.java303 private Location mLocation; field in class:TwilightService.LocationHandler
328 final boolean hasMoved = hasMoved(mLocation, location);
329 final boolean hasBetterAccuracy = mLocation == null
330 || location.getAccuracy() < mLocation.getAccuracy();
381 if (mLocation == null) {
461 mLocation = location;
466 if (mLocation == null) {
475 mLocation.getLatitude(), mLocation.getLongitude());
480 mLocation
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DImageShader.java186 private int mLocation; field in class:ImageShader.ProgramUniform
201 mLocation = GLES20.glGetUniformLocation(program, mName);
216 return mLocation;

Completed in 5676 milliseconds