Searched refs:FindFunctions (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DSymbolFile.h138 virtual uint32_t FindFunctions (const ConstString &name, const ClangNamespaceDecl *namespace_decl, uint32_t name_type_mask, bool include_inlines, bool append, SymbolContextList& sc_list) = 0;
139 virtual uint32_t FindFunctions (const RegularExpression& regex, bool include_inlines, bool append, SymbolContextList& sc_list) = 0;
H A DSymbolVendor.h108 FindFunctions (const ConstString &name,
116 FindFunctions (const RegularExpression& regex,
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Core/
H A DAddressResolverName.cpp80 // FIXME: Right now we look at the module level, and call the module's "FindFunctions".
121 context.module_sp->FindFunctions (m_func_name,
137 context.module_sp->FindFunctions (m_regex,
H A DModule.cpp666 Module::FindFunctions (const ConstString &name, function in class:Module
695 symbols->FindFunctions(lookup_name,
736 symbols->FindFunctions(name, namespace_decl, name_type_mask, include_inlines, append, sc_list);
752 Module::FindFunctions (const RegularExpression& regex, function in class:Module
766 symbols->FindFunctions(regex, include_inlines, append, sc_list);
H A DModuleList.cpp333 ModuleList::FindFunctions (const ConstString &name, function in class:ModuleList
359 (*pos)->FindFunctions (lookup_name,
396 (*pos)->FindFunctions (name, NULL, name_type_mask, include_symbols, include_inlines, true, sc_list);
H A DSourceManager.cpp291 size_t num_matches = executable_ptr->FindFunctions (main_name,
H A DDisassembler.cpp196 module->FindFunctions (name,
206 exe_ctx.GetTargetPtr()->GetImages().FindFunctions (name,
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.h97 FindFunctions(const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, uint32_t name_type_mask, bool include_inlines, bool append, lldb_private::SymbolContextList& sc_list);
100 FindFunctions(const lldb_private::RegularExpression& regex, bool include_inlines, bool append, lldb_private::SymbolContextList& sc_list);
H A DSymbolFileSymtab.cpp342 SymbolFileSymtab::FindFunctions(const ConstString &name, const ClangNamespaceDecl *namespace_decl, uint32_t name_type_mask, bool include_inlines, bool append, SymbolContextList& sc_list) function in class:SymbolFileSymtab
345 "SymbolFileSymtab::FindFunctions (name = '%s')",
356 SymbolFileSymtab::FindFunctions(const RegularExpression& regex, bool include_inlines, bool append, SymbolContextList& sc_list) function in class:SymbolFileSymtab
359 "SymbolFileSymtab::FindFunctions (regex = '%s')",
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBModule.h192 FindFunctions (const char *name,
H A DSBTarget.h613 FindFunctions (const char *name,
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Symbol/
H A DSymbolVendor.cpp307 SymbolVendor::FindFunctions(const ConstString &name, const ClangNamespaceDecl *namespace_decl, uint32_t name_type_mask, bool include_inlines, bool append, SymbolContextList& sc_list) function in class:SymbolVendor
314 return m_sym_file_ap->FindFunctions(name, namespace_decl, name_type_mask, include_inlines, append, sc_list);
320 SymbolVendor::FindFunctions(const RegularExpression& regex, bool include_inlines, bool append, SymbolContextList& sc_list) function in class:SymbolVendor
327 return m_sym_file_ap->FindFunctions(regex, include_inlines, append, sc_list);
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DInferiorCallPOSIX.cpp56 = process->GetTarget().GetImages().FindFunctions (ConstString ("mmap"),
163 = process->GetTarget().GetImages().FindFunctions (ConstString ("munmap"),
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.h120 virtual uint32_t FindFunctions(const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, uint32_t name_type_mask, bool include_inlines, bool append, lldb_private::SymbolContextList& sc_list);
121 virtual uint32_t FindFunctions(const lldb_private::RegularExpression& regex, bool include_inlines, bool append, lldb_private::SymbolContextList& sc_list);
408 void FindFunctions(
413 void FindFunctions (
418 void FindFunctions (
H A DSymbolFileDWARFDebugMap.h85 virtual uint32_t FindFunctions (const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, uint32_t name_type_mask, bool include_inlines, bool append, lldb_private::SymbolContextList& sc_list);
86 virtual uint32_t FindFunctions (const lldb_private::RegularExpression& regex, bool include_inlines, bool append, lldb_private::SymbolContextList& sc_list);
H A DSymbolFileDWARFDebugMap.cpp1085 SymbolFileDWARFDebugMap::FindFunctions(const ConstString &name, const ClangNamespaceDecl *namespace_decl, uint32_t name_type_mask, bool include_inlines, bool append, SymbolContextList& sc_list) function in class:SymbolFileDWARFDebugMap
1088 "SymbolFileDWARFDebugMap::FindFunctions (name = %s)",
1102 if (oso_dwarf->FindFunctions(name, namespace_decl, name_type_mask, include_inlines, true, sc_list))
1113 SymbolFileDWARFDebugMap::FindFunctions (const RegularExpression& regex, bool include_inlines, bool append, SymbolContextList& sc_list) function in class:SymbolFileDWARFDebugMap
1116 "SymbolFileDWARFDebugMap::FindFunctions (regex = '%s')",
1131 if (oso_dwarf->FindFunctions(regex, include_inlines, true, sc_list))
H A DSymbolFileDWARF.cpp3404 SymbolFileDWARF::FindFunctions (const ConstString &name, function in class:SymbolFileDWARF
3417 SymbolFileDWARF::FindFunctions (const RegularExpression &regex, function in class:SymbolFileDWARF
3430 SymbolFileDWARF::FindFunctions (const RegularExpression &regex, function in class:SymbolFileDWARF
3574 SymbolFileDWARF::FindFunctions (const ConstString &name, function in class:SymbolFileDWARF
3582 "SymbolFileDWARF::FindFunctions (name = '%s')",
3593 "SymbolFileDWARF::FindFunctions (name=\"%s\", name_type_mask=0x%x, append=%u, sc_list)",
3793 FindFunctions (name, m_function_fullname_index, sc_list);
3805 FindFunctions (name, m_function_basename_index, temp_sc_list);
3883 FindFunctions (name, m_function_selector_index, sc_list);
3894 "SymbolFileDWARF::FindFunctions (nam
3904 SymbolFileDWARF::FindFunctions(const RegularExpression& regex, bool include_inlines, bool append, SymbolContextList& sc_list) function in class:SymbolFileDWARF
[all...]
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DModule.h321 FindFunctions (const ConstString &name,
352 FindFunctions (const RegularExpression& regex,
1051 /// SymbolVendor::FindFunctions() or Symtab::FindFunctionSymbols()
1055 /// SymbolVendor::FindFunctions() or Symtab::FindFunctionSymbols()
1059 /// match results obtained from SymbolVendor::FindFunctions() or
H A DModuleList.h262 /// @see Module::FindFunctions ()
265 FindFunctions (const ConstString &name,
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp177 // FIXME: Right now we look at the module level, and call the module's "FindFunctions".
219 context.module_sp->FindFunctions (lookup.lookup_name,
236 context.module_sp->FindFunctions (m_regex,
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/API/
H A DSBModule.cpp455 SBModule::FindFunctions (const char *name, function in class:SBModule
465 module_sp->FindFunctions (ConstString(name),
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectSource.cpp474 num_matches += matching_modules.FindFunctions (name, eFunctionNameTypeAuto, include_symbols, include_inlines, append, sc_list);
480 num_matches = target->GetImages().FindFunctions (name, eFunctionNameTypeAuto, include_symbols, include_inlines, append, sc_list);
H A DCommandCompletions.cpp689 context.module_sp->FindFunctions (m_regex, include_symbols, include_inlines, append, sc_list);
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Expression/
H A DClangASTSource.cpp1003 m_target->GetImages().FindFunctions(instance_method_name, lldb::eFunctionNameTypeFull, include_symbols, include_inlines, append, sc_list);
1013 m_target->GetImages().FindFunctions(class_method_name, lldb::eFunctionNameTypeFull, include_symbols, include_inlines, append, sc_list);
1023 m_target->GetImages().FindFunctions(selector_name, lldb::eFunctionNameTypeSelector, include_symbols, include_inlines, append, candidate_sc_list);
H A DClangExpressionDeclMap.cpp1339 module_sp->FindFunctions(name,
1351 // TODO Fix FindFunctions so that it doesn't return
1354 target->GetImages().FindFunctions(name,

Completed in 286 milliseconds

12