Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/provider/
H A DCallLog.java1949 ContentValues locationValues = new ContentValues(); in maybeInsertLocation() local
1950 locationValues.put(Locations.LATITUDE, params.mLatitude); in maybeInsertLocation()
1951 locationValues.put(Locations.LONGITUDE, params.mLongitude); in maybeInsertLocation()
1955 return resolver.insert(locationUri, locationValues); in maybeInsertLocation()
/aosp12/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DCallLogManagerTest.java859 ContentValues locationValues = verifyLocationInsertionWithCapture(CURRENT_USER_ID); in testCallComposerElements() local
860 assertEquals(lat, locationValues.getAsDouble(CallLog.Locations.LATITUDE), 0); in testCallComposerElements()
861 assertEquals(lon, locationValues.getAsDouble(CallLog.Locations.LONGITUDE), 0); in testCallComposerElements()