Home
last modified time | relevance | path

Searched refs:ListWrapper (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/src/system_wrappers/source/
Dlist_no_stl.cc47 ListWrapper::ListWrapper() in ListWrapper() function in webrtc::ListWrapper
55 ListWrapper::~ListWrapper() in ~ListWrapper()
69 bool ListWrapper::Empty() const in Empty()
74 unsigned int ListWrapper::GetSize() const in GetSize()
79 int ListWrapper::PushBack(const void* ptr) in PushBack()
87 int ListWrapper::PushBack(const unsigned int item_id) in PushBack()
95 int ListWrapper::PushFront(const unsigned int item_id) in PushFront()
103 int ListWrapper::PushFront(const void* ptr) in PushFront()
111 int ListWrapper::PopFront() in PopFront()
116 int ListWrapper::PopBack() in PopBack()
[all …]
Dlist_stl.cc44 ListWrapper::ListWrapper() : list_() in ListWrapper() function in webrtc::ListWrapper
48 ListWrapper::~ListWrapper() in ~ListWrapper()
61 bool ListWrapper::Empty() const in Empty()
66 unsigned int ListWrapper::GetSize() const in GetSize()
71 int ListWrapper::PushBack(const void* ptr) in PushBack()
78 int ListWrapper::PushBack(const unsigned int item_id) in PushBack()
85 int ListWrapper::PushFront(const unsigned int item_id) in PushFront()
92 int ListWrapper::PushFront(const void* ptr) in PushFront()
99 int ListWrapper::PopFront() in PopFront()
109 int ListWrapper::PopBack() in PopBack()
[all …]
Dlist_stl.h21 friend class ListWrapper; variable
37 class ListWrapper
40 ListWrapper();
41 ~ListWrapper();
62 DISALLOW_COPY_AND_ASSIGN(ListWrapper);
Dlist_unittest.cc16 using ::webrtc::ListWrapper;
93 ListWrapper list_;
/external/webrtc/src/system_wrappers/interface/
Dlist_wrapper.h21 friend class ListWrapper; variable
39 class ListWrapper
42 ListWrapper();
43 virtual ~ListWrapper();
/external/webrtc/src/system_wrappers/test/list/
Dlist.cc39 void PrintList(ListWrapper& list) in PrintList()
54 void ListSanity(ListWrapper& list) in ListSanity()
81 ListWrapper test_list; in main()