Home | History | Annotate | Download | only in wtf

Lines Matching refs:canInitializeWithMemset

86     template <bool canInitializeWithMemset, typename T>
252 VectorInitializer<VectorTraits<T>::canInitializeWithMemset, T>::initialize(begin, end);
565 // finalizer can visit them safely. canInitializeWithMemset tells us
568 COMPILE_ASSERT(!Allocator::isGarbageCollected || !VectorTraits<T>::needsDestruction || VectorTraits<T>::canInitializeWithMemset, ClassHasProblemsWithFinalizersCalledOnClearedMemory);
569 COMPILE_ASSERT(!WTF::IsPolymorphic<T>::value || !VectorTraits<T>::canInitializeWithMemset, CantInitializeWithMemsetIfThereIsAVtable);
577 // finalizer can visit them safely. canInitializeWithMemset tells us
580 COMPILE_ASSERT(!Allocator::isGarbageCollected || !VectorTraits<T>::needsDestruction || VectorTraits<T>::canInitializeWithMemset, ClassHasProblemsWithFinalizersCalledOnClearedMemory);