Searched refs:mLocation (Results 1 - 21 of 21) 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 DGnssLocationProvider.java368 private Location mLocation = new Location(LocationManager.GPS_PROVIDER); field in class:GnssLocationProvider
667 mLocation.setExtras(mLocationExtras);
1454 synchronized (mLocation) {
1457 mLocation.setLatitude(latitude);
1458 mLocation.setLongitude(longitude);
1459 mLocation.setTime(timestamp);
1462 mLocation.setElapsedRealtimeNanos(SystemClock.elapsedRealtimeNanos());
1465 mLocation.setAltitude(altitude);
1467 mLocation.removeAltitude();
1470 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.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/core/java/com/android/server/twilight/
H A DTwilightService.java309 private Location mLocation; field in class:TwilightService.LocationHandler
338 final boolean hasMoved = hasMoved(mLocation, location);
339 final boolean hasBetterAccuracy = mLocation == null
340 || location.getAccuracy() < mLocation.getAccuracy();
391 if (mLocation == null) {
476 mLocation = location;
481 if (mLocation == null) {
490 mLocation.getLatitude(), mLocation.getLongitude());
497 mLocation
[all...]
/frameworks/base/core/java/android/view/
H A DSurfaceView.java100 final int[] mLocation = new int[2]; field in class:SurfaceView
331 getLocationInWindow(mLocation);
333 int l = mLocation[0];
334 int t = mLocation[1];
466 getLocationInWindow(mLocation);
472 + " left=" + (mWindowSpaceLeft != mLocation[0])
473 + " top=" + (mWindowSpaceTop != mLocation[1]));
477 mWindowSpaceLeft = mLocation[0];
478 mWindowSpaceTop = mLocation[1];
656 getLocationInWindow(mLocation);
[all...]
H A DViewGroup.java450 // Index of the child's left position in the mLocation array
452 // Index of the child's top position in the mLocation array
7833 private final Rect mLocation = new Rect(); field in class:ViewGroup.ViewLocationHolder
7866 if (mLocation.bottom - another.mLocation.top <= 0) {
7870 if (mLocation.top - another.mLocation.bottom >= 0) {
7877 final int leftDifference = mLocation.left - another.mLocation.left;
7882 final int rightDifference = mLocation
[all...]
H A DViewRootImpl.java178 final WindowLeaked mLocation; field in class:ViewRootImpl
416 mLocation = new WindowLeaked(null);
417 mLocation.fillInStackTrace();
885 return mLocation;
/frameworks/compile/slang/
H A Dslang_rs_export_reduce.h44 clang::SourceLocation mLocation; member in class:slang::RSExportReduce
89 mLocation(Location),
142 const clang::SourceLocation &getLocation() const { return mLocation; }
H A Dslang_rs_export_reduce.cpp177 S.RSC.ReportError(mLocation,
190 S.RSC.ReportError(mLocation,
762 << " (" << mLocation.printToString(PP.getSourceManager()) << ")";
/frameworks/base/core/java/android/app/
H A DNativeActivity.java86 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.java1068 final IntentReceiverLeaked mLocation; field in class:LoadedApk.ReceiverDispatcher
1158 mLocation = new IntentReceiverLeaked(null);
1159 mLocation.fillInStackTrace();
1178 return mLocation;
1299 private final ServiceConnectionLeaked mLocation; field in class:LoadedApk.ServiceDispatcher
1335 mLocation = new ServiceConnectionLeaked(null);
1336 mLocation.fillInStackTrace();
1367 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.java763 public Location mLocation; field in class:ResourceBundle.BindingTargetBundle
776 mLocation = location;
801 mLocation = location;
805 return mLocation;
857 return mLocation == null ? null : Arrays.asList(mLocation);
865 private Location mLocation; field in class:ResourceBundle.BindingTargetBundle.BindingBundle
875 mLocation = location;
904 return mLocation;
908 mLocation
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DFusedPrintersProvider.java118 private Location mLocation; field in class:FusedPrintersProvider
131 return mLocation;
427 && !location.equals(mLocation)
428 && (mLocation == null
430 .getElapsedRealtimeNanos() > mLocation.getElapsedRealtimeNanos()
432 || (!mLocation.hasAccuracy()
433 || location.getAccuracy() < mLocation.getAccuracy()))) {
435 mLocation = location;
438 updatePrinters(mDiscoverySession.getPrinters(), mFavoritePrinters, mLocation);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DQSTileHost.java96 private final LocationController mLocation; field in class:QSTileHost
132 mLocation = location;
245 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 1603 milliseconds