Lines Matching defs:elements
699 * current implementation will construct N elements
726 //! \brief Deallocates the vector's memory and destroys all of its elements.
732 //! \brief Returns the number of elements currently contained.
738 /*! \brief Empties the vector of all elements.
741 * on contained elements.
790 /*! \brief Constructs with a specified number of initial elements.
792 * \param size number of initial elements.
794 * \param val value of initial elements.
850 //! \brief Tests whether this instance has any elements.
856 //! \brief Returns the maximum number of elements this instance can hold.
862 //! \brief Returns the maximum number of elements this instance can hold.
913 /*! \brief Assigns elements of the vector based on a source iterator range.
1205 ::size_t elements = required / sizeof(typename T::cl_type);
1206 param->assign(&value[0], &value[elements]);
1207 for (::size_t i = 0; i < elements; i++)