Searched refs:nvalues (Results 1 – 3 of 3) sorted by relevance
/frameworks/support/v4/java/android/support/v4/util/ |
D | LongSparseArray.java | 203 Object[] nvalues = new Object[n]; in put() local 207 System.arraycopy(mValues, 0, nvalues, 0, mValues.length); in put() 210 mValues = nvalues; in put() 344 Object[] nvalues = new Object[n]; in append() local 348 System.arraycopy(mValues, 0, nvalues, 0, mValues.length); in append() 351 mValues = nvalues; in append()
|
D | SparseArrayCompat.java | 196 Object[] nvalues = new Object[n]; in put() local 200 System.arraycopy(mValues, 0, nvalues, 0, mValues.length); in put() 203 mValues = nvalues; in put() 339 Object[] nvalues = new Object[n]; in append() local 343 System.arraycopy(mValues, 0, nvalues, 0, mValues.length); in append() 346 mValues = nvalues; in append()
|
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/ |
D | PositionMap.java | 206 Object[] nvalues = new Object[n]; in put() local 210 System.arraycopy(mValues, 0, nvalues, 0, mValues.length); in put() 213 mValues = nvalues; in put() 349 Object[] nvalues = new Object[n]; in append() local 353 System.arraycopy(mValues, 0, nvalues, 0, mValues.length); in append() 356 mValues = nvalues; in append()
|