Searched defs:maxResults (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/location/java/android/location/
H A DGeocoder.java111 * @param maxResults max number of addresses to return. Smaller numbers (1 to 5) are recommended
123 public List<Address> getFromLocation(double latitude, double longitude, int maxResults) argument
133 String ex = mService.getFromLocation(latitude, longitude, maxResults,
160 * @param maxResults max number of results to return. Smaller numbers (1 to 5) are recommended
169 public List<Address> getFromLocationName(String locationName, int maxResults) throws IOException { argument
176 0, 0, 0, 0, maxResults, mParams, results);
206 * @param maxResults max number of addresses to return. Smaller numbers (1 to 5) are recommended
223 public List<Address> getFromLocationName(String locationName, int maxResults, argument
249 maxResults, mParams, result);
/frameworks/base/location/lib/java/com/android/location/provider/
H A DGeocodeProvider.java40 public String getFromLocation(double latitude, double longitude, int maxResults,
42 return GeocodeProvider.this.onGetFromLocation(latitude, longitude, maxResults,
48 double upperRightLatitude, double upperRightLongitude, int maxResults,
52 maxResults, params, addrs);
61 public abstract String onGetFromLocation(double latitude, double longitude, int maxResults, argument
71 double upperRightLatitude, double upperRightLongitude, int maxResults,
69 onGetFromLocationName(String locationName, double lowerLeftLatitude, double lowerLeftLongitude, double upperRightLatitude, double upperRightLongitude, int maxResults, GeocoderParams params, List<Address> addrs) argument
/frameworks/base/services/core/java/com/android/server/location/
H A DGeocoderProxy.java74 public String getFromLocation(double latitude, double longitude, int maxResults, argument
79 return provider.getFromLocation(latitude, longitude, maxResults, params, addrs);
89 double upperRightLatitude, double upperRightLongitude, int maxResults,
96 maxResults, params, addrs);
87 getFromLocationName(String locationName, double lowerLeftLatitude, double lowerLeftLongitude, double upperRightLatitude, double upperRightLongitude, int maxResults, GeocoderParams params, List<Address> addrs) argument
/frameworks/base/services/core/java/com/android/server/
H A DLocationManagerService.java2325 public String getFromLocation(double latitude, double longitude, int maxResults, argument
2328 return mGeocodeProvider.getFromLocation(latitude, longitude, maxResults,
2338 double upperRightLatitude, double upperRightLongitude, int maxResults,
2344 maxResults, params, addrs);
2336 getFromLocationName(String locationName, double lowerLeftLatitude, double lowerLeftLongitude, double upperRightLatitude, double upperRightLongitude, int maxResults, GeocoderParams params, List<Address> addrs) argument

Completed in 493 milliseconds