Searched defs:RefCountedObject (Results 1 – 1 of 1) sorted by relevance
/external/chromium_org/third_party/libjingle/source/talk/base/ |
D | refcount.h | 49 RefCountedObject() : ref_count_(0) { in RefCountedObject() function 53 explicit RefCountedObject(P p) : T(p), ref_count_(0) { in RefCountedObject() function 57 RefCountedObject(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) { in RefCountedObject() function 61 RefCountedObject(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) { in RefCountedObject() function 65 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4) in RefCountedObject() function 70 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) in RefCountedObject() function
|