| /freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/ |
| H A D | RegularExpression.cpp | 28 RegularExpression::RegularExpression() : m_re(), m_comp_err(1), m_preg() { in RegularExpression() function in RegularExpression 36 RegularExpression::RegularExpression(llvm::StringRef str) in RegularExpression() function in RegularExpression 42 RegularExpression::RegularExpression(const RegularExpression &rhs) { in RegularExpression() function in RegularExpression 47 const RegularExpression &RegularExpression:: 48 operator=(const RegularExpression &rhs) { in operator =() 60 RegularExpression::~RegularExpression() { Free(); } in ~RegularExpression() 73 bool RegularExpression::Compile(llvm::StringRef str) { in Compile() 122 bool RegularExpression::Match::GetMatchAtIndex( in GetMatchAtIndex() 141 bool RegularExpression::Match::GetMatchSpanningIndices( in GetMatchSpanningIndices() 171 void RegularExpression::Free() { in Free() [all …]
|
| H A D | NameMatches.cpp | 29 case NameMatch::RegularExpression: { in NameMatches() 30 RegularExpression regex(match); in NameMatches()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/ |
| H A D | RegularExpression.h | 61 class RegularExpression { 104 RegularExpression(); 106 explicit RegularExpression(llvm::StringRef string); 114 ~RegularExpression(); 116 RegularExpression(const RegularExpression &rhs); 118 const RegularExpression &operator=(const RegularExpression &rhs); 205 bool operator<(const RegularExpression &rhs) const;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/DataFormatters/ |
| H A D | FormattersHelpers.cpp | 33 RegularExpressionSP(new RegularExpression(type_name.GetStringRef())), in AddFormat() 44 RegularExpressionSP(new RegularExpression(type_name.GetStringRef())), in AddSummary() 57 RegularExpressionSP(new RegularExpression(type_name.GetStringRef())), in AddStringSummary() 71 RegularExpressionSP(new RegularExpression(type_name.GetStringRef())), in AddOneLineSummary() 86 RegularExpressionSP(new RegularExpression(type_name.GetStringRef())), in AddCXXSummary() 101 RegularExpressionSP(new RegularExpression(type_name.GetStringRef())), in AddCXXSynthetic() 116 RegularExpressionSP(new RegularExpression(type_name.GetStringRef())), in AddFilter()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | AddressResolverName.h | 44 AddressResolverName(RegularExpression &func_regex); 63 RegularExpression m_regex;
|
| H A D | SourceManager.h | 27 class RegularExpression; variable 58 void FindLinesMatchingRegex(RegularExpression ®ex, uint32_t start_line, 161 void FindLinesMatchingRegex(FileSpec &file_spec, RegularExpression ®ex,
|
| H A D | ModuleList.h | 49 class RegularExpression; variable 318 size_t FindFunctions(const RegularExpression &name, bool include_symbols, 358 size_t FindGlobalVariables(const RegularExpression ®ex, size_t max_matches, 412 size_t FindSymbolsMatchingRegExAndType(const RegularExpression ®ex,
|
| H A D | Module.h | 54 class RegularExpression; variable 304 size_t FindSymbolsMatchingRegExAndType(const RegularExpression ®ex, 409 size_t FindFunctions(const RegularExpression ®ex, bool symbols_ok, 481 size_t FindGlobalVariables(const RegularExpression ®ex, size_t max_matches,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/ |
| H A D | OptionValueRegex.h | 52 const RegularExpression *GetCurrentValue() const { in GetCurrentValue() 66 RegularExpression m_regex;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointResolverFileRegex.h | 30 Breakpoint *bkpt, RegularExpression ®ex, 66 RegularExpression
|
| H A D | BreakpointResolverName.h | 50 BreakpointResolverName(Breakpoint *bkpt, RegularExpression &func_regex, 86 RegularExpression m_regex;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFIndex.h | 34 virtual void GetGlobalVariables(const RegularExpression ®ex, 48 virtual void GetFunctions(const RegularExpression ®ex,
|
| H A D | ManualDWARFIndex.h | 28 void GetGlobalVariables(const RegularExpression ®ex, 41 void GetFunctions(const RegularExpression ®ex, DIEArray &offsets) override;
|
| H A D | AppleDWARFIndex.h | 37 void GetGlobalVariables(const RegularExpression ®ex, 50 void GetFunctions(const RegularExpression ®ex, DIEArray &offsets) override;
|
| H A D | DebugNamesDWARFIndex.h | 29 void GetGlobalVariables(const RegularExpression ®ex, 42 void GetFunctions(const RegularExpression ®ex,
|
| H A D | HashedNameToDIE.h | 128 AppendAllDIEsThatMatchingRegex(const lldb_private::RegularExpression ®ex, 150 const lldb_private::RegularExpression ®ex,
|
| H A D | AppleDWARFIndex.cpp | 62 void AppleDWARFIndex::GetGlobalVariables(const RegularExpression ®ex, in GetGlobalVariables() 149 void AppleDWARFIndex::GetFunctions(const RegularExpression ®ex, in GetFunctions()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| H A D | Symtab.h | 96 AppendSymbolIndexesMatchingRegExAndType(const RegularExpression ®ex, 100 const RegularExpression ®ex, lldb::SymbolType symbol_type, 112 const RegularExpression ®ex, lldb::SymbolType symbol_type,
|
| H A D | SymbolVendor.h | 87 virtual size_t FindGlobalVariables(const RegularExpression ®ex, 97 virtual size_t FindFunctions(const RegularExpression ®ex,
|
| H A D | SymbolFile.h | 184 virtual uint32_t FindGlobalVariables(const RegularExpression ®ex, 192 virtual uint32_t FindFunctions(const RegularExpression ®ex,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | SymbolFile.cpp | 112 uint32_t SymbolFile::FindGlobalVariables(const RegularExpression ®ex, in FindGlobalVariables() 128 uint32_t SymbolFile::FindFunctions(const RegularExpression ®ex, in FindFunctions()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | CPlusPlusLanguage.cpp | 566 RegularExpressionSP(new RegularExpression( in LoadLibCxxFormatters() 770 new RegularExpression(llvm::StringRef("^std::vector<.+>(( )?&)?$"))), in LoadLibStdcppFormatters() 776 new RegularExpression(llvm::StringRef("^std::map<.+> >(( )?&)?$"))), in LoadLibStdcppFormatters() 781 RegularExpressionSP(new RegularExpression( in LoadLibStdcppFormatters() 790 new RegularExpression(llvm::StringRef("^std::vector<.+>(( )?&)?$"))), in LoadLibStdcppFormatters() 795 new RegularExpression(llvm::StringRef("^std::map<.+> >(( )?&)?$"))), in LoadLibStdcppFormatters() 799 RegularExpressionSP(new RegularExpression( in LoadLibStdcppFormatters()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBTypeCategory.cpp | 304 lldb::RegularExpressionSP(new RegularExpression( in AddTypeFormat() 377 lldb::RegularExpressionSP(new RegularExpression( in AddTypeSummary() 416 lldb::RegularExpressionSP(new RegularExpression( in AddTypeFilter() 489 lldb::RegularExpressionSP(new RegularExpression( in AddTypeSynthetic()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.h | 119 uint32_t FindGlobalVariables(const lldb_private::RegularExpression ®ex, 129 uint32_t FindFunctions(const lldb_private::RegularExpression ®ex, 149 void FindTypesByRegex(const lldb_private::RegularExpression ®ex,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/ |
| H A D | BreakpointResolverFileRegex.cpp | 26 Breakpoint *bkpt, RegularExpression ®ex, in BreakpointResolverFileRegex() 46 RegularExpression regex(regex_string); in CreateFromStructuredData()
|