Searched refs:doPrepareForPush (Results 1 – 4 of 4) sorted by relevance
49 bool DynamicVectorBase::doPrepareForPush(size_t elementSize) { in doPrepareForPush() function in chre::DynamicVectorBase75 bool spaceAvailable = doPrepareForPush(elementSize); in doPushBack()
333 bool doPrepareForPush(std::true_type);340 bool doPrepareForPush(std::false_type);
55 bool doPrepareForPush(size_t elementSize);
341 return doPrepareForPush(typename std::is_trivial<ElementType>::type()); in prepareForPush()345 bool DynamicVector<ElementType>::doPrepareForPush(std::true_type) { in doPrepareForPush() function346 return DynamicVectorBase::doPrepareForPush(sizeof(ElementType)); in doPrepareForPush()350 bool DynamicVector<ElementType>::doPrepareForPush(std::false_type) { in doPrepareForPush() function