Home
last modified time | relevance | path

Searched refs:doPrepareForPush (Results 1 – 4 of 4) sorted by relevance

/system/chre/util/
Ddynamic_vector_base.cc49 bool DynamicVectorBase::doPrepareForPush(size_t elementSize) { in doPrepareForPush() function in chre::DynamicVectorBase
75 bool spaceAvailable = doPrepareForPush(elementSize); in doPushBack()
/system/chre/util/include/chre/util/
Ddynamic_vector.h333 bool doPrepareForPush(std::true_type);
340 bool doPrepareForPush(std::false_type);
Ddynamic_vector_base.h55 bool doPrepareForPush(size_t elementSize);
Ddynamic_vector_impl.h341 return doPrepareForPush(typename std::is_trivial<ElementType>::type()); in prepareForPush()
345 bool DynamicVector<ElementType>::doPrepareForPush(std::true_type) { in doPrepareForPush() function
346 return DynamicVectorBase::doPrepareForPush(sizeof(ElementType)); in doPrepareForPush()
350 bool DynamicVector<ElementType>::doPrepareForPush(std::false_type) { in doPrepareForPush() function