Searched defs:RefCountImpl (Results 1 – 1 of 1) sorted by relevance
/external/webrtc/webrtc/system_wrappers/include/ |
D | ref_count.h | 46 RefCountImpl() : ref_count_(0) {} in RefCountImpl() function 49 explicit RefCountImpl(P p) : T(p), ref_count_(0) {} in RefCountImpl() function 52 RefCountImpl(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {} in RefCountImpl() function 55 RefCountImpl(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {} in RefCountImpl() function 58 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4) : T(p1, p2, p3, p4), ref_count_(0) {} in RefCountImpl() function 61 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) in RefCountImpl() function
|