Home | History | Annotate | Download | only in Dynamic

Lines Matching defs:MatcherList

23 MatcherList::MatcherList() : List() {}
25 MatcherList::MatcherList(const DynTypedMatcher &Matcher)
28 MatcherList::MatcherList(const MatcherList& Other) {
32 MatcherList::~MatcherList() {
36 MatcherList &MatcherList::operator=(const MatcherList &Other) {
45 void MatcherList::add(const DynTypedMatcher &Matcher) {
49 void MatcherList::reset() {
56 std::string MatcherList::getTypeAsString() const {
78 setMatchers(MatcherList(Matcher));
81 VariantValue::VariantValue(const MatcherList &Matchers) : Type(VT_Nothing) {
157 const MatcherList &VariantValue::getMatchers() const {
162 void VariantValue::setMatchers(const MatcherList &NewValue) {
165 Value.Matchers = new MatcherList(NewValue);