Home
last modified time | relevance | path

Searched refs:maxResults (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/location/lib/java/com/android/location/provider/
DGeocodeProvider.java41 public String getFromLocation(double latitude, double longitude, int maxResults,
43 return GeocodeProvider.this.onGetFromLocation(latitude, longitude, maxResults,
49 double upperRightLatitude, double upperRightLongitude, int maxResults,
53 maxResults, params, addrs);
62 public abstract String onGetFromLocation(double latitude, double longitude, int maxResults, in onGetFromLocation() argument
72 double upperRightLatitude, double upperRightLongitude, int maxResults, in onGetFromLocationName() argument
/frameworks/base/location/java/android/location/
DGeocoder.java123 public List<Address> getFromLocation(double latitude, double longitude, int maxResults) in getFromLocation() argument
133 String ex = mService.getFromLocation(latitude, longitude, maxResults, in getFromLocation()
169 … public List<Address> getFromLocationName(String locationName, int maxResults) throws IOException { in getFromLocationName() argument
176 0, 0, 0, 0, maxResults, mParams, results); in getFromLocationName()
223 public List<Address> getFromLocationName(String locationName, int maxResults, in getFromLocationName() argument
249 maxResults, mParams, result); in getFromLocationName()
DIGeocodeProvider.aidl30 String getFromLocation(double latitude, double longitude, int maxResults, in getFromLocation() argument
36 double upperRightLatitude, double upperRightLongitude, int maxResults, in getFromLocationName() argument
DILocationManager.aidl58 String getFromLocation(double latitude, double longitude, int maxResults, in getFromLocation() argument
62 double upperRightLatitude, double upperRightLongitude, int maxResults, in getFromLocationName() argument
/frameworks/base/services/core/java/com/android/server/location/
DGeocoderProxy.java67 public String getFromLocation(double latitude, double longitude, int maxResults, in getFromLocation() argument
71 return provider.getFromLocation(latitude, longitude, maxResults, params, addrs); in getFromLocation()
77 double upperRightLatitude, double upperRightLongitude, int maxResults, in getFromLocationName() argument
83 maxResults, params, addrs); in getFromLocationName()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DScanResults.java154 public static ScanResults createOverflowing(int id, int bandScanned, int maxResults, in createOverflowing() argument
156 return new ScanResults(id, bandScanned, maxResults, nativeResults); in createOverflowing()
159 private ScanResults(int id, int bandScanned, int maxResults, ScanDetail... nativeResults) { in ScanResults() argument
168 if (maxResults == -1) { in ScanResults()
172 Math.min(sortedScanResults.length, maxResults)); in ScanResults()
/frameworks/base/core/java/android/widget/
DSearchView.java1717 int maxResults = 1; in createVoiceAppSearchIntent() local
1730 maxResults = searchable.getVoiceMaxResults(); in createVoiceAppSearchIntent()
1735 voiceIntent.putExtra(RecognizerIntent.EXTRA_MAX_RESULTS, maxResults); in createVoiceAppSearchIntent()
/frameworks/base/services/core/java/com/android/server/
DLocationManagerService.java3489 public String getFromLocation(double latitude, double longitude, int maxResults, in getFromLocation() argument
3492 return mGeocodeProvider.getFromLocation(latitude, longitude, maxResults, in getFromLocation()
3502 double upperRightLatitude, double upperRightLongitude, int maxResults, in getFromLocationName() argument
3508 maxResults, params, addrs); in getFromLocationName()