Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/unittests/DataFormatter/
H A DFormattersContainerTest.cpp102 TEST(TypeMatcherTests, CreatedBySameMatchString) { in TEST() argument
110 EXPECT_TRUE(a_str.CreatedBySameMatchString(a_str)); in TEST()
111 EXPECT_TRUE(a_str.CreatedBySameMatchString(a_regex)); in TEST()
118 EXPECT_FALSE(empty_str.CreatedBySameMatchString(a_str)); in TEST()
119 EXPECT_FALSE(empty_str.CreatedBySameMatchString(a_regex)); in TEST()
123 EXPECT_FALSE(empty_regex.CreatedBySameMatchString(a_str)); in TEST()
128 EXPECT_FALSE(a_str.CreatedBySameMatchString(empty_str)); in TEST()
129 EXPECT_FALSE(a_str.CreatedBySameMatchString(empty_regex)); in TEST()
130 EXPECT_FALSE(a_str.CreatedBySameMatchString(digit_str)); in TEST()
131 EXPECT_FALSE(a_str.CreatedBySameMatchString(digit_regex)); in TEST()
[all …]
/llvm-project-15.0.7/lldb/include/lldb/DataFormatters/
H A DFormattersContainer.h102 bool CreatedBySameMatchString(TypeMatcher other) const { in CreatedBySameMatchString() function
136 if (iter->first.CreatedBySameMatchString(matcher)) { in Delete()
159 if (pos.first.CreatedBySameMatchString(matcher)) { in GetExact()