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

1 2

  /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 82 // If |max_results| is non-zero, up to that many results will be returned. If
88 int max_results, VisitVector* visits);
94 // If |max_results| is non-zero, up to that many results will be returned. If
101 int max_results,
141 // Returns the |max_results| most recent visit sessions for |url_id|.
147 int max_results,
visit_database.cc 304 int max_results,
318 max_results ? max_results : std::numeric_limits<int64>::max());
326 int max_results,
345 max_results ? max_results : std::numeric_limits<int64>::max());
375 int max_results,
378 if (max_results)
379 visits->reserve(max_results);
401 if (max_results > 0 && static_cast<int>(visits->size()) >= max_results
    [all...]
url_database.h 173 size_t max_results,
url_database.cc 267 size_t max_results,
301 statement.BindInt(2, static_cast<int>(max_results));
  /external/chromium_org/chrome/browser/google_apis/
drive_api_url_generator.h 42 // max_results:
45 bool include_deleted, int64 start_changestamp, int max_results) const;
53 // max_results: The max of the number of files resource in the response.
54 GURL GetFilelistUrl(const std::string& search_string, int max_results) const;
drive_api_url_generator.cc 36 GURL AddMaxResultParam(const GURL& url, int max_results) {
37 DCHECK_GT(max_results, 0);
39 url, "maxResults", base::IntToString(max_results));
69 bool include_deleted, int64 start_changestamp, int max_results) const {
84 return AddMaxResultParam(url, max_results);
92 const std::string& search_string, int max_results) const {
94 url = AddMaxResultParam(url, max_results);
drive_api_requests.cc 114 int max_results,
120 max_results_(max_results) {
137 int max_results,
142 max_results_(max_results) {
drive_api_requests.h 77 // |max_results| specifies the max of the number of files resource in the
83 int max_results,
110 int max_results,
  /external/chromium/chrome/browser/history/
visit_database.h 62 // If |max_results| is non-zero, up to that many results will be returned. If
68 int max_results, VisitVector* visits);
74 // If |max_results| is non-zero, up to that many results will be returned. If
81 int max_results,
108 // Returns the |max_results| most recent visit sessions for |url_id|.
114 int max_results,
visit_database.cc 248 int max_results,
264 max_results ? max_results : std::numeric_limits<int64>::max());
272 int max_results,
293 max_results ? max_results : std::numeric_limits<int64>::max());
366 int max_results,
382 statement.BindInt(1, max_results);
url_database.h 172 size_t max_results,
url_database.cc 294 size_t max_results,
331 statement.BindInt(2, static_cast<int>(max_results));
  /external/chromium_org/chrome/browser/extensions/api/session_restore/
session_restore_api.cc 122 unsigned int max_results = kMaxRecentlyClosedSessionResults; local
123 if (params->options && params->options->max_results)
124 max_results = *params->options->max_results;
125 EXTENSION_FUNCTION_VALIDATE(max_results >= 0 &&
126 max_results <= kMaxRecentlyClosedSessionResults);
138 it != entries.end() && result.size() < max_results; ++it) {
  /external/chromium_org/chrome/browser/extensions/api/history/
history_api.cc 307 int max_results = 100; local
308 if (params->details.max_results.get())
309 max_results = *params->details.max_results;
312 hs->QueryFilteredURLs(max_results, filter, false, &cancelable_consumer_,
386 if (params->query.max_results.get())
387 options.max_count = *params->query.max_results;
  /external/chromium/chrome/browser/autocomplete/
history_url_provider.h 268 // Removes results that redirect to each other, leaving at most |max_results|
272 size_t max_results) const;
history_url_provider.cc 715 size_t max_results) const {
717 (source < matches->size()) && (source < max_results); ) {
739 if (matches->size() > max_results)
740 matches->resize(max_results);
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
history_url_provider.h 285 // Removes results that redirect to each other, leaving at most |max_results|
289 size_t max_results) const;
history_url_provider.cc     [all...]
  /external/chromium_org/chrome/browser/ui/app_list/search/
mixer.cc 99 Group(size_t max_results, double boost)
100 : max_results_(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;
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_drive.cc 474 int max_results = 0; local
475 if (!search_params->GetInteger("maxResults", &max_results))
483 max_results);
506 max_results,
  /external/chromium_org/chrome/browser/drive/
fake_drive_service.cc 424 int max_results = default_max_results_; local
442 base::StringToInt(parameters[i].second, &max_results);
449 start_offset, max_results, NULL, callback);
    [all...]
fake_drive_service.h 260 // is between |start_offset| (inclusive) and |start_offset| + |max_results|
268 int max_results,

Completed in 3756 milliseconds

1 2