OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:num_matches
(Results
1 - 5
of
5
) sorted by null
/external/compiler-rt/lib/lsan/
lsan_common_linux.cc
39
uptr
num_matches
= GetListOfModules(
local
41
if (
num_matches
== 1) {
45
if (
num_matches
== 0)
48
else if (
num_matches
> 1)
/external/chromium/chrome/browser/autocomplete/
autocomplete.cc
653
const size_t
num_matches
= std::min(kMaxMatches, matches_.size());
local
654
std::partial_sort(matches_.begin(), matches_.begin() +
num_matches
,
656
matches_.resize(
num_matches
);
[
all
...]
/external/chromium_org/chrome/browser/autocomplete/
autocomplete_result.cc
188
size_t
num_matches
;
local
189
for (
num_matches
= 0u; (
num_matches
< max_num_matches) &&
190
(comparing_object.GetDemotedRelevance(*match_at(
num_matches
)) > 0);
191
++
num_matches
) {}
192
matches_.resize(
num_matches
);
search_provider.cc
836
int
num_matches
= kMaxMatches * 5;
local
841
num_matches
, &default_history_results_);
849
keyword_input_.text(),
num_matches
, &keyword_history_results_);
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
dtlstransportchannel_unittest.cc
288
int
num_matches
= 0;
local
291
++
num_matches
;
294
return (
num_matches
< ((static_cast<int>(size) - 5) / 10));
Completed in 438 milliseconds