Home | History | Annotate | Download | only in utils

Lines Matching refs:m_firstFree

45   private int m_firstFree = 0;
84 return m_firstFree;
96 if ((m_firstFree + 1) >= m_mapSize)
102 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
108 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1);
113 m_map[m_firstFree] = key;
114 m_values[m_firstFree] = value;
116 m_firstFree++;
130 for (int i = 0; i < m_firstFree; i++)
152 for (int i = 0; i < m_firstFree; i++)
171 for (int i = 0; i < m_firstFree; i++)
187 String [] keysArr = new String[m_firstFree];
189 for (int i = 0; i < m_firstFree; i++)