Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DDeclVendor.cpp19 uint32_t max_matches) { in FindTypes() argument
22 if (FindDecls(name, /*append*/ true, max_matches, decls)) in FindTypes()
H A DSymbolFileOnDemand.cpp319 uint32_t max_matches, in FindGlobalVariables() argument
326 return m_sym_file_impl->FindGlobalVariables(regex, max_matches, variables); in FindGlobalVariables()
331 uint32_t max_matches, VariableList &variables) { in FindGlobalVariables() argument
355 max_matches, variables); in FindGlobalVariables()
H A DSymbolFile.cpp117 uint32_t max_matches, in FindGlobalVariables() argument
121 uint32_t max_matches, in FindGlobalVariables() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangDeclVendor.cpp18 uint32_t max_matches, in FindDecls() argument
24 uint32_t ret = FindDecls(name, /*append*/ false, max_matches, compiler_decls); in FindDecls()
H A DClangASTSource.cpp801 uint32_t max_matches = 1; in FindDeclInModules() local
804 if (!modules_decl_vendor->FindDecls(name, append, max_matches, decls)) in FindDeclInModules()
851 uint32_t max_matches = 1; in FindDeclInObjCRuntime() local
855 if (!clang_decl_vendor->FindDecls(name, append, max_matches, decls)) in FindDeclInObjCRuntime()
1083 uint32_t max_matches = 1; in FindObjCMethodDecls() local
1086 if (!modules_decl_vendor->FindDecls(interface_name, append, max_matches, in FindObjCMethodDecls()
1123 uint32_t max_matches = 1; in FindObjCMethodDecls() local
1127 if (!clang_decl_vendor->FindDecls(interface_name, append, max_matches, in FindObjCMethodDecls()
1256 uint32_t max_matches = 1; in FindObjCPropertyAndIvarDecls() local
1259 if (!modules_decl_vendor->FindDecls(class_name, append, max_matches, decls)) in FindObjCPropertyAndIvarDecls()
[all …]
H A DClangDeclVendor.h29 uint32_t FindDecls(ConstString name, bool append, uint32_t max_matches,
H A DClangModulesDeclVendor.cpp101 uint32_t FindDecls(ConstString name, bool append, uint32_t max_matches,
442 uint32_t max_matches, in FindDecls() argument
465 if (num_matches >= max_matches) in FindDecls()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DDeclVendor.h52 uint32_t max_matches,
66 std::vector<CompilerType> FindTypes(ConstString name, uint32_t max_matches);
H A DSymbolFileOnDemand.h135 uint32_t max_matches,
139 uint32_t max_matches,
H A DSymbolFile.h302 uint32_t max_matches,
305 uint32_t max_matches,
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.h112 uint32_t max_matches, lldb_private::TypeMap &types);
126 uint32_t max_matches,
130 uint32_t max_matches,
H A DSymbolFileCTF.cpp1043 const lldb_private::RegularExpression &regex, uint32_t max_matches, in FindTypesByRegex() argument
1049 if (matches == max_matches) in FindTypesByRegex()
1090 uint32_t max_matches, lldb_private::VariableList &variables) { in FindGlobalVariables() argument
1095 if (matches == max_matches) in FindGlobalVariables()
1105 const lldb_private::RegularExpression &regex, uint32_t max_matches, in FindGlobalVariables() argument
1111 if (matches == max_matches) in FindGlobalVariables()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.h116 uint32_t max_matches,
120 uint32_t max_matches,
140 uint32_t max_matches, lldb_private::TypeMap &types);
186 uint32_t max_matches, lldb_private::TypeMap &types);
H A DSymbolFilePDB.cpp1108 uint32_t max_matches, lldb_private::VariableList &variables) { in FindGlobalVariables() argument
1123 if (max_matches > 0 && matches >= max_matches) in FindGlobalVariables()
1149 const lldb_private::RegularExpression &regex, uint32_t max_matches, in FindGlobalVariables() argument
1161 if (max_matches > 0 && matches >= max_matches) in FindGlobalVariables()
1452 const lldb_private::RegularExpression &regex, uint32_t max_matches, in FindTypesByRegex() argument
1472 if (max_matches > 0 && matches >= max_matches) in FindTypesByRegex()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp921 uint32_t max_matches, VariableList &variables) { in PrivateFindGlobalVariables() argument
930 oso_dwarf->FindGlobalVariables(name, parent_decl_ctx, max_matches, in PrivateFindGlobalVariables()
932 if (variables.GetSize() > max_matches) in PrivateFindGlobalVariables()
941 uint32_t max_matches, VariableList &variables) { in FindGlobalVariables() argument
948 oso_dwarf.FindGlobalVariables(name, parent_decl_ctx, max_matches, in FindGlobalVariables()
955 if (max_matches == UINT32_MAX) in FindGlobalVariables()
959 if (max_matches >= total_matches) in FindGlobalVariables()
964 max_matches -= oso_matches; in FindGlobalVariables()
972 const RegularExpression &regex, uint32_t max_matches, in FindGlobalVariables() argument
979 oso_dwarf.FindGlobalVariables(regex, max_matches, variables); in FindGlobalVariables()
[all …]
H A DSymbolFileDWARFDwo.cpp154 uint32_t max_matches, VariableList &variables) { in FindGlobalVariables() argument
155 GetBaseSymbolFile().FindGlobalVariables(name, parent_decl_ctx, max_matches, in FindGlobalVariables()
H A DSymbolFileDWARFDebugMap.h113 uint32_t max_matches,
115 void FindGlobalVariables(const RegularExpression &regex, uint32_t max_matches,
260 uint32_t max_matches, VariableList &variables);
H A DSymbolFileDWARFDwo.h58 uint32_t max_matches,
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCDeclVendor.h30 uint32_t FindDecls(ConstString name, bool append, uint32_t max_matches,
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleList.h312 void FindGlobalVariables(ConstString name, size_t max_matches,
326 void FindGlobalVariables(const RegularExpression &regex, size_t max_matches,
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBTarget.h495 lldb::SBValueList FindGlobalVariables(const char *name, uint32_t max_matches);
520 lldb::SBValueList FindGlobalVariables(const char *name, uint32_t max_matches,
537 uint32_t max_matches,
H A DSBModule.h187 const char *name, uint32_t max_matches);
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp1733 uint32_t max_matches, in FindGlobalFunctions() argument
1735 LLDB_INSTRUMENT_VA(this, name, max_matches, matchtype); in FindGlobalFunctions()
1853 uint32_t max_matches) { in FindGlobalVariables() argument
1854 LLDB_INSTRUMENT_VA(this, name, max_matches); in FindGlobalVariables()
1860 target_sp->GetImages().FindGlobalVariables(ConstString(name), max_matches, in FindGlobalVariables()
1879 uint32_t max_matches, in FindGlobalVariables() argument
1881 LLDB_INSTRUMENT_VA(this, name, max_matches, matchtype); in FindGlobalVariables()
1892 target_sp->GetImages().FindGlobalVariables(ConstString(name), max_matches, in FindGlobalVariables()
1897 max_matches, variable_list); in FindGlobalVariables()
1901 RegularExpression(name_ref, llvm::Regex::IgnoreCase), max_matches, in FindGlobalVariables()
[all …]
H A DSBModule.cpp405 uint32_t max_matches) { in FindGlobalVariables() argument
406 LLDB_INSTRUMENT_VA(this, target, name, max_matches); in FindGlobalVariables()
413 max_matches, variable_list); in FindGlobalVariables()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h108 uint32_t max_matches,
191 void FindTypesByName(llvm::StringRef name, uint32_t max_matches,

12