Home
last modified time | relevance | path

Searched refs:CreatedBySameMatchString (Results 1 – 2 of 2) sorted by relevance

/llvm-project/lldb/unittests/DataFormatter/
H A DFormattersContainerTest.cpp110 TEST(TypeMatcherTests, CreatedBySameMatchString) { in TEST() argument
113 EXPECT_TRUE(empty_str.CreatedBySameMatchString(empty_str)); in TEST()
114 EXPECT_TRUE(empty_str.CreatedBySameMatchString(empty_regex)); in TEST()
118 EXPECT_TRUE(a_str.CreatedBySameMatchString(a_str)); in TEST()
119 EXPECT_TRUE(a_str.CreatedBySameMatchString(a_regex)); in TEST()
123 EXPECT_TRUE(digit_str.CreatedBySameMatchString(digit_str)); in TEST()
124 EXPECT_TRUE(digit_str.CreatedBySameMatchString(digit_regex)); in TEST()
126 EXPECT_FALSE(empty_str.CreatedBySameMatchString(a_str)); in TEST()
127 EXPECT_FALSE(empty_str.CreatedBySameMatchString(a_regex)); in TEST()
128 EXPECT_FALSE(empty_str.CreatedBySameMatchString(digit_str)); in TEST()
[all …]
/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersContainer.h136 bool CreatedBySameMatchString(TypeMatcher other) const { in CreatedBySameMatchString() function
170 if (iter->first.CreatedBySameMatchString(matcher)) { in Delete()
210 if (pos.first.CreatedBySameMatchString(matcher)) { in GetExact()