Searched refs:defaultCapacity (Results 1 – 1 of 1) sorted by relevance
33 public InputPointers(final int defaultCapacity) { in InputPointers() argument34 mDefaultCapacity = defaultCapacity; in InputPointers()35 mXCoordinates = new ResizableIntArray(defaultCapacity); in InputPointers()36 mYCoordinates = new ResizableIntArray(defaultCapacity); in InputPointers()37 mPointerIds = new ResizableIntArray(defaultCapacity); in InputPointers()38 mTimes = new ResizableIntArray(defaultCapacity); in InputPointers()124 final int defaultCapacity = mDefaultCapacity; in reset() local125 mXCoordinates.reset(defaultCapacity); in reset()126 mYCoordinates.reset(defaultCapacity); in reset()127 mPointerIds.reset(defaultCapacity); in reset()[all …]