Lines Matching refs:Other
28 MatcherList::MatcherList(const MatcherList& Other) {
29 *this = Other;
36 MatcherList &MatcherList::operator=(const MatcherList &Other) {
37 if (this == &Other) return *this;
39 for (size_t i = 0, e = Other.List.size(); i != e; ++i) {
40 List.push_back(Other.List[i]->clone());
65 VariantValue::VariantValue(const VariantValue &Other) : Type(VT_Nothing) {
66 *this = Other;
87 VariantValue &VariantValue::operator=(const VariantValue &Other) {
88 if (this == &Other) return *this;
90 switch (Other.Type) {
92 setUnsigned(Other.getUnsigned());
95 setString(Other.getString());
98 setMatchers(Other.getMatchers());