Searched refs:mBuffer (Results 26 - 32 of 32) sorted by relevance

12

/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
H A Ddynamic_patricia_trie_gc_event_listeners.cpp38 mBuffer, newProbability, &writingPos)) {
51 mBuffer, NOT_A_DICT_POS /* childrenPosition */, &writingPos)) {
H A Ddynamic_patricia_trie_reading_helper.h67 : mIsError(false), mReadingState(), mBuffer(buffer),
68 mNodeReader(mBuffer, bigramsPolicy, shortcutsPolicy), mReadingStateStack() {}
246 const BufferWithExtendableBuffer *const mBuffer; member in class:latinime::DynamicPatriciaTrieReadingHelper
/packages/apps/Nfc/nci/jni/
H A DRouteDataSet.cpp41 : mBuffer (NULL),
50 mBuffer = new UINT8 [aid.length()];
57 mBuffer [mBufferLen] = (UINT8) num;
64 mBuffer [mBufferLen] = (UINT8) num;
84 delete [] mBuffer;
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/
H A DBitmapRegionTileSource.java95 Bitmap mBuffer; field in class:DumbBitmapRegionDecoder
99 mBuffer = b;
116 return mBuffer.getWidth();
119 return mBuffer.getHeight();
135 mTempCanvas.drawBitmap(mBuffer, -wantRegion.left, -wantRegion.top, mTempPaint);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DKeyboardView.java244 private Bitmap mBuffer; field in class:KeyboardView
245 /** Notes if the keyboard just changed, so that we could possibly reallocate the mBuffer. */
661 mBuffer = null;
667 if (mDrawPending || mBuffer == null || mKeyboardChanged) {
670 canvas.drawBitmap(mBuffer, 0, 0, null);
674 boolean isBufferNull = (mBuffer == null);
677 (mBuffer.getWidth() != getWidth() || mBuffer.getHeight() != getHeight())) {
680 mBuffer = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
681 mCanvas = new Canvas(mBuffer);
[all...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/
H A DContactPhotoManager.java1082 private byte mBuffer[]; field in class:ContactPhotoManagerImpl.LoaderThread
1323 if (mBuffer == null) {
1324 mBuffer = new byte[BUFFER_SIZE];
1339 while ((size = is.read(mBuffer)) != -1) {
1340 baos.write(mBuffer, 0, size);
/packages/apps/Music/src/com/android/music/
H A DArtistAlbumBrowserActivity.java561 private final StringBuilder mBuffer = new StringBuilder(); field in class:ArtistAlbumBrowserActivity.ArtistAlbumListAdapter
712 final StringBuilder builder = mBuffer;

Completed in 216 milliseconds

12