Lines Matching defs:index

197    * Inserts the specified object in this vector at the specified index.
198 * Each component in this vector with an index greater or equal to
199 * the specified index is shifted upward to have an index one greater
246 * with an index greater or equal to the object's index is shifted
247 * downward to have an index one smaller than the value it had
276 * Deletes the component at the specified index. Each component in
277 * this vector with an index greater or equal to the specified
278 * index is shifted downward to have an index one smaller than
281 * @param i index of where to remove an object
295 * Sets the component at the specified index of this vector to be the
298 * The index must be a value greater than or equal to 0 and less
302 * @param index Index of where to set the object
304 public final void setElementAt(Object value, int index)
306 m_map[index] = value;
312 * @param i index of object to get
314 * @return object at given index
342 * beginning the search at index, and testing for equality
346 * @param index Index of where to begin search
347 * @return the index of the first occurrence of the object
348 * argument in this vector at position index or later in the
351 public final int indexOf(Object elem, int index)
354 for (int i = index; i < m_firstFree; i++)
365 * beginning the search at index, and testing for equality
369 * @return the index of the first occurrence of the object
370 * argument in this vector at position index or later in the
387 * beginning the search at index, and testing for equality
391 * @return the index of the first occurrence of the object
392 * argument in this vector at position index or later in the