OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SortedListImpl
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/libs/hwui/utils/
SortedListImpl.h
25
class
SortedListImpl
: public VectorImpl {
27
SortedListImpl
(size_t itemSize, uint32_t flags);
28
SortedListImpl
(const VectorImpl& rhs);
29
virtual ~
SortedListImpl
();
31
SortedListImpl
& operator =(const
SortedListImpl
& rhs);
37
ssize_t merge(const
SortedListImpl
& vector);
SortedListImpl.cpp
17
#include "
SortedListImpl
.h"
26
SortedListImpl
::
SortedListImpl
(size_t itemSize, uint32_t flags): VectorImpl(itemSize, flags) {
29
SortedListImpl
::
SortedListImpl
(const VectorImpl& rhs): VectorImpl(rhs) {
32
SortedListImpl
::~
SortedListImpl
() {
35
SortedListImpl
&
SortedListImpl
::operator =(const
SortedListImpl
& rhs)
[
all
...]
Completed in 60 milliseconds