Lines Matching full:other
85 CallSignature(CallSignature const &other) in CallSignature() argument
87 name_ = other.name_; in CallSignature()
88 paramCounter_ = other.paramCounter_; in CallSignature()
89 order_ = other.order_; in CallSignature()
90 id_ = other.id_; in CallSignature()
91 returnType_ = other.returnType_; in CallSignature()
92 constructor_ = other.constructor_; in CallSignature()
93 if (paramCounter_ > 0 && other.paramsType_ != nullptr) { in CallSignature()
96 (*paramsType_)[i] = other.GetParametersType()[i]; in CallSignature()
99 kind_ = other.kind_; in CallSignature()
102 CallSignature &operator=(CallSignature const &other)
104 name_ = other.name_;
105 paramCounter_ = other.paramCounter_;
106 order_ = other.order_;
107 id_ = other.id_;
108 returnType_ = other.returnType_;
109 constructor_ = other.constructor_;
110 if (paramCounter_ > 0 && other.paramsType_ != nullptr) {
113 (*paramsType_)[i] = other.GetParametersType()[i];
116 kind_ = other.kind_;