HomeSort by relevance Sort by last modified time
    Searched full:max_results (Results 1 - 25 of 36) sorted by null

1 2

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DicTraverseSession.java 28 // Must be equal to MAX_RESULTS in native/jni/src/defines.h
29 private static final int MAX_RESULTS = 18;
37 new int[Constants.DICTIONARY_MAX_WORD_LENGTH * MAX_RESULTS];
38 public final int[] mSpaceIndices = new int[MAX_RESULTS];
39 public final int[] mOutputScores = new int[MAX_RESULTS];
40 public final int[] mOutputTypes = new int[MAX_RESULTS];
  /external/chromium_org/chrome/browser/history/
visit_filter.cc 98 size_t max_results,
102 times->reserve(max_results);
105 if (!max_results)
106 max_results = kMaxReturnedResults;
109 // |max_results| days.
113 std::make_pair(begin_time_of_the_day - one_day * (max_results - 1),
118 for (size_t i = 0; i < max_results; ++i) {
192 size_t max_results,
207 times->reserve(max_results);
213 if (!max_results)
    [all...]
visit_filter.h 38 // Sets |max_results| of the results to be returned. 0 means "return results
40 void set_max_results(size_t max_results) {
41 max_results_ = max_results;
52 // back in time to look should be controlled by changing |max_results|.
116 size_t max_results,
124 size_t max_results,
130 size_t max_results,
visit_database.h 83 // If |max_results| is non-zero, up to that many results will be returned. If
89 int max_results, VisitVector* visits);
95 // If |max_results| is non-zero, up to that many results will be returned. If
102 int max_results,
142 // Returns the |max_results| most recent visit sessions for |url_id|.
148 int max_results,
visit_database.cc 303 int max_results,
317 max_results ? max_results : std::numeric_limits<int64>::max());
325 int max_results,
344 max_results ? max_results : std::numeric_limits<int64>::max());
374 int max_results,
377 if (max_results)
378 visits->reserve(max_results);
400 if (max_results > 0 && static_cast<int>(visits->size()) >= max_results
    [all...]
  /external/chromium_org/google_apis/drive/
drive_api_url_generator.cc 116 GURL DriveApiUrlGenerator::GetFilesListUrl(int max_results,
122 if (max_results != 100) {
124 url, "maxResults", base::IntToString(max_results));
147 int max_results,
159 if (max_results != 100) {
161 url, "maxResults", base::IntToString(max_results));
drive_api_url_generator.h 59 GURL GetFilesListUrl(int max_results,
71 int max_results,
drive_api_url_generator_unittest.cc 171 int max_results; member in struct:google_apis::TestPattern
196 kTestPatterns[i].max_results, kTestPatterns[i].page_token,
203 kTestPatterns[i].max_results, kTestPatterns[i].page_token,
245 int max_results; member in struct:google_apis::TestPattern
297 kTestPatterns[i].max_results,
306 kTestPatterns[i].max_results,
drive_api_requests.h 396 int max_results() const { return max_results_; } function in class:google_apis::drive::FilesListRequest
397 void set_max_results(int max_results) { max_results_ = max_results; }
549 int max_results() const { return max_results_; } function in class:google_apis::drive::ChangesListRequest
550 void set_max_results(int max_results) { max_results_ = max_results; }
    [all...]
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
rtt.cpp 101 static const int MAX_RESULTS = 64;
102 wifi_rtt_result rttResults[MAX_RESULTS];
273 memset(rttResults, 0, sizeof(wifi_rtt_result) * MAX_RESULTS);
276 num = min(MAX_RESULTS, num);
gscan.cpp 931 static const int MAX_RESULTS = 64;
932 wifi_scan_result mResults[MAX_RESULTS];
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/sessions/
sessions_api.cc 202 int max_results = api::sessions::MAX_SESSION_RESULTS; local
203 if (params->filter && params->filter->max_results)
204 max_results = *params->filter->max_results;
205 EXTENSION_FUNCTION_VALIDATE(max_results >= 0 &&
206 max_results <= api::sessions::MAX_SESSION_RESULTS);
227 it != entries.end() && static_cast<int>(result.size()) < max_results;
343 int max_results = api::sessions::MAX_SESSION_RESULTS; local
346 if (params->filter && params->filter->max_results)
347 max_results = *params->filter->max_results
    [all...]
  /external/chromium_org/ui/app_list/views/
search_result_list_view.cc 49 int max_results = kMaxResults; local
51 max_results = kExperimentAppListMaxResults;
53 for (int i = 0; i < max_results; ++i)
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_nodes_cache.h 39 mDicNodePriorityQueueForTerminal(MAX_RESULTS),
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/internal/
dic_node_state_output.h 57 static_cast<int16_t>(MAX_RESULTS));
  /external/chromium_org/chrome/browser/ui/app_list/search/
mixer.cc 54 Group(size_t max_results, double boost)
55 : max_results_(max_results),
  /external/chromium_org/ui/app_list/
app_list_model.h 121 // truncated to |max_results|.
125 size_t max_results);
app_list_model.cc 292 size_t max_results) {
298 if (matches.size() == max_results)
  /external/chromium_org/chrome/browser/drive/
fake_drive_service.cc 460 int max_results = default_max_results_; local
478 base::StringToInt(parameters[i].second, &max_results);
484 start_offset, max_results, NULL, callback);
    [all...]
fake_drive_service.h 332 // is between |start_offset| (inclusive) and |start_offset| + |max_results|
340 int max_results,
  /external/chromium_org/native_client_sdk/src/examples/demo/drive/
drive.cc 163 int max_results; member in struct:ListFilesParams
177 AddQueryParameter(&p.url, "maxResults", params.max_results, true);
452 p.max_results = 1;
  /packages/inputmethods/LatinIME/native/jni/src/
defines.h 33 // Must be equal to BinaryDictionary.MAX_RESULTS in Java
34 #define MAX_RESULTS 18
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
typing_traversal.h 150 return MAX_RESULTS;
  /external/chromium_org/chrome/browser/autocomplete/
history_url_provider.cc 817 const size_t max_results = local
    [all...]
history_url_provider.h 298 // Removes results that redirect to each other, leaving at most |max_results|
302 size_t max_results) const;

Completed in 1735 milliseconds

1 2