HomeSort by relevance Sort by last modified time
    Searched defs:RefCountImpl (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
ref_count.h 22 // RefCountImpl<T>* implementation = new RefCountImpl<T>(p);
38 // RefCountImpl<MyImplementation>* implementation =
39 // new RefCountImpl<MyImplementation>();
44 class RefCountImpl : public T {
46 RefCountImpl() : ref_count_(0) {}
49 explicit RefCountImpl(P p) : T(p), ref_count_(0) {}
52 RefCountImpl(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {}
55 RefCountImpl(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {}
58 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4) : T(p1, p2, p3, p4), ref_count_(0) {
    [all...]
  /external/webrtc/src/system_wrappers/interface/
ref_count.h 22 // RefCountImpl<T>* implementation = new RefCountImpl<T>(p);
38 // RefCountImpl<MyImplementation>* implementation =
39 // new RefCountImpl<MyImplementation>();
44 class RefCountImpl : public T {
46 RefCountImpl() : ref_count_(0) {}
49 explicit RefCountImpl(P p) : T(p), ref_count_(0) {}
52 RefCountImpl(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {}
55 RefCountImpl(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {}
58 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4) : T(p1, p2, p3, p4), ref_count_(0) {
    [all...]

Completed in 84 milliseconds