Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/src/com/android/inputmethod/latin/
DExpandableDictionary.java52 Node[] tempData = new Node[length + INCREMENT]; in add() local
54 System.arraycopy(data, 0, tempData, 0, length); in add()
56 data = tempData; in add()
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DDictionaryBackupAgent.java189 byte[] tempData = new byte[1024]; in restoreDictionary()
191 while ((got = gzip.read(tempData)) > 0) { in restoreDictionary()
192 baos.write(tempData, 0, got); in restoreDictionary()