Searched refs:mLocation (Results 1 - 18 of 18) sorted by relevance

/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareMonitorEvent.java34 private final Location mLocation; field in class:GeofenceHardwareMonitorEvent
44 mLocation = location;
72 return mLocation;
108 parcel.writeParcelable(mLocation, flags);
118 mLocation);
H A DGeofenceHardwareImpl.java672 " Location: " + geofenceTransition.mLocation + ":" + mGeofences);
679 geofenceTransition.mLocation, geofenceTransition.mTimestamp,
802 private Location mLocation; field in class:GeofenceHardwareImpl.GeofenceTransition
816 mLocation = location;
/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/base/services/core/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.java45 private final Location mLocation; field in class:MockProvider
63 mLocation = new Location(name);
108 mLocation.set(l);
112 mLocationManager.reportLocation(mLocation, false);
146 pw.println(prefix + "mLocation:");
147 mLocation.dump(new PrintWriterPrinter(pw), prefix + " ");
H A DGpsLocationProvider.java366 private Location mLocation = new Location(LocationManager.GPS_PROVIDER); field in class:GpsLocationProvider
628 mLocation.setExtras(mLocationExtras);
1357 synchronized (mLocation) {
1360 mLocation.setLatitude(latitude);
1361 mLocation.setLongitude(longitude);
1362 mLocation.setTime(timestamp);
1365 mLocation.setElapsedRealtimeNanos(SystemClock.elapsedRealtimeNanos());
1368 mLocation.setAltitude(altitude);
1370 mLocation.removeAltitude();
1373 mLocation
[all...]
/frameworks/base/services/core/java/com/android/server/twilight/
H A DTwilightService.java201 private Location mLocation; field in class:TwilightService.LocationHandler
226 final boolean hasMoved = hasMoved(mLocation, location);
227 final boolean hasBetterAccuracy = mLocation == null
228 || location.getAccuracy() < mLocation.getAccuracy();
279 if (mLocation == null) {
359 mLocation = location;
364 if (mLocation == null) {
373 mLocation.getLatitude(), mLocation.getLongitude());
378 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/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmCellBroadcastHandler.java204 private final SmsCbLocation mLocation; field in class:GsmCellBroadcastHandler.SmsCbConcatInfo
208 mLocation = location;
213 return (mHeader.getSerialNumber() * 31) + mLocation.hashCode();
225 && mLocation.equals(other.mLocation);
234 * and Cell ID are saved in mLocation or set to -1 to match all values.
242 return mLocation.isInLocationArea(plmn, lac, cid);
/frameworks/base/core/java/android/app/
H A DNativeActivity.java84 final int[] mLocation = new int[2]; field in class:NativeActivity
306 mNativeContentView.getLocationInWindow(mLocation);
309 if (mLocation[0] != mLastContentX || mLocation[1] != mLastContentY
311 mLastContentX = mLocation[0];
312 mLastContentY = mLocation[1];
H A DLoadedApk.java833 final IntentReceiverLeaked mLocation; field in class:LoadedApk.ReceiverDispatcher
917 mLocation = new IntentReceiverLeaked(null);
918 mLocation.fillInStackTrace();
937 return mLocation;
1054 private final ServiceConnectionLeaked mLocation; field in class:LoadedApk.ServiceDispatcher
1091 mLocation = new ServiceConnectionLeaked(null);
1092 mLocation.fillInStackTrace();
1123 return mLocation;
/frameworks/base/core/java/android/view/
H A DSurfaceView.java93 final int[] mLocation = new int[2]; field in class:SurfaceView
319 getLocationInWindow(mLocation);
321 int l = mLocation[0];
322 int t = mLocation[1];
445 getLocationInWindow(mLocation);
452 || mLeft != mLocation[0] || mTop != mLocation[1]
458 + " left=" + (mLeft != mLocation[0])
459 + " top=" + (mTop != mLocation[1]));
463 mLeft = mLocation[
[all...]
H A DViewGroup.java445 // Index of the child's left position in the mLocation array
447 // Index of the child's top position in the mLocation array
7653 private final Rect mLocation = new Rect(); field in class:ViewGroup.ViewLocationHolder
7686 if (mLocation.bottom - another.mLocation.top <= 0) {
7690 if (mLocation.top - another.mLocation.bottom >= 0) {
7697 final int leftDifference = mLocation.left - another.mLocation.left;
7702 final int rightDifference = mLocation
[all...]
H A DViewRootImpl.java154 final WindowLeaked mLocation; field in class:ViewRootImpl
367 mLocation = new WindowLeaked(null);
368 mLocation.fillInStackTrace();
770 return mLocation;
/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/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
H A DResourceBundle.java683 public Location mLocation; field in class:ResourceBundle.BindingTargetBundle
696 mLocation = location;
720 mLocation = location;
724 return mLocation;
776 return mLocation == null ? null : Arrays.asList(mLocation);
784 private Location mLocation; field in class:ResourceBundle.BindingTargetBundle.BindingBundle
793 mLocation = location;
817 return mLocation;
821 mLocation
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DQSTileHost.java74 private final LocationController mLocation; field in class:QSTileHost
98 mLocation = location;
163 return mLocation;
/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 554 milliseconds