Home
last modified time | relevance | path

Searched refs:RegularExpression (Results 1 – 25 of 97) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
HDRegularExpression.h18 class RegularExpression {
22 RegularExpression() = default;
38 explicit RegularExpression(
42 ~RegularExpression() = default;
44 RegularExpression(const RegularExpression &rhs);
45 RegularExpression(RegularExpression &&rhs) = default;
47 RegularExpression &operator=(RegularExpression &&rhs) = default;
48 RegularExpression &operator=(const RegularExpression &rhs) = default;
87 bool operator==(const RegularExpression &rhs) const {
HDNameMatches.h21 RegularExpression enumerator
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
HDRegularExpression.cpp15 RegularExpression::RegularExpression(llvm::StringRef str, in RegularExpression() function in RegularExpression
21 RegularExpression::RegularExpression(const RegularExpression &rhs) in RegularExpression() function in RegularExpression
22 : RegularExpression(rhs.GetText()) {} in RegularExpression()
24 bool RegularExpression::Execute( in Execute()
32 bool RegularExpression::IsValid() const { return m_regex.isValid(); } in IsValid()
34 llvm::StringRef RegularExpression::GetText() const { return m_regex_text; } in GetText()
36 llvm::Error RegularExpression::GetError() const { in GetError()
HDNameMatches.cpp28 case NameMatch::RegularExpression: { in NameMatches()
29 RegularExpression regex(match); in NameMatches()
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
HDOptionValueRegex.h40 m_regex = RegularExpression(m_default_regex_str); in Clear()
45 const RegularExpression *GetCurrentValue() const { in GetCurrentValue()
51 m_regex = RegularExpression(llvm::StringRef(value)); in SetCurrentValue()
53 m_regex = RegularExpression(); in SetCurrentValue()
59 RegularExpression m_regex;
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
HDBreakpointResolverFileRegex.h27 const lldb::BreakpointSP &bkpt, RegularExpression regex,
63 RegularExpression
HDBreakpointResolverName.h49 RegularExpression func_regex,
85 RegularExpression m_regex;
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDSourceManager.h28 class RegularExpression; variable
49 void FindLinesMatchingRegex(RegularExpression &regex, uint32_t start_line,
168 void FindLinesMatchingRegex(FileSpec &file_spec, RegularExpression &regex,
HDModuleList.h39 class RegularExpression; variable
296 void FindFunctions(const RegularExpression &name,
326 void FindGlobalVariables(const RegularExpression &regex, size_t max_matches,
360 void FindSymbolsMatchingRegExAndType(const RegularExpression &regex,
HDModule.h50 class RegularExpression; variable
267 const RegularExpression &regex, lldb::SymbolType symbol_type,
358 void FindFunctions(const RegularExpression &regex,
421 void FindGlobalVariables(const RegularExpression &regex, size_t max_matches,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
HDInstrumentationRuntimeASan.cpp47 const RegularExpression &
50 static RegularExpression regex( in GetPatternForRuntimeLibrary()
HDInstrumentationRuntimeASan.h39 const RegularExpression &GetPatternForRuntimeLibrary() override;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASanLibsanitizers/
HDInstrumentationRuntimeASanLibsanitizers.cpp54 const RegularExpression &
56 static RegularExpression regex( in GetPatternForRuntimeLibrary()
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
HDFormattersContainer.h45 RegularExpression m_type_name_regex;
82 TypeMatcher(RegularExpression regex) in TypeMatcher()
91 m_type_name_regex = RegularExpression(type_specifier->GetName()); in TypeMatcher()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
HDSymbolFileCTF.h111 void FindTypesByRegex(const lldb_private::RegularExpression &regex,
119 void FindFunctions(const lldb_private::RegularExpression &regex,
129 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
HDDWARFIndex.h40 GetGlobalVariables(const RegularExpression &regex,
72 GetFunctions(const RegularExpression &regex,
HDManualDWARFIndex.h36 GetGlobalVariables(const RegularExpression &regex,
56 void GetFunctions(const RegularExpression &regex,
HDDebugNamesDWARFIndex.h33 GetGlobalVariables(const RegularExpression &regex,
59 void GetFunctions(const RegularExpression &regex,
HDAppleDWARFIndex.h48 GetGlobalVariables(const RegularExpression &regex,
68 void GetFunctions(const RegularExpression &regex,
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
HDSymtab.h93 const RegularExpression &regex, lldb::SymbolType symbol_type,
97 const RegularExpression &regex, lldb::SymbolType symbol_type,
111 const RegularExpression &regex, lldb::SymbolType symbol_type,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
HDSymbolFilePDB.h119 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
128 void FindFunctions(const lldb_private::RegularExpression &regex,
139 void FindTypesByRegex(const lldb_private::RegularExpression &regex,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
HDAssertFrameRecognizer.cpp113 std::make_shared<RegularExpression>(std::move(module_re)), in RegisterAssertFrameRecognizer()
114 std::make_shared<RegularExpression>(std::move(symbol_re)), in RegisterAssertFrameRecognizer()
HDThreadPlanStepInRange.cpp296 *m_avoid_regexp_up = RegularExpression(name); in SetAvoidRegexp()
298 m_avoid_regexp_up = std::make_unique<RegularExpression>(name); in SetAvoidRegexp()
331 const RegularExpression *avoid_regexp_to_use = m_avoid_regexp_up.get(); in FrameMatchesAvoidCriteria()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Breakpoint/
HDBreakpointResolverFileRegex.cpp23 const lldb::BreakpointSP &bkpt, RegularExpression regex, in BreakpointResolverFileRegex()
40 RegularExpression regex(regex_string); in CreateFromStructuredData()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
HDSymbolFile.cpp120 void SymbolFile::FindGlobalVariables(const RegularExpression &regex, in FindGlobalVariables()
129 void SymbolFile::FindFunctions(const RegularExpression &regex, in FindFunctions()

1234