Lines Matching refs:std

73 		     static_cast<unsigned int>(std::time(0)));
82 std::tr1::mt19937 _M_generator;
85 struct forced_exception_error : public std::exception
165 typedef std::pair<size_t, size_t> alloc_data_type;
166 typedef std::map<void*, alloc_data_type> map_type;
171 friend std::ostream&
172 operator<<(std::ostream&, const throw_allocator_base&);
178 print_to_string(std::string&);
181 print_to_string(std::string&, const_reference);
220 { return std::allocator<value_type>().max_size(); }
223 allocate(size_type num, std::allocator<void>::const_pointer hint = 0)
226 value_type* const a = std::allocator<value_type>().allocate(num, hint);
233 { return std::allocator<value_type>().construct(p, val); }
237 { std::allocator<value_type>().destroy(p); }
243 std::allocator<value_type>().deallocate(p, num);
265 std::ostream&
266 operator<<(std::ostream& os, const throw_allocator_base& alloc)
268 std::string error;
310 { return std::make_pair(p, alloc_data_type(_S_label, size)); }
334 std::string error("throw_allocator_base::insert");
339 std::__throw_logic_error(error.c_str());
361 std::string error("throw_allocator_base::check_allocated by value ");
365 std::__throw_logic_error(error.c_str());
370 std::string error("throw_allocator_base::check_allocated by value ");
375 std::__throw_logic_error(error.c_str());
382 std::string found;
393 std::string error("throw_allocator_base::check_allocated by label ");
396 std::__throw_logic_error(error.c_str());
408 throw_allocator_base::print_to_string(std::string& s)
417 throw_allocator_base::print_to_string(std::string& s, const_reference ref)