Home
last modified time | relevance | path

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

12345

/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DRegularExpression.h18 class RegularExpression {
22 RegularExpression() = default;
34 explicit RegularExpression(llvm::StringRef string);
36 ~RegularExpression() = default;
38 RegularExpression(const RegularExpression &rhs);
39 RegularExpression(RegularExpression &&rhs) = default;
41 RegularExpression &operator=(RegularExpression &&rhs) = default;
42 RegularExpression &operator=(const RegularExpression &rhs) = default;
81 bool operator==(const RegularExpression &rhs) const {
H A DNameMatches.h21 RegularExpression enumerator
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DRegularExpression.cpp15 RegularExpression::RegularExpression(llvm::StringRef str) in RegularExpression() function in RegularExpression
20 RegularExpression::RegularExpression(const RegularExpression &rhs) in RegularExpression() function in RegularExpression
21 : RegularExpression(rhs.GetText()) {} in RegularExpression()
23 bool RegularExpression::Execute( in Execute()
31 bool RegularExpression::IsValid() const { return m_regex.isValid(); } in IsValid()
33 llvm::StringRef RegularExpression::GetText() const { return m_regex_text; } in GetText()
35 llvm::Error RegularExpression::GetError() const { in GetError()
H A DNameMatches.cpp28 case NameMatch::RegularExpression: { in NameMatches()
29 RegularExpression regex(match); in NameMatches()
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DOptionValueRegex.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;
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DSourceManager.h27 class RegularExpression; variable
48 void FindLinesMatchingRegex(RegularExpression &regex, uint32_t start_line,
149 void FindLinesMatchingRegex(FileSpec &file_spec, RegularExpression &regex,
H A DModuleList.h39 class RegularExpression; variable
275 void FindFunctions(const RegularExpression &name,
305 void FindGlobalVariables(const RegularExpression &regex, size_t max_matches,
339 void FindSymbolsMatchingRegExAndType(const RegularExpression &regex,
H A DModule.h50 class RegularExpression; variable
268 const RegularExpression &regex, lldb::SymbolType symbol_type,
353 void FindFunctions(const RegularExpression &regex,
416 void FindGlobalVariables(const RegularExpression &regex, size_t max_matches,
/openbsd-src/gnu/llvm/lldb/include/lldb/Breakpoint/
H A DBreakpointResolverFileRegex.h27 const lldb::BreakpointSP &bkpt, RegularExpression regex,
64 RegularExpression
H A DBreakpointResolverName.h49 RegularExpression func_regex,
86 RegularExpression m_regex;
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFIndex.h38 GetGlobalVariables(const RegularExpression &regex,
62 GetFunctions(const RegularExpression &regex,
H A DAppleDWARFIndex.h39 GetGlobalVariables(const RegularExpression &regex,
59 void GetFunctions(const RegularExpression &regex,
H A DDebugNamesDWARFIndex.h33 GetGlobalVariables(const RegularExpression &regex,
54 void GetFunctions(const RegularExpression &regex,
H A DManualDWARFIndex.h33 GetGlobalVariables(const RegularExpression &regex,
53 void GetFunctions(const RegularExpression &regex,
H A DHashedNameToDIE.h136 AppendAllDIEsThatMatchingRegex(const lldb_private::RegularExpression &regex,
161 const lldb_private::RegularExpression &regex,
H A DAppleDWARFIndex.cpp66 const RegularExpression &regex, in GetGlobalVariables()
194 const RegularExpression &regex, in GetFunctions()
/openbsd-src/gnu/llvm/lldb/include/lldb/DataFormatters/
H A DFormattersContainer.h45 RegularExpression m_type_name_regex;
82 TypeMatcher(RegularExpression regex) in TypeMatcher()
91 m_type_name_regex = RegularExpression(type_specifier->GetName()); in TypeMatcher()
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DSymtab.h93 const RegularExpression &regex, lldb::SymbolType symbol_type,
97 const RegularExpression &regex, lldb::SymbolType symbol_type,
111 const RegularExpression &regex, lldb::SymbolType symbol_type,
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.h119 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
128 void FindFunctions(const lldb_private::RegularExpression &regex,
150 void FindTypesByRegex(const lldb_private::RegularExpression &regex,
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DAssertFrameRecognizer.cpp124 std::make_shared<RegularExpression>(std::move(module_re)), in RegisterAssertFrameRecognizer()
125 std::make_shared<RegularExpression>(std::move(symbol_re)), in RegisterAssertFrameRecognizer()
H A DThreadPlanStepInRange.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()
/openbsd-src/gnu/llvm/lldb/source/Breakpoint/
H A DBreakpointResolverFileRegex.cpp23 const lldb::BreakpointSP &bkpt, RegularExpression regex, in BreakpointResolverFileRegex()
41 RegularExpression regex(regex_string); in CreateFromStructuredData()
/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp56 const RegularExpression &
59 static RegularExpression regex( in GetPatternForRuntimeLibrary()
H A DInstrumentationRuntimeASan.h42 const RegularExpression &GetPatternForRuntimeLibrary() override;
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DSymbolFile.cpp119 void SymbolFile::FindGlobalVariables(const RegularExpression &regex, in FindGlobalVariables()
128 void SymbolFile::FindFunctions(const RegularExpression &regex, in FindFunctions()

12345