Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
DBinaryDictEncoderUtils.java126 node.mCachedSize = nodeSize; in calculatePtNodeArrayMaximumSize()
129 ptNodeArray.mCachedSize = size; in calculatePtNodeArrayMaximumSize()
345 ptNode.mCachedSize = nodeSize; in computeActualPtNodeArraySize()
348 if (ptNodeArray.mCachedSize != size) { in computeActualPtNodeArraySize()
349 ptNodeArray.mCachedSize = size; in computeActualPtNodeArraySize()
371 nodeffset += ptNode.mCachedSize; in initializePtNodeArraysCachedAddresses()
373 nodeArrayOffset += nodeArray.mCachedSize; in initializePtNodeArraysCachedAddresses()
425 final int oldNodeArraySize = ptNodeArray.mCachedSize; in computeAddresses()
428 final int newNodeArraySize = ptNodeArray.mCachedSize; in computeAddresses()
443 + (lastPtNodeArray.mCachedAddressAfterUpdate + lastPtNodeArray.mCachedSize)); in computeAddresses()
[all …]
DFusionDictionary.java49 int mCachedSize = Integer.MIN_VALUE; field in FusionDictionary.PtNodeArray
98 int mCachedSize; // The size, in bytes, of this PtNode. field in FusionDictionary.PtNode
DVer2DictEncoder.java170 final int bufferSize = lastNodeArray.mCachedAddressAfterUpdate + lastNodeArray.mCachedSize; in writeDictionary()
/packages/apps/Camera2/src/com/android/camera/data/
DVideoItem.java66 private Size mCachedSize; field in VideoItem
114 if (mCachedSize == null || in getDimensions()
115 width != mCachedSize.getWidth() || height != mCachedSize.getHeight()) { in getDimensions()
116 mCachedSize = new Size(width, height); in getDimensions()
118 return mCachedSize; in getDimensions()