Searched refs:v_ (Results 1 – 5 of 5) sorted by relevance
35 nasty_vector() : v_() {} in nasty_vector()36 explicit nasty_vector(size_type n) : v_(n) {} in nasty_vector()37 nasty_vector(size_type n, const value_type& value) : v_(n, value) {} in nasty_vector()38 …template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, l… in nasty_vector()40 nasty_vector(std::initializer_list<value_type> il) : v_(il) {} in nasty_vector()45 void assign(InputIterator first, InputIterator last) { v_.assign(first, last); } in assign()46 void assign(size_type n, const value_type& u) { v_.assign(n, u); } in assign()48 void assign(std::initializer_list<value_type> il) { v_.assign(il); } in assign()51 iterator begin() _NOEXCEPT { return v_.begin(); } in begin()52 const_iterator begin() const _NOEXCEPT { return v_.begin(); } in begin()[all …]
30 pthread_mutex_t v_; member in boost::detail::spinlock36 return pthread_mutex_trylock( &v_ ) == 0; in try_lock()41 pthread_mutex_lock( &v_ ); in lock()46 pthread_mutex_unlock( &v_ ); in unlock()
34 int v_; member in boost::detail::spinlock40 int r = __sync_lock_test_and_set( &v_, 1 ); in try_lock()54 __sync_lock_release( &v_ ); in unlock()
99 value_type v_; member in boost::error_info102 v_(v) in error_info()113 value_type v_; member in boost::error_info116 v_(v) in error_info()127 value_type v_; member in boost::error_info130 v_(v) in error_info()287 x.throw_function_=y.v_; in set_info()295 x.throw_file_=y.v_; in set_info()303 x.throw_line_=y.v_; in set_info()
26 T & v_; member28 inline addr_impl_ref( T & v ): v_( v ) {} in addr_impl_ref()29 inline operator T& () const { return v_; } in operator T&()