Lines Matching refs:where
632 …void construct(void*where) {new(where) T();} // C++ note: the () in T() ensure zero initialization.
639 void construct(void*where) {new(where) T(exemplar);}
647 void construct(void* where) {new(where) T(f());}
654 void construct(void* where) {
655 call( [where](const typename std::decay<P>::type&... args ){
656 new(where) T(args...);
673 virtual void construct(void* where) = 0;
692 void construct(void* where) override {
693 Constructor::construct(where);
699 void* where = my_allocator_type().allocate(1);
700 return new(where) callback_leaf( std::forward<P>(params)... );