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/java/com/android/server/location/
H A DGeocoderProxy.java75 public String getFromLocation(double latitude, double longitude, int maxResults, argument
80 return provider.getFromLocation(latitude, longitude, maxResults, params, addrs);
90 double upperRightLatitude, double upperRightLongitude, int maxResults,
97 maxResults, params, addrs);
88 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.java1978 public String getFromLocation(double latitude, double longitude, int maxResults, argument
1981 return mGeocodeProvider.getFromLocation(latitude, longitude, maxResults,
1991 double upperRightLatitude, double upperRightLongitude, int maxResults,
1997 maxResults, params, addrs);
1989 getFromLocationName(String locationName, double lowerLeftLatitude, double lowerLeftLongitude, double upperRightLatitude, double upperRightLongitude, int maxResults, GeocoderParams params, List<Address> addrs) argument

Completed in 77 milliseconds