[go: nahoru, domu]

Searched defs:maxResults (Results 1 - 5 of 5) 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/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DScanResults.java163 public static ScanResults createOverflowing(int id, int maxResults, argument
165 return new ScanResults(id, maxResults, nativeResults);
168 private ScanResults(int id, int maxResults, ScanDetail... nativeResults) { argument
177 if (maxResults == -1) {
181 Math.min(sortedScanResults.length, maxResults));
/frameworks/base/services/core/java/com/android/server/
H A DLocationManagerService.java2437 public String getFromLocation(double latitude, double longitude, int maxResults, argument
2440 return mGeocodeProvider.getFromLocation(latitude, longitude, maxResults,
2450 double upperRightLatitude, double upperRightLongitude, int maxResults,
2456 maxResults, params, addrs);
2448 getFromLocationName(String locationName, double lowerLeftLatitude, double lowerLeftLongitude, double upperRightLatitude, double upperRightLongitude, int maxResults, GeocoderParams params, List<Address> addrs) argument

Completed in 159 milliseconds