Searched defs:Bitmap (Results 1 - 5 of 5) sorted by last modified time

/frameworks/minikin/include/minikin/
H A DLayout.h29 // The Bitmap class is for debugging. We'll probably move it out
32 class Bitmap { class in namespace:minikin
34 Bitmap(int width, int height);
35 ~Bitmap();
96 void draw(minikin::Bitmap*, int x0, int y0, float size) const;
/frameworks/minikin/libs/minikin/
H A DLayout.cpp46 Bitmap::Bitmap(int width, int height) : width(width), height(height) { function in class:minikin::Bitmap
50 Bitmap::~Bitmap() {
54 void Bitmap::writePnm(std::ofstream &o) const {
62 void Bitmap::drawGlyph(const android::GlyphBitmap& bitmap, int x, int y) {
863 void Layout::draw(minikin::Bitmap* surface, int x0, int y0, float size) const {
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java36 public final class Bitmap implements Parcelable { class in inherits:Parcelable
37 private static final String TAG = "Bitmap";
42 * @see Bitmap#getDensity()
43 * @see Bitmap#setDensity(int)
48 * Backing buffer for the Bitmap.
59 * Represents whether the Bitmap's content is requested to be pre-multiplied.
61 * isPremultiplied() may never return true for a 565 Bitmap or a bitmap
108 Bitmap(long nativeBitmap, byte[] buffer, int width, int height, int density, method in class:Bitmap
191 * Bitmap pixel data is not re-initialized for the new configuration.</p>
195 * or lesser size. If the Bitmap'
[all...]
/frameworks/base/core/jni/android/graphics/
H A DBitmap.cpp1 #define LOG_TAG "Bitmap"
2 #include "Bitmap.h"
36 WrappedPixelRef(Bitmap* wrapper, void* storage,
117 Bitmap& mBitmap;
128 Bitmap::Bitmap(JNIEnv* env, jbyteArray storageObj, void* address, function in class:android::Bitmap
140 Bitmap::Bitmap(void* address, void* context, FreeFunc freeFunc, function in class:android::Bitmap
152 Bitmap::Bitmap(voi function in class:android::Bitmap
[all...]
H A DBitmap.h41 * Bitmap object & SkBitmap along with trying to map a notion of strong/weak
43 * two GC passes to free the byte[] that backs a Bitmap.
48 class Bitmap { class in namespace:android
50 Bitmap(JNIEnv* env, jbyteArray storageObj, void* address,
52 Bitmap(void* address, void* context, FreeFunc freeFunc,
54 Bitmap(void* address, int fd, const SkImageInfo& info, size_t rowBytes,
88 ~Bitmap();

Completed in 135 milliseconds