OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getFromLocation
(Results
1 - 5
of
5
) sorted by null
/cts/tests/tests/location/src/android/location/cts/
GeocoderTest.java
69
// There is no guarantee that geocoder.
getFromLocation
returns accurate results
78
geocoder.
getFromLocation
(60, 30, 5);
92
geocoder.
getFromLocation
(-91, 30, 5);
99
geocoder.
getFromLocation
(91, 30, 5);
106
geocoder.
getFromLocation
(10, -181, 5);
113
geocoder.
getFromLocation
(10, 181, 5);
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowGeocoderTest.java
46
assertThat(geocoder.
getFromLocation
(90.0,90.0,1)).hasSize(0);
56
List<Address> result = geocoder.
getFromLocation
(90.0, 90.0, 1);
59
result = geocoder.
getFromLocation
(90.0, 90.0, 2);
62
result = geocoder.
getFromLocation
(90.0, 90.0, 3);
69
geocoder.
getFromLocation
(91.0, 90.0, 1);
79
geocoder.
getFromLocation
(15.0, -211.0, 1);
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowGeocoder.java
33
protected List<Address>
getFromLocation
(double latitude, double longitude, int maxResults)
53
/** Sets the value to be returned by {@link Geocoder#
getFromLocation
(double, double, int)}. */
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
LocationFacade.java
175
return mGeocoder.
getFromLocation
(latitude, longitude, maxResults);
/development/samples/training/location-aware/src/com/example/android/location/
LocationActivity.java
354
addresses = geocoder.
getFromLocation
(loc.getLatitude(), loc.getLongitude(), 1);
Completed in 493 milliseconds