Lines Matching refs:element

176 	inline VectorIterator<Value>(Value *element)
177 : fElement(element)
214 The contained elements are destroyed. Note, that, if the element
228 \param value The element to be inserted.
242 \param value The element to be inserted.
255 /*! \brief Removes the first element of the vector.
268 /*! \brief Removes the last element of the vector.
299 \param index The index at which to insert the new element. It must
323 the new element.
359 /*! \brief Removes the element at the given index.
360 \param index The position of the element to be removed.
361 \return An iterator referring to the element now being located at index
362 \a index (End(), if it was the last element that has been
379 /*! \brief Removes the element at the given position.
380 \param iterator An iterator referring to the element to be removed.
381 \return An iterator referring to the element succeeding the removed
382 one (End(), if it was the last element that has been
435 If the vector is not empty, Begin() refers to its first element,
451 If the vector is not empty, Begin() refers to its first element,
468 element, i.e. it must not be dereferenced!
484 element, i.e. it must not be dereferenced!
530 \return An iterator referring to the same element as \a index, or
545 \return An iterator referring to the same element as \a index, or
559 /*! \brief Returns the element at a given index.
560 \param index The index identifying the element to be returned.
561 \return The element identified by the given index.
570 // Return the 0th element by default. Unless the allocation failed, there
571 // is always a 0th element -- uninitialized perhaps.
576 /*! \brief Returns the element at a given index.
577 \param index The index identifying the element to be returned.
578 \return The element identified by the given index.
587 // Return the 0th element by default. Unless the allocation failed, there
588 // is always a 0th element -- uninitialized perhaps.
593 /*! \brief Returns the index of the next element with the specified value.
594 \param value The value of the element to be found.
595 \param start The index at which to be started to search for the element.
596 \return The index of the found element, or \c -1, if no further element
613 /*! \brief Returns an iterator referring to the next element with the
615 \param value The value of the element to be found.
616 \return An iterator referring to the found element, or End(), if no
628 /*! \brief Returns an iterator referring to the next element with the
630 \param value The value of the element to be found.
632 element.
633 \return An iterator referring to the found element, or End(), if no
648 /*! \brief Returns an iterator referring to the of the next element with the
650 \param value The value of the element to be found.
651 \return An iterator referring to the found element, or End(), if no
663 /*! \brief Returns an iterator referring to the of the next element with the
665 \param value The value of the element to be found.
667 element.
668 \return An iterator referring to the found element, or End(), if no
707 The internal element array will be grown or shrunk to the next multiple
711 not invoke a destructor or constructor on any element.
713 \param count The number of element.
742 /*! \brief Returns index of the element the supplied iterator refers to.
743 \return The index of the element the supplied iterator refers to, or
761 /*! \brief Returns index of the element the supplied iterator refers to.
762 \return The index of the element the supplied iterator refers to, or