Home
last modified time | relevance | path

Searched refs:TypeMatcher (Results 1 – 9 of 9) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersContainer.h41 class TypeMatcher {
71 TypeMatcher() = delete;
73 TypeMatcher(ConstString type_name) in TypeMatcher() function
76 TypeMatcher(RegularExpression regex) in TypeMatcher() function
102 bool CreatedBySameMatchString(TypeMatcher other) const { in CreatedBySameMatchString()
110 typedef std::vector<std::pair<TypeMatcher, ValueSP>> MapType;
120 void Add(TypeMatcher matcher, const ValueSP &entry) { in Add()
133 bool Delete(TypeMatcher matcher) { in Delete()
156 bool GetExact(TypeMatcher matcher, ValueSP &entry) { in GetExact()
177 TypeMatcher type_matcher = m_map[index].first; in GetTypeNameSpecifierAtIndex()
[all …]
H A DDataVisualization.h72 static void ForEach(std::function<bool(const TypeMatcher &,
H A DTypeCategory.h31 typedef TypeMatcher ExactMatchMap;
32 typedef TypeMatcher RegexMatchMap;
/freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersMacros.h366 template <typename T> struct TypeMatcher##MatcherName##Getter { \
373 ::clang::ast_matchers::internal::TypeMatcher##MatcherName##Getter, \
380 ::clang::ast_matchers::internal::TypeMatcher##MatcherName##Getter, \
393 template <typename T> struct TypeMatcher##MatcherName##Getter { \
399 ::clang::ast_matchers::internal::TypeMatcher##MatcherName##Getter, \
H A DASTMatchFinder.h156 void addMatcher(const TypeMatcher &NodeMatch,
213 std::vector<std::pair<TypeMatcher, MatchCallback *>> Type;
H A DASTMatchers.h143 using TypeMatcher = internal::Matcher<QualType>; variable
/freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/
H A DDataVisualization.cpp189 std::function<bool(const TypeMatcher &, const lldb::TypeSummaryImplSP &)> in ForEach() argument
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectType.cpp1094 const TypeMatcher &type_matcher, in DoExecute()
1119 const TypeMatcher &type_matcher, in DoExecute()
1695 [&result](const TypeMatcher &type_matcher, in FormatterSpecificList()
/freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp1349 void MatchFinder::addMatcher(const TypeMatcher &NodeMatch, in addMatcher()