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

/frameworks/base/location/java/android/location/
H A DGeocoder.java92 * @param maxResults max number of addresses to return. Smaller numbers (1 to 5) are recommended
104 public List<Address> getFromLocation(double latitude, double longitude, int maxResults) argument
114 String ex = mService.getFromLocation(latitude, longitude, maxResults,
141 * @param maxResults max number of results to return. Smaller numbers (1 to 5) are recommended
150 public List<Address> getFromLocationName(String locationName, int maxResults) throws IOException { argument
157 0, 0, 0, 0, maxResults, mParams, results);
187 * @param maxResults max number of addresses to return. Smaller numbers (1 to 5) are recommended
204 public List<Address> getFromLocationName(String locationName, int maxResults, argument
230 maxResults, mParams, result);
/frameworks/base/location/java/android/location/provider/
H A DGeocodeProvider.java38 public String getFromLocation(double latitude, double longitude, int maxResults,
40 return GeocodeProvider.this.onGetFromLocation(latitude, longitude, maxResults,
46 double upperRightLatitude, double upperRightLongitude, int maxResults,
50 maxResults, params, addrs);
59 public abstract String onGetFromLocation(double latitude, double longitude, int maxResults, argument
69 double upperRightLatitude, double upperRightLongitude, int maxResults,
67 onGetFromLocationName(String locationName, double lowerLeftLatitude, double lowerLeftLongitude, double upperRightLatitude, double upperRightLongitude, int maxResults, GeocoderParams params, List<Address> addrs) argument
/frameworks/base/location/java/com/android/internal/location/
H A DGeocoderProxy.java69 public String getFromLocation(double latitude, double longitude, int maxResults, argument
77 return provider.getFromLocation(latitude, longitude, maxResults,
88 double upperRightLatitude, double upperRightLongitude, int maxResults,
98 maxResults, params, addrs);
86 getFromLocationName(String locationName, double lowerLeftLatitude, double lowerLeftLongitude, double upperRightLatitude, double upperRightLongitude, int maxResults, GeocoderParams params, List<Address> addrs) argument
/frameworks/base/services/java/com/android/server/
H A DLocationManagerService.java1695 public String getFromLocation(double latitude, double longitude, int maxResults, argument
1698 return mGeocodeProvider.getFromLocation(latitude, longitude, maxResults,
1707 double upperRightLatitude, double upperRightLongitude, int maxResults,
1713 maxResults, params, addrs);
1705 getFromLocationName(String locationName, double lowerLeftLatitude, double lowerLeftLongitude, double upperRightLatitude, double upperRightLongitude, int maxResults, GeocoderParams params, List<Address> addrs) argument

Completed in 51 milliseconds