/external/llvm-project/lldb/include/lldb/Utility/ |
D | RegularExpression.h | 18 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 {
|
D | NameMatches.h | 21 RegularExpression enumerator
|
/external/icu/icu4c/source/i18n/ |
D | uregex.cpp | 34 struct RegularExpression: public UMemory { struct 36 RegularExpression(); 37 ~RegularExpression(); 52 RegularExpression::RegularExpression() { in RegularExpression() argument 64 RegularExpression::~RegularExpression() { in ~RegularExpression() 87 static UBool validateRE(const RegularExpression *re, UBool requiresText, UErrorCode *status) { in validateRE() 127 RegularExpression *re = new RegularExpression; in uregex_open() 207 RegularExpression *re = new RegularExpression; in uregex_openUText() 271 RegularExpression *re = (RegularExpression*)re2; in uregex_close() 287 RegularExpression *source = (RegularExpression*)source2; in uregex_clone() [all …]
|
/external/llvm-project/lldb/source/Utility/ |
D | RegularExpression.cpp | 15 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()
|
D | NameMatches.cpp | 28 case NameMatch::RegularExpression: { in NameMatches() 29 RegularExpression regex(match); in NameMatches()
|
/external/llvm-project/lldb/unittests/Utility/ |
D | RegularExpressionTest.cpp | 16 TEST(RegularExpression, Valid) { in TEST() argument 17 RegularExpression r1("^[0-9]+$"); in TEST() 24 TEST(RegularExpression, CopyAssignment) { in TEST() argument 25 RegularExpression r1("^[0-9]+$"); in TEST() 26 RegularExpression r2 = r1; in TEST() 33 TEST(RegularExpression, Empty) { in TEST() argument 34 RegularExpression r1(""); in TEST() 43 TEST(RegularExpression, Invalid) { in TEST() argument 44 RegularExpression r1("a[b-"); in TEST() 53 TEST(RegularExpression, Match) { in TEST() argument [all …]
|
D | NameMatchesTest.cpp | 49 TEST(NameMatchesTest, RegularExpression) { in TEST() argument 50 EXPECT_TRUE(NameMatches("foobar", NameMatch::RegularExpression, "foo")); in TEST() 51 EXPECT_TRUE(NameMatches("foobar", NameMatch::RegularExpression, "f[oa]o")); in TEST() 52 EXPECT_FALSE(NameMatches("foo", NameMatch::RegularExpression, "")); in TEST() 53 EXPECT_FALSE(NameMatches("", NameMatch::RegularExpression, "")); in TEST() 54 EXPECT_FALSE(NameMatches("foo", NameMatch::RegularExpression, "b")); in TEST() 55 EXPECT_FALSE(NameMatches("", NameMatch::RegularExpression, "b")); in TEST() 56 EXPECT_FALSE(NameMatches("^a", NameMatch::RegularExpression, "^a")); in TEST()
|
/external/llvm-project/lldb/include/lldb/Interpreter/ |
D | OptionValueRegex.h | 40 m_regex = RegularExpression(m_default_regex_str); in Clear() 47 const RegularExpression *GetCurrentValue() const { in GetCurrentValue() 53 m_regex = RegularExpression(llvm::StringRef(value)); in SetCurrentValue() 55 m_regex = RegularExpression(); in SetCurrentValue() 61 RegularExpression m_regex;
|
/external/rust/crates/regex/src/ |
D | re_trait.rs | 93 pub trait RegularExpression: Sized + fmt::Debug { interface 156 R: RegularExpression, 167 R: RegularExpression, 183 R: RegularExpression, 216 R: RegularExpression, 226 R: RegularExpression, 231 R: RegularExpression, 247 R: RegularExpression, 280 R: RegularExpression,
|
/external/llvm-project/lldb/unittests/DataFormatter/ |
D | FormattersContainerTest.cpp | 48 TypeMatcher matcher(RegularExpression("^a[a-z]c$")); in TEST() 69 TypeMatcher matcher(RegularExpression("a[a-z]c")); in TEST() 96 EXPECT_EQ(TypeMatcher(RegularExpression("aa")).GetMatchString(), "aa"); in TEST() 97 EXPECT_EQ(TypeMatcher(RegularExpression("")).GetMatchString(), ""); in TEST() 98 EXPECT_EQ(TypeMatcher(RegularExpression("[a]")).GetMatchString(), "[a]"); in TEST() 104 TypeMatcher empty_regex(RegularExpression("")); in TEST() 109 TypeMatcher a_regex(RegularExpression("a")); in TEST() 114 TypeMatcher digit_regex(RegularExpression("[0-9]")); in TEST() 154 TypeMatcher without_prefix(RegularExpression("")); in TEST()
|
/external/llvm-project/lldb/source/DataFormatters/ |
D | FormattersHelpers.cpp | 31 RegularExpression(type_name.GetStringRef()), format_sp); in AddFormat() 42 RegularExpression(type_name.GetStringRef()), summary_sp); in AddSummary() 55 RegularExpression(type_name.GetStringRef()), summary_sp); in AddStringSummary() 69 RegularExpression(type_name.GetStringRef()), summary_sp); in AddOneLineSummary() 83 RegularExpression(type_name.GetStringRef()), summary_sp); in AddCXXSummary() 98 RegularExpression(type_name.GetStringRef()), synth_sp); in AddCXXSynthetic() 113 RegularExpression(type_name.GetStringRef()), filter_sp); in AddFilter()
|
/external/llvm-project/lldb/include/lldb/Core/ |
D | AddressResolverName.h | 34 AddressResolverName(RegularExpression func_regex); 53 RegularExpression m_regex;
|
D | SourceManager.h | 26 class RegularExpression; variable 47 void FindLinesMatchingRegex(RegularExpression ®ex, uint32_t start_line, 148 void FindLinesMatchingRegex(FileSpec &file_spec, RegularExpression ®ex,
|
D | ModuleList.h | 39 class RegularExpression; variable 278 void FindFunctions(const RegularExpression &name, bool include_symbols, 307 void FindGlobalVariables(const RegularExpression ®ex, size_t max_matches, 341 void FindSymbolsMatchingRegExAndType(const RegularExpression ®ex,
|
D | Module.h | 47 class RegularExpression; variable 255 void FindSymbolsMatchingRegExAndType(const RegularExpression ®ex, 322 void FindFunctions(const RegularExpression ®ex, bool symbols_ok, 384 void FindGlobalVariables(const RegularExpression ®ex, size_t max_matches,
|
/external/llvm-project/lldb/include/lldb/Breakpoint/ |
D | BreakpointResolverFileRegex.h | 27 const lldb::BreakpointSP &bkpt, RegularExpression regex, 64 RegularExpression
|
D | BreakpointResolverName.h | 49 RegularExpression func_regex, 86 RegularExpression m_regex;
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | ManualDWARFIndex.h | 33 GetGlobalVariables(const RegularExpression ®ex, 53 void GetFunctions(const RegularExpression ®ex,
|
D | AppleDWARFIndex.h | 39 GetGlobalVariables(const RegularExpression ®ex, 59 void GetFunctions(const RegularExpression ®ex,
|
D | DWARFIndex.h | 35 GetGlobalVariables(const RegularExpression ®ex, 59 GetFunctions(const RegularExpression ®ex,
|
D | DebugNamesDWARFIndex.h | 32 GetGlobalVariables(const RegularExpression ®ex, 53 void GetFunctions(const RegularExpression ®ex,
|
D | HashedNameToDIE.h | 136 AppendAllDIEsThatMatchingRegex(const lldb_private::RegularExpression ®ex, 161 const lldb_private::RegularExpression ®ex,
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | Symtab.h | 92 AppendSymbolIndexesMatchingRegExAndType(const RegularExpression ®ex, 96 const RegularExpression ®ex, lldb::SymbolType symbol_type, 108 const RegularExpression ®ex, lldb::SymbolType symbol_type,
|
/external/llvm-project/lldb/source/Core/ |
D | AddressResolverName.cpp | 39 m_regex = RegularExpression(m_func_name.GetStringRef()); in AddressResolverName() 50 AddressResolverName::AddressResolverName(RegularExpression func_regex) in AddressResolverName()
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
D | SymbolFilePDB.h | 119 void FindGlobalVariables(const lldb_private::RegularExpression ®ex, 129 void FindFunctions(const lldb_private::RegularExpression ®ex, 151 void FindTypesByRegex(const lldb_private::RegularExpression ®ex,
|