HomeSort by relevance Sort by last modified time
    Searched refs:ListWrapper (Results 1 - 9 of 9) sorted by null

  /external/webrtc/src/system_wrappers/source/
list_no_stl.cc 47 ListWrapper::ListWrapper()
55 ListWrapper::~ListWrapper()
61 "Potential memory leak in ListWrapper");
69 bool ListWrapper::Empty() const
74 unsigned int ListWrapper::GetSize() const
79 int ListWrapper::PushBack(const void* ptr)
87 int ListWrapper::PushBack(const unsigned int item_id)
95 int ListWrapper::PushFront(const unsigned int item_id
    [all...]
list_stl.h 21 friend class ListWrapper;
37 class ListWrapper
40 ListWrapper();
41 ~ListWrapper();
43 // ListWrapper functions
62 DISALLOW_COPY_AND_ASSIGN(ListWrapper);
list_stl.cc 44 ListWrapper::ListWrapper() : list_()
48 ListWrapper::~ListWrapper()
54 "Potential memory leak in ListWrapper");
61 bool ListWrapper::Empty() const
66 unsigned int ListWrapper::GetSize() const
71 int ListWrapper::PushBack(const void* ptr)
78 int ListWrapper::PushBack(const unsigned int item_id)
85 int ListWrapper::PushFront(const unsigned int item_id
    [all...]
list_unittest.cc 16 using ::webrtc::ListWrapper;
25 // the dynamic and static implementation of ListWrapper.
26 // Clarification: ListWrapper has two versions of PushBack(..). It takes an
31 // either the integer version or void pointer version of ListWrapper.
93 ListWrapper list_;