OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SortedVectorImpl
(Results
1 - 3
of
3
) sorted by null
/system/core/include/utils/
SortedVector.h
35
class SortedVector : private
SortedVectorImpl
146
:
SortedVectorImpl
(sizeof(TYPE),
156
:
SortedVectorImpl
(rhs) {
166
SortedVectorImpl
::operator = (rhs);
172
SortedVectorImpl
::operator = (rhs);
207
return
SortedVectorImpl
::add(&item);
212
return
SortedVectorImpl
::indexOf(&item);
217
return
SortedVectorImpl
::orderOf(&item);
222
return
SortedVectorImpl
::merge(reinterpret_cast<const VectorImpl&>(vector));
227
return
SortedVectorImpl
::merge(reinterpret_cast<const SortedVectorImpl&>(vector))
[
all
...]
VectorImpl.h
131
class
SortedVectorImpl
: public VectorImpl
134
SortedVectorImpl
(size_t itemSize, uint32_t flags);
135
SortedVectorImpl
(const VectorImpl& rhs);
136
virtual ~
SortedVectorImpl
();
138
SortedVectorImpl
& operator = (const
SortedVectorImpl
& rhs);
151
ssize_t merge(const
SortedVectorImpl
& vector);
/system/core/libutils/
VectorImpl.cpp
561
SortedVectorImpl
::
SortedVectorImpl
(size_t itemSize, uint32_t flags)
566
SortedVectorImpl
::
SortedVectorImpl
(const VectorImpl& rhs)
571
SortedVectorImpl
::~
SortedVectorImpl
()
575
SortedVectorImpl
&
SortedVectorImpl
::operator = (const
SortedVectorImpl
& rhs)
577
return static_cast<
SortedVectorImpl
&>( VectorImpl::operator = (static_cast<const VectorImpl&>(rhs)) )
[
all
...]
Completed in 68 milliseconds