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.cpp318 uint32_t max_matches, in FindGlobalVariables() argument
325 return m_sym_file_impl->FindGlobalVariables(regex, max_matches, variables); in FindGlobalVariables()
330 uint32_t max_matches, VariableList &variables) { in FindGlobalVariables() argument
354 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.cpp800 uint32_t max_matches = 1; in FindDeclInModules() local
803 if (!modules_decl_vendor->FindDecls(name, append, max_matches, decls)) in FindDeclInModules()
850 uint32_t max_matches = 1; in FindDeclInObjCRuntime() local
854 if (!clang_decl_vendor->FindDecls(name, append, max_matches, decls)) in FindDeclInObjCRuntime()
1082 uint32_t max_matches = 1; in FindObjCMethodDecls() local
1085 if (!modules_decl_vendor->FindDecls(interface_name, append, max_matches, in FindObjCMethodDecls()
1122 uint32_t max_matches = 1; in FindObjCMethodDecls() local
1126 if (!clang_decl_vendor->FindDecls(interface_name, append, max_matches, in FindObjCMethodDecls()
1255 uint32_t max_matches = 1; in FindObjCPropertyAndIvarDecls() local
1258 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,
/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.h294 uint32_t max_matches,
297 uint32_t max_matches,
/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.cpp1122 uint32_t max_matches, lldb_private::VariableList &variables) { in FindGlobalVariables() argument
1137 if (max_matches > 0 && matches >= max_matches) in FindGlobalVariables()
1163 const lldb_private::RegularExpression &regex, uint32_t max_matches, in FindGlobalVariables() argument
1175 if (max_matches > 0 && matches >= max_matches) in FindGlobalVariables()
1467 const lldb_private::RegularExpression &regex, uint32_t max_matches, in FindTypesByRegex() argument
1487 if (max_matches > 0 && matches >= max_matches) in FindTypesByRegex()
/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/include/lldb/Core/
H A DModule.h398 /// \param[in] max_matches
400 /// max_matches. Specify UINT32_MAX to get all possible matches.
407 size_t max_matches, VariableList &variable_list);
414 /// \param[in] max_matches
416 /// max_matches. Specify UINT32_MAX to get all possible matches.
421 void FindGlobalVariables(const RegularExpression &regex, size_t max_matches,
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/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp903 uint32_t max_matches, VariableList &variables) { in PrivateFindGlobalVariables() argument
912 oso_dwarf->FindGlobalVariables(name, parent_decl_ctx, max_matches, in PrivateFindGlobalVariables()
914 if (variables.GetSize() > max_matches) in PrivateFindGlobalVariables()
923 uint32_t max_matches, VariableList &variables) { in FindGlobalVariables() argument
929 oso_dwarf->FindGlobalVariables(name, parent_decl_ctx, max_matches, in FindGlobalVariables()
936 if (max_matches == UINT32_MAX) in FindGlobalVariables()
940 if (max_matches >= total_matches) in FindGlobalVariables()
945 max_matches -= oso_matches; in FindGlobalVariables()
953 const RegularExpression &regex, uint32_t max_matches, in FindGlobalVariables() argument
959 oso_dwarf->FindGlobalVariables(regex, max_matches, variables); in FindGlobalVariables()
[all …]
H A DSymbolFileDWARFDwo.cpp153 uint32_t max_matches, VariableList &variables) { in FindGlobalVariables() argument
154 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,
267 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/API/
H A DSBTarget.h478 lldb::SBValueList FindGlobalVariables(const char *name, uint32_t max_matches);
503 lldb::SBValueList FindGlobalVariables(const char *name, uint32_t max_matches,
520 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.cpp1773 uint32_t max_matches, in FindGlobalFunctions() argument
1775 LLDB_INSTRUMENT_VA(this, name, max_matches, matchtype); in FindGlobalFunctions()
1896 uint32_t max_matches) { in FindGlobalVariables() argument
1897 LLDB_INSTRUMENT_VA(this, name, max_matches); in FindGlobalVariables()
1904 target_sp->GetImages().FindGlobalVariables(ConstString(name), max_matches, in FindGlobalVariables()
1923 uint32_t max_matches, in FindGlobalVariables() argument
1925 LLDB_INSTRUMENT_VA(this, name, max_matches, matchtype); in FindGlobalVariables()
1937 target_sp->GetImages().FindGlobalVariables(ConstString(name), max_matches, in FindGlobalVariables()
1942 max_matches, variable_list); in FindGlobalVariables()
1946 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