/external/lldb/source/Commands/ |
D | CommandObjectSource.cpp | 456 size_t num_matches = 0; in FindMatchingFunctions() local 473 …num_matches += matching_modules.FindFunctions (name, eFunctionNameTypeAuto, include_symbols, inclu… in FindMatchingFunctions() 479 …num_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 499 … num_matches += matching_modules.FindFunctionSymbols (name, eFunctionNameTypeAuto, sc_list); in FindMatchingFunctionSymbols() 505 … num_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 …]
|
D | CommandObjectTarget.cpp | 1361 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 …]
|
D | CommandCompletions.cpp | 429 …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()
|
D | CommandObjectHelp.cpp | 126 size_t num_matches = matches.GetSize(); in DoExecute() local 127 for (size_t match_idx = 0; match_idx < num_matches; match_idx++) in DoExecute()
|
D | CommandObjectFrame.cpp | 424 size_t num_matches = 0; in DoExecute() local 427 … num_matches); in DoExecute() 457 else if (num_matches == 0) in DoExecute()
|
D | CommandObjectMultiword.cpp | 67 …int num_matches = CommandObject::AddNamesMatchingPartialString (m_subcommand_dict, sub_cmd, *match… in GetSubcommandSP() local 69 if (num_matches == 1) in GetSubcommandSP()
|
D | CommandObjectProcess.cpp | 499 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/ |
D | ItaniumABILanguageRuntime.cpp | 123 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/ |
D | lsan_common_linux.cc | 40 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/ |
D | memory.py | 158 num_matches = 0 166 num_matches = num_matches + 1 170 if num_matches == 0:
|
/external/lldb/source/Core/ |
D | SourceManager.cpp | 291 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()
|
D | Module.cpp | 700 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() 836 … num_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/ |
D | RegularExpression.h | 51 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/ |
D | SBModule.cpp | 380 …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()
|
D | SBThread.cpp | 859 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()
|
D | SBTarget.cpp | 2188 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/ |
D | BreakpointResolverFileRegex.cpp | 64 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/ |
D | SymbolFileDWARF.cpp | 2487 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/ |
D | ThreadPlanStepInRange.cpp | 292 size_t num_matches = 0; in FrameMatchesAvoidRegexp() local 295 num_matches = 1; in FrameMatchesAvoidRegexp() 297 RegularExpression::Match regex_match(num_matches); in FrameMatchesAvoidRegexp()
|
D | Process.cpp | 3100 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/ |
D | rc_test_helpers.c | 39 int num_matches) in regex_helper() argument 53 err_code = regexec(®ex, 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/ |
D | heap.py | 945 … num_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/ |
D | CommandInterpreter.cpp | 1682 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/ |
D | dtlstransportchannel_unittest.cc | 316 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/ |
D | ClangExpressionDeclMap.cpp | 600 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()
|