Searched refs:fBitmap (Results 126 - 134 of 134) sorted by relevance

123456

/haiku/src/kits/interface/
H A DColumnTypes.cpp597 fBitmap(bitmap)
605 return fBitmap;
612 fBitmap = bitmap;
H A DBitmap.cpp64 fBitmap(bitmap)
72 fBitmap->_ReconnectToAppServer();
/haiku/src/kits/tracker/
H A DIconCache.cpp1848 fBitmap(NULL),
1859 delete fBitmap;
1866 if (fBitmap == NULL)
1867 fBitmap = new BBitmap(BRect(BPoint(0, 0), fSize), fColorSpace);
1869 return fBitmap;
1876 if (fBitmap == NULL)
1879 BBitmap* bitmap = fBitmap;
1880 fBitmap = NULL;
H A DIconCache.h500 BBitmap* fBitmap; member in class:BPrivate::LazyBitmapAllocator
/haiku/src/preferences/mail/
H A DConfigWindow.cpp173 fBitmap = bitmap;
182 delete fBitmap;
192 DrawBitmap(fBitmap, updateRect, updateRect);
196 BBitmap *fBitmap; member in class:BitmapView
/haiku/src/apps/showimage/
H A DShowImageView.h187 BBitmap* fBitmap; member in class:ShowImageView
/haiku/headers/private/interface/
H A DColumnTypes.h204 BBitmap* fBitmap; member in class:BBitmapField
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPJob.cpp457 const int sourceBytesPerRow = band->fBitmap.BytesPerRow();
460 static_cast<unsigned char*>(band->fBitmap.Bits())
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DBPlusTree.cpp123 uint8* fBitmap; member in class:BFS::BitmapArray
3026 fBitmap = (uint8*)calloc(fSize, 1);
3033 free(fBitmap);
3040 return fBitmap != NULL ? B_OK : B_NO_MEMORY;
3051 return (fBitmap[byteIndex] & (1UL << (index & 0x7))) != 0;
3063 fBitmap[byteIndex] |= 1UL << (index & 0x7);
3066 fBitmap[byteIndex] &= ~(1UL << (index & 0x7));

Completed in 103 milliseconds

123456