Searched refs:match_count (Results 1 - 23 of 23) sorted by last modified time

/external/pcre/dist/
H A Dpcre_dfa_exec.c418 int active_count, new_count, match_count; local
450 match_count = PCRE_ERROR_NOMATCH; /* A negative number */
790 if (match_count < 0) match_count = (offsetcount >= 2)? 1 : 0;
791 else if (match_count > 0 && ++match_count * 2 > offsetcount)
792 match_count = 0;
793 count = ((match_count == 0)? offsetcount : match_count * 2) - 2;
806 match_count, rleve
[all...]
/external/lldb/examples/darwin/heap_find/heap/
H A Dheap_find.cpp203 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
968 data_info.match_count = 0; // Initialize the match count to zero
995 data_info.match_count = 0; // Initialize the match count to zero
1043 data_info.match_count = 0; // Initialize the match count to zero
1065 data_info.match_count
[all...]
/external/lldb/source/API/
H A DSBModule.cpp464 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)
H A DSBTarget.cpp2252 const uint32_t match_count = target_sp->GetImages().FindGlobalVariables (ConstString (name), local
2257 if (match_count > 0)
2262 for (uint32_t i=0; i<match_count; ++i)
/external/lldb/source/Commands/
H A DCommandObjectHelp.cpp167 const size_t match_count = matches.GetSize(); local
168 for (size_t i = 0; i < match_count; i++)
/external/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp448 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/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp577 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;
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp875 const size_t match_count = indexes.size(); local
876 for (size_t i=0; i<match_count; ++i)
/external/lldb/source/Symbol/
H A DSymbolContext.cpp1161 uint32_t match_count = 0; local
1166 ++match_count;
1168 return match_count;
/external/lldb/source/Target/
H A DPlatform.cpp629 uint32_t match_count = 0; local
631 match_count = Host::FindProcesses (match_info, process_infos);
632 return match_count;
/external/lldb/tools/darwin-threads/
H A Dexamine-threads.c39 int match_count = 0; local
50 match_count++;
57 if (match_count == 0)
62 if (match_count > 1)
/external/chromium_org/tools/win/split_link/
H A Dsplit_link.py320 match_count = 0
333 match_count += 1
334 if match_count == 0:
/external/chromium_org/content/renderer/
H A Drender_view_impl.cc2460 int match_count,
2466 match_count,
2696 int match_count = result ? 1 : 0; // 1 here means possibly more coming. local
2702 SendFindReply(request_id, match_count, ordinal, selection_rect,
2459 SendFindReply(int request_id, int match_count, int ordinal, const WebRect& selection_rect, bool final_status_update) argument
H A Drender_view_impl.h785 int match_count,
/external/chromium_org/components/history/core/browser/
H A Dhistory_types_unittest.cc19 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/task_manager/
H A Dtask_manager_browsertest_util.cc91 int match_count = 0; local
105 match_count++;
108 return match_count;
/external/chromium_org/chrome/browser/autocomplete/
H A Dbookmark_provider_unittest.cc198 // must equal |match_count|. The second index represents each expected
221 const size_t match_count; // This count must match the number of major member in struct:QueryData
273 EXPECT_LE(matches.size(), query_data[i].match_count)
277 EXPECT_GE(matches.size(), query_data[i].match_count)
304 // |match_count| must match the number of elements in the following
306 const size_t match_count; member in struct:QueryData
354 for (size_t j = 0; j < std::max(query_data[i].match_count, matches.size());
356 EXPECT_LT(j, query_data[i].match_count) << " Unexpected match '"
359 if (j >= query_data[i].match_count)
H A Dhistory_provider.cc94 size_t match_count = matches.size(); local
95 for (size_t i = 0; i < match_count;) {
103 } while ((i < match_count) && (offset == matches[i].offset));
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_cookie_helper_unittest.cc106 unsigned long match_count = std::count_if(cookie_expectations_.begin(), local
109 EXPECT_EQ(cookie_expectations_.size(), match_count);
/external/chromium_org/android_webview/browser/
H A Dfind_helper.cc55 int match_count,
63 NotifyResults(active_ordinal, match_count, finished);
96 int match_count,
99 if (match_count == -1)
100 match_count = last_match_count_;
102 last_match_count_ = match_count;
115 if (match_count == -1) {
117 match_count = 0;
130 listener_->OnFindResultReceived(active_ordinal, match_count, finished);
54 HandleFindReply(int request_id, int match_count, int active_ordinal, bool finished) argument
95 NotifyResults(int active_ordinal, int match_count, bool finished) argument
H A Dfind_helper.h22 int match_count,
37 int match_count,
47 void NotifyResults(int active_ordinal, int match_count, bool finished);
/external/chromium_org/android_webview/native/
H A Daw_contents.cc708 int match_count,
717 env, obj.obj(), active_ordinal, match_count, finished);
707 OnFindResultReceived(int active_ordinal, int match_count, bool finished) argument
H A Daw_contents.h176 int match_count,

Completed in 375 milliseconds