Home | History | Annotate | Download | only in common

Lines Matching full:vector

24  * <p>Ultralightweight C++ implementation of a <tt>void*</tt> vector
25 * that is (mostly) compatible with java.util.Vector.
30 * its purpose (porting code from java that uses java.util.Vector)
31 * well, and it could be easily made into a more robust vector class.
45 * check after each call on each vector when doing many operations on
53 * pointer is released by the vector, either when the vector itself is
64 * vector contains no element. That is, indexOf() will always return
110 * Compare this vector with another. They will be considered
122 // java.util.Vector API
176 * Change the size of this vector as follows: If newSize is
184 * Fill in the given array with all elements of this vector.
199 * Removes the element at the given index from this vector and
201 * caller owns the result and must delete it and the vector entry
203 * one index and shortening the size of the vector by one. If the
205 * then 0 is returned and the vector is unchanged.
210 * Returns true if this vector contains none of the elements
211 * of the given vector.
212 * @param other vector to be checked for containment
218 * Insert the given object into this vector at its sorted position
225 * Insert the given integer into this vector at its sorted position
232 * Sort the contents of the vector, assuming that the contents of the
233 * vector are of type int32_t.
238 * Sort the contents of this vector, using a caller-supplied function
246 * Stable sort the contents of this vector using a caller-supplied function