Searched refs:match_count (Results 1 - 13 of 13) sorted by relevance
/external/vboot_reference/cgpt/ |
H A D | cgpt.c | 57 int match_count = 0; local 80 match_count = 1; 86 match_count++; 90 if (match_count == 1)
|
/external/autotest/client/site_tests/touch_WakeupSource/ |
H A D | touch_WakeupSource.py | 55 match_count = utils.run('ls %s 2>/dev/null | wc -l' % ( 57 if int(match_count) > 0:
|
/external/lldb/examples/darwin/heap_find/heap/ |
H A D | 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 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/Commands/ |
H A D | CommandObjectHelp.cpp | 167 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 D | 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/ |
H A D | 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/ |
H A D | 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)
|
H A D | SBTarget.cpp | 2252 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/Target/ |
H A D | Platform.cpp | 629 uint32_t match_count = 0; local 631 match_count = Host::FindProcesses (match_info, process_infos); 632 return match_count;
|
/external/lldb/source/Plugins/Platform/MacOSX/ |
H A D | 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;
|
/external/pcre/dist/ |
H A D | pcre_dfa_exec.c | 418 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/source/Symbol/ |
H A D | SymbolContext.cpp | 1161 uint32_t match_count = 0; local 1166 ++match_count; 1168 return match_count;
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | SymbolFileDWARFDebugMap.cpp | 875 const size_t match_count = indexes.size(); local 876 for (size_t i=0; i<match_count; ++i)
|
Completed in 266 milliseconds