Home | History | Annotate | Download | only in utils

Lines Matching refs:m_firstFree

52   private int m_firstFree = 0;
91 return m_firstFree;
103 if ((m_firstFree + 1) >= m_mapSize)
109 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
115 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1);
120 m_map[m_firstFree] = key;
121 m_values[m_firstFree] = value;
123 m_firstFree++;
137 for (int i = 0; i < m_firstFree; i++)
159 for (int i = 0; i < m_firstFree; i++)
178 for (int i = 0; i < m_firstFree; i++)
194 String [] keysArr = new String[m_firstFree];
196 for (int i = 0; i < m_firstFree; i++)