Lines Matching refs:at

10  * You may obtain a copy of the License at
207 * Inserts the specified node in this vector at the specified index.
215 * @param at Index of where to insert
217 private void insertElementAt(byte value, int at)
219 if(at==m_firstFree)
221 else if (at>m_firstFree)
223 int index=at/m_blocksize;
234 int offset=at%m_blocksize;
240 int index=at/m_blocksize;
243 int offset=at%m_blocksize;
290 int at=indexOf(s,0);
291 if(at<0)
293 removeElementAt(at);
298 * Deletes the component at the specified index. Each component in
303 * @param at index of where to remove a byte
305 private void removeElementAt(int at)
308 if(at<m_firstFree)
310 int index=at/m_blocksize;
312 int offset=at%m_blocksize;
338 * Sets the component at the specified index of this vector to be the
339 * specified object. The previous component at that position is discarded.
345 * @param at Index of where to set the object
347 public void setElementAt(byte value, int at)
349 if(at<m_blocksize)
351 m_map0[at]=value;
355 int index=at/m_blocksize;
356 int offset=at%m_blocksize;
371 if(at>=m_firstFree)
372 m_firstFree=at+1;
376 * Get the nth element. This is often at the innermost loop of an
381 * @return value at given index. If that value wasn't previously set,
420 * beginning the search at index, and testing for equality
426 * argument in this vector at position index or later in the
460 * beginning the search at index, and testing for equality
465 * argument in this vector at position index or later in the
475 * beginning the search at index, and testing for equality
480 * argument in this vector at position index or later in the