Home
last modified time | relevance | path

Searched refs:Regexp (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DSpecialCaseList.cpp28 bool SpecialCaseList::Matcher::insert(std::string Regexp, in insert() argument
31 if (Regexp.empty()) { in insert()
36 if (Regex::isLiteralERE(Regexp)) { in insert()
37 Strings[Regexp] = LineNumber; in insert()
40 Trigrams.insert(Regexp); in insert()
43 for (size_t pos = 0; (pos = Regexp.find('*', pos)) != std::string::npos; in insert()
45 Regexp.replace(pos, strlen("*"), ".*"); in insert()
48 Regexp = (Twine("^(") + StringRef(Regexp) + ")$").str(); in insert()
51 Regex CheckRE(Regexp); in insert()
174 std::string Regexp = std::string(SplitRegexp.first); in parse() local
[all …]
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp33 if (m_match_type == Breakpoint::Regexp) { in BreakpointResolverName()
80 m_match_type(Breakpoint::Regexp), m_language(language), in BreakpointResolverName()
288 case Breakpoint::Regexp: in SearchCallback()
406 if (m_match_type == Breakpoint::Regexp) in GetDescription()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DAddressResolver.h35 enum MatchType { Exact, Regexp, Glob }; enumerator
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DSpecialCaseList.h124 bool insert(std::string Regexp, unsigned LineNumber, std::string &REError);
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DBreakpoint.h89 enum MatchType { Exact, Regexp, Glob }; enumerator