HomeSort by relevance Sort by last modified time
    Searched defs:match_count (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/chrome/browser/history/
history_types_unittest.cc 19 size_t match_count; local
20 const size_t* matches = result.MatchesForURL(result[i].url(), &match_count);
23 for (size_t match = 0; match < match_count; match++) {
63 size_t match_count; local
64 const size_t* matches = results.MatchesForURL(url1, &match_count);
65 ASSERT_EQ(2U, match_count);
70 matches = results.MatchesForURL(url2, &match_count);
71 ASSERT_EQ(1U, match_count);
79 matches = results.MatchesForURL(url1, &match_count);
80 ASSERT_EQ(1U, match_count);
106 size_t match_count; local
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
history_provider.cc 90 size_t match_count = matches.size(); local
91 for (size_t i = 0; i < match_count;) {
99 } while ((i < match_count) && (offset == matches[i].offset));
bookmark_provider_unittest.cc 201 // must equal |match_count|. The second index represents each expected
224 const size_t match_count; // This count must match the number of major member in struct:QueryData
270 EXPECT_LE(matches.size(), query_data[i].match_count)
274 EXPECT_GE(matches.size(), query_data[i].match_count)
301 // |match_count| must match the number of elements in the following
303 const size_t match_count; member in struct:QueryData
347 for (size_t j = 0; j < std::max(query_data[i].match_count, matches.size());
349 EXPECT_LT(j, query_data[i].match_count) << " Unexpected match '"
352 if (j >= query_data[i].match_count)
  /external/lldb/source/Commands/
CommandObjectHelp.cpp 167 const size_t match_count = matches.GetSize(); local
168 for (size_t i = 0; i < match_count; i++)
  /external/chromium_org/chrome/browser/task_manager/
task_manager_browsertest_util.cc 90 int match_count = 0; local
104 match_count++;
107 return match_count;
  /external/lldb/source/Plugins/Platform/FreeBSD/
PlatformFreeBSD.cpp 448 uint32_t match_count = 0; local
452 match_count = Platform::FindProcesses (match_info, process_infos);
458 match_count = m_remote_platform_sp->FindProcesses (match_info, process_infos);
460 return match_count;
  /external/lldb/tools/darwin-threads/
examine-threads.c 39 int match_count = 0; local
50 match_count++;
57 if (match_count == 0)
62 if (match_count > 1)
  /external/lldb/source/API/
SBModule.cpp 464 const uint32_t match_count = module_sp->FindGlobalVariables (ConstString (name), local
470 if (match_count > 0)
472 for (uint32_t i=0; i<match_count; ++i)
SBTarget.cpp 2252 const uint32_t match_count = target_sp->GetImages().FindGlobalVariables (ConstString (name), local
    [all...]
  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformDarwin.cpp 577 uint32_t match_count = 0; local
581 match_count = Platform::FindProcesses (match_info, process_infos);
587 match_count = m_remote_platform_sp->FindProcesses (match_info, process_infos);
589 return match_count;
    [all...]
  /external/lldb/source/Symbol/
SymbolContext.cpp 1161 uint32_t match_count = 0; local
    [all...]
  /external/lldb/source/Target/
Platform.cpp 629 uint32_t match_count = 0; local
631 match_count = Host::FindProcesses (match_info, process_infos);
632 return match_count;
  /art/runtime/jdwp/
jdwp_event.cc 403 void JdwpState::CleanupMatchList(JdwpEvent** match_list, size_t match_count) {
406 while (match_count--) {
553 static JdwpSuspendPolicy scanSuspendPolicy(JdwpEvent** match_list, int match_count) {
556 while (match_count--) {
777 static void LogMatchingEventsAndThread(JdwpEvent** match_list, size_t match_count,
780 for (size_t i = 0; i < match_count; ++i) {
860 size_t match_count = 0; local
870 FindMatchingEvents(EK_BREAKPOINT, basket, match_list, &match_count);
873 FindMatchingEvents(EK_SINGLE_STEP, basket, match_list, &match_count);
876 FindMatchingEvents(EK_METHOD_ENTRY, basket, match_list, &match_count);
944 size_t match_count = 0; local
1046 size_t match_count = 0; local
1153 size_t match_count = 0; local
1241 size_t match_count = 0; local
    [all...]
  /external/lldb/examples/darwin/heap_find/heap/
heap_find.cpp 203 uint32_t match_count; member in struct:range_contains_data_callback_info_t
706 ++info->match_count;
730 ++info->match_count;
785 ++info->match_count;
914 data_info.match_count = 0; // Initialize the match count to zero
942 data_info.match_count = 0; // Initialize the match count to zero
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
SymbolFileDWARFDebugMap.cpp 875 const size_t match_count = indexes.size(); local
    [all...]
  /external/chromium_org/content/renderer/
render_view_impl.cc 2445 int match_count = result ? 1 : 0; \/\/ 1 here means possibly more coming. local
    [all...]

Completed in 215 milliseconds