Searched refs:mCachedSize (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/data/
H A DVideoItem.java66 private Size mCachedSize; field in class:VideoItem
114 if (mCachedSize == null ||
115 width != mCachedSize.getWidth() || height != mCachedSize.getHeight()) {
116 mCachedSize = new Size(width, height);
118 return mCachedSize;
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
H A DBinaryDictEncoderUtils.java116 * everything, and caches it in the `mCachedSize' member of the nodes; deduce the size of
117 * the containing node array, and cache it it its 'mCachedSize' member.
126 node.mCachedSize = nodeSize;
129 ptNodeArray.mCachedSize = size;
345 ptNode.mCachedSize = nodeSize;
348 if (ptNodeArray.mCachedSize != size) {
349 ptNodeArray.mCachedSize = size;
371 nodeffset += ptNode.mCachedSize;
373 nodeArrayOffset += nodeArray.mCachedSize;
425 final int oldNodeArraySize = ptNodeArray.mCachedSize;
[all...]
H A DFusionDictionary.java49 int mCachedSize = Integer.MIN_VALUE; field in class:FusionDictionary.PtNodeArray
92 // mCachedSize and mCachedAddressBefore/AfterUpdate are helpers for binary dictionary
97 // The update process does not need two versions of mCachedSize.
98 int mCachedSize; // The size, in bytes, of this PtNode. field in class:FusionDictionary.PtNode

Completed in 295 milliseconds