Home
last modified time | relevance | path

Searched refs:defaultCapacity (Results 1 – 1 of 1) sorted by relevance

/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
DInputPointers.java33 public InputPointers(final int defaultCapacity) { in InputPointers() argument
34 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() local
125 mXCoordinates.reset(defaultCapacity); in reset()
126 mYCoordinates.reset(defaultCapacity); in reset()
127 mPointerIds.reset(defaultCapacity); in reset()
[all …]