Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DInputPointersTests.java32 assertNotNull("new instance yCoordinates", src.getYCoordinates()); in testNewInstance()
47 assertNotSame("yCoordinates after reset", yCoordinates, src.getYCoordinates()); in testReset()
61 assertEquals("yCoordinates at " + i, i * 2, src.getYCoordinates()[i]); in testAdd()
76 assertEquals("yCoordinates at " + i, i * 2, src.getYCoordinates()[i]); in testAddAt()
92 assertSame("yCoordinates after set", dst.getYCoordinates(), src.getYCoordinates()); in testSet()
107 assertNotSame("yCoordinates after copy", dst.getYCoordinates(), src.getYCoordinates()); in testCopy()
114 dst.getYCoordinates(), 0, src.getYCoordinates(), 0, size); in testCopy()
141 dstCopy.getYCoordinates(), 0, dst.getYCoordinates(), 0, dstLen); in testAppend()
154 dstCopy.getYCoordinates(), 0, dst.getYCoordinates(), 0, dstLen); in testAppend()
162 src.getYCoordinates(), 0, dst.getYCoordinates(), dstLen, srcLen); in testAppend()
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DInputPointers.java123 public int[] getYCoordinates() { in getYCoordinates() method in InputPointers
DBinaryDictionary.java141 ips.getYCoordinates(), ips.getTimes(), ips.getPointerIds(), mInputCodePoints, in getSuggestionsWithSessionId()
DExpandableDictionary.java291 final int[] yCoordinates = ips.getYCoordinates(); in getWordsInner()