Lines Matching refs:this_class
156 #define WEBRTC_RTCSTATS_IMPL(this_class, parent_class, type_str, ...) \ argument
157 const char this_class::kType[] = type_str; \
159 std::unique_ptr<webrtc::RTCStats> this_class::copy() const { \
160 return std::unique_ptr<webrtc::RTCStats>(new this_class(*this)); \
163 const char* this_class::type() const { return this_class::kType; } \
166 this_class::MembersOfThisObjectAndAncestors( \
187 #define WEBRTC_RTCSTATS_IMPL_NO_MEMBERS(this_class, parent_class, type_str) \ argument
188 const char this_class::kType[] = type_str; \
190 std::unique_ptr<webrtc::RTCStats> this_class::copy() const { \
191 return std::unique_ptr<webrtc::RTCStats>(new this_class(*this)); \
194 const char* this_class::type() const { return this_class::kType; } \
197 this_class::MembersOfThisObjectAndAncestors( \