Home
last modified time | relevance | path

Searched refs:num_matches (Results 1 – 25 of 25) sorted by relevance

/external/lldb/source/Commands/
DCommandObjectSource.cpp456 size_t num_matches = 0; in FindMatchingFunctions() local
473num_matches += matching_modules.FindFunctions (name, eFunctionNameTypeAuto, include_symbols, inclu… in FindMatchingFunctions()
479num_matches = target->GetImages().FindFunctions (name, eFunctionNameTypeAuto, include_symbols, inc… in FindMatchingFunctions()
481 return num_matches; in FindMatchingFunctions()
486 size_t num_matches = 0; in FindMatchingFunctionSymbols() local
499num_matches += matching_modules.FindFunctionSymbols (name, eFunctionNameTypeAuto, sc_list); in FindMatchingFunctionSymbols()
505num_matches = target->GetImages().FindFunctionSymbols (name, eFunctionNameTypeAuto, sc_list); in FindMatchingFunctionSymbols()
507 return num_matches; in FindMatchingFunctionSymbols()
530 size_t num_matches = FindMatchingFunctions (target, name, sc_list); in DoExecute() local
531 if (!num_matches) in DoExecute()
[all …]
DCommandObjectTarget.cpp1361 uint32_t num_matches = 0; in DumpCompileUnitLineTable() local
1365 num_matches = module->ResolveSymbolContextsForFileSpec (file_spec, in DumpCompileUnitLineTable()
1371 for (uint32_t i=0; i<num_matches; ++i) in DumpCompileUnitLineTable()
1391 return num_matches; in DumpCompileUnitLineTable()
1590 uint32_t num_matches = 0; in LookupSymbolInModule() local
1594 num_matches = symtab->AppendSymbolIndexesMatchingRegExAndType (name_regexp, in LookupSymbolInModule()
1600 num_matches = symtab->AppendSymbolIndexesWithName (symbol_name, match_indexes); in LookupSymbolInModule()
1604 if (num_matches > 0) in LookupSymbolInModule()
1607 strm.Printf("%u symbols match %s'%s' in ", num_matches, in LookupSymbolInModule()
1613 for (i=0; i < num_matches; ++i) in LookupSymbolInModule()
[all …]
DCommandCompletions.cpp429 …const size_t num_matches = g_property_names.AutoComplete (partial_setting_name, matches, exact_mat… in SettingsNames() local
431 return num_matches; in SettingsNames()
444 const uint32_t num_matches = PluginManager::AutoCompletePlatformName(partial_name, matches); in PlatformPluginNames() local
445 word_complete = num_matches == 1; in PlatformPluginNames()
446 return num_matches; in PlatformPluginNames()
458 const uint32_t num_matches = ArchSpec::AutoComplete (partial_name, matches); in ArchitectureNames() local
459 word_complete = num_matches == 1; in ArchitectureNames()
460 return num_matches; in ArchitectureNames()
DCommandObjectHelp.cpp126 size_t num_matches = matches.GetSize(); in DoExecute() local
127 for (size_t match_idx = 0; match_idx < num_matches; match_idx++) in DoExecute()
DCommandObjectFrame.cpp424 size_t num_matches = 0; in DoExecute() local
427num_matches); in DoExecute()
457 else if (num_matches == 0) in DoExecute()
DCommandObjectMultiword.cpp67 …int num_matches = CommandObject::AddNamesMatchingPartialString (m_subcommand_dict, sub_cmd, *match… in GetSubcommandSP() local
69 if (num_matches == 1) in GetSubcommandSP()
DCommandObjectProcess.cpp499 const size_t num_matches = process_infos.GetSize(); in HandleOptionArgumentCompletion() local
500 if (num_matches > 0) in HandleOptionArgumentCompletion()
502 for (size_t i=0; i<num_matches; ++i) in HandleOptionArgumentCompletion()
/external/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
DItaniumABILanguageRuntime.cpp123 uint32_t num_matches = 0; in GetDynamicTypeAndAddress() local
128 num_matches = sc.module_sp->FindTypes (sc, in GetDynamicTypeAndAddress()
138 if (num_matches == 0) in GetDynamicTypeAndAddress()
140 num_matches = target->GetImages().FindTypes (sc, in GetDynamicTypeAndAddress()
148 if (num_matches == 0) in GetDynamicTypeAndAddress()
154 if (num_matches == 1) in GetDynamicTypeAndAddress()
166 else if (num_matches > 1) in GetDynamicTypeAndAddress()
171 for (i = 0; i < num_matches; i++) in GetDynamicTypeAndAddress()
186 for (i = 0; i < num_matches; i++) in GetDynamicTypeAndAddress()
205 if (i == num_matches) in GetDynamicTypeAndAddress()
/external/compiler-rt/lib/lsan/
Dlsan_common_linux.cc40 uptr num_matches = GetListOfModules( in InitializePlatformSpecificModules() local
42 if (num_matches == 1) { in InitializePlatformSpecificModules()
46 if (num_matches == 0) in InitializePlatformSpecificModules()
49 else if (num_matches > 1) in InitializePlatformSpecificModules()
/external/lldb/examples/python/
Dmemory.py158 num_matches = 0
166 num_matches = num_matches + 1
170 if num_matches == 0:
/external/lldb/source/Core/
DSourceManager.cpp291 size_t num_matches = executable_ptr->FindFunctions (main_name, in GetDefaultFileAndLine() local
298 for (size_t idx = 0; idx < num_matches; idx++) in GetDefaultFileAndLine()
354 …size_t num_matches = target->GetImages().ResolveSymbolContextForFilePath (file_spec.GetFilename().… in File() local
360 if (num_matches != 0) in File()
362 if (num_matches > 1) in File()
367 for (unsigned i = 0; i < num_matches; i++) in File()
DModule.cpp700 const size_t num_matches = symbol_indexes.size(); in FindFunctions() local
701 if (num_matches) in FindFunctions()
709 for (size_t i=0; i<num_matches; ++i) in FindFunctions()
733 for (size_t i=start_size; i<num_matches; ++i) in FindFunctions()
790 const size_t num_matches = FindTypes (sc, name, exact_match, 1, type_list); in FindFirstType() local
791 if (num_matches) in FindFirstType()
804 size_t num_matches = 0; in FindTypes() local
826 num_matches = types.GetSize(); in FindTypes()
836num_matches = FindTypes_Impl(sc, ConstString(type_name_cstr), NULL, append, max_matches, types); in FindTypes()
838 num_matches = types.GetSize(); in FindTypes()
[all …]
/external/lldb/include/lldb/Core/
DRegularExpression.h51 const size_t num_matches = m_matches.size(); in Clear() local
53 for (size_t i=0; i<num_matches; ++i) in Clear()
/external/lldb/source/API/
DSBModule.cpp380 …const size_t num_matches = symtab->FindAllSymbolsWithNameAndType(ConstString(name), symbol_type, m… in FindSymbols() local
381 if (num_matches) in FindSymbols()
386 for (size_t i=0; i<num_matches; ++i) in FindSymbols()
535 const uint32_t num_matches = module_sp->FindTypes (sc, in FindTypes() local
541 if (num_matches > 0) in FindTypes()
543 for (size_t idx = 0; idx < num_matches; idx++) in FindTypes()
DSBThread.cpp859 const uint32_t num_matches = frame_sc.comp_unit->ResolveSymbolContext (step_file_spec, in StepOverUntil() local
865 if (num_matches > 0) in StepOverUntil()
868 for (uint32_t i=0; i<num_matches; ++i) in StepOverUntil()
DSBTarget.cpp2188 uint32_t num_matches = images.FindTypes (sc, in FindTypes() local
2194 if (num_matches > 0) in FindTypes()
2196 for (size_t idx = 0; idx < num_matches; idx++) in FindTypes()
/external/lldb/source/Breakpoint/
DBreakpointResolverFileRegex.cpp64 uint32_t num_matches = line_matches.size(); in SearchCallback() local
65 for (uint32_t i = 0; i < num_matches; i++) in SearchCallback()
/external/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARF.cpp2487 const size_t num_matches = method_die_offsets.size(); in ResolveClangOpaqueTypeDefinition() local
2488 for (size_t i=0; i<num_matches; ++i) in ResolveClangOpaqueTypeDefinition()
3192 const uint32_t num_matches = variables.GetSize() - original_size; in FindGlobalVariables() local
3193 if (log && num_matches > 0) in FindGlobalVariables()
3201 num_matches); in FindGlobalVariables()
3203 return num_matches; in FindGlobalVariables()
3258 const size_t num_matches = die_offsets.size(); in FindGlobalVariables() local
3259 if (num_matches) in FindGlobalVariables()
3262 for (size_t i=0; i<num_matches; ++i) in FindGlobalVariables()
3399 const size_t num_matches = die_offsets.size(); in ParseFunctions() local
[all …]
/external/lldb/source/Target/
DThreadPlanStepInRange.cpp292 size_t num_matches = 0; in FrameMatchesAvoidRegexp() local
295 num_matches = 1; in FrameMatchesAvoidRegexp()
297 RegularExpression::Match regex_match(num_matches); in FrameMatchesAvoidRegexp()
DProcess.cpp3100 const uint32_t num_matches = process_infos.GetSize(); in Attach() local
3101 if (num_matches == 1) in Attach()
3109 if (num_matches > 1) in Attach()
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
Drc_test_helpers.c39 int num_matches) in regex_helper() argument
53 err_code = regexec(&regex, search_str, num_matches, matches, 0); in regex_helper()
55 for (i = 0; i < num_matches; i++) { in regex_helper()
/external/lldb/examples/darwin/heap_find/
Dheap.py945num_matches = display_match_results (result, options, arg_str_description, expr, False)
946 if num_matches:
947 if num_matches < options.max_matches:
948 options.max_matches = options.max_matches - num_matches
/external/lldb/source/Interpreter/
DCommandInterpreter.cpp1682 const size_t num_matches = matches.GetSize(); in HandleCommand() local
1687 for (uint32_t i = 0; i < num_matches; ++i) { in HandleCommand()
1693 assert(num_matches == 0); in HandleCommand()
1832 int num_matches; in HandleCommand() local
1836 num_matches = HandleCompletionMatches (command_args, in HandleCommand()
1844 if (num_matches > 0) in HandleCommand()
1852 for (int i = 0; i < num_matches; i++) in HandleCommand()
/external/webrtc/webrtc/p2p/base/
Ddtlstransportchannel_unittest.cc316 int num_matches = 0; in VerifyEncryptedPacket() local
319 ++num_matches; in VerifyEncryptedPacket()
322 return (num_matches < ((static_cast<int>(size) - 5) / 10)); in VerifyEncryptedPacket()
/external/lldb/source/Expression/
DClangExpressionDeclMap.cpp600 const uint32_t num_matches = sc_list.GetSize(); in GetSymbolAddress() local
603 …for (uint32_t i=0; i<num_matches && (symbol_load_addr == 0 || symbol_load_addr == LLDB_INVALID_ADD… in GetSymbolAddress()