HomeSort by relevance Sort by last modified time
    Searched defs:Bitmap (Results 1 - 25 of 25) sorted by null

  /dalvik/tests/079-phantom/src/
Main.java 18 Bitmap mBitmap1, mBitmap2, mBitmap3, mBitmap4;
66 Bitmap.shutDown();
79 Bitmap.NativeWrapper dataA = Bitmap.allocNativeStorage(10, 10);
80 Bitmap.NativeWrapper dataB = Bitmap.allocNativeStorage(20, 20);
81 mBitmap1 = new Bitmap("one", 10, 10, dataA);
82 mBitmap2 = new Bitmap("two", 20, 20, dataB);
83 mBitmap3 = mBitmap4 = new Bitmap("three/four", 20, 20, dataB);
Bitmap.java 21 public class Bitmap {
24 Bitmap.NativeWrapper mNativeWrapper;
35 Bitmap(String name, int width, int height, Bitmap.NativeWrapper nativeData) {
45 return "Bitmap " + mName + ": " + mWidth + "x" + mHeight + " (" +
60 System.out.println("Bitmap has shut down");
67 static Bitmap.NativeWrapper allocNativeStorage(int width, int height) {
70 synchronized (Bitmap.class) {
74 Bitmap.NativeWrapper wrapper = new Bitmap.NativeWrapper(nativeData)
    [all...]
  /external/chromium/net/disk_cache/
bitmap.h 14 class Bitmap {
16 Bitmap() : map_(NULL), num_bits_(0), array_size_(0), alloc_(false) {}
19 // false, the bitmap bits will not be initialized.
20 Bitmap(int num_bits, bool clear_bits);
22 // Constructs a Bitmap with the actual storage provided by the caller. |map|
24 // bits in the bitmap, and |num_words| is the size of |map| in 32-bit words.
25 Bitmap(uint32* map, int num_bits, int num_words);
27 ~Bitmap();
29 // Resizes the bitmap.
36 // Returns the number of bits in the bitmap
    [all...]
bitmap.cc 5 #include "net/disk_cache/bitmap.h"
43 Bitmap::Bitmap(int num_bits, bool clear_bits)
54 Bitmap::Bitmap(uint32* map, int num_bits, int num_words)
63 Bitmap::~Bitmap() {
68 void Bitmap::Resize(int num_bits, bool clear_bits) {
92 void Bitmap::Set(int index, bool value) {
103 bool Bitmap::Get(int index) const
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbriva.c 77 RivaBitmap *Bitmap = (RivaBitmap *)(mapped_io + BITMAP_OFFSET);
96 RIVA_FIFO_FREE(Bitmap, 1);
97 Bitmap->Color1A = color;
99 RIVA_FIFO_FREE(Bitmap, 2);
100 Bitmap->UnclippedRectangle[0].TopLeft = (dstX << 16) | dstY;
101 Bitmap->UnclippedRectangle[0].WidthHeight = (dstW << 16) | dstH;
riva_mmio.h 401 RivaBitmap *Bitmap;
  /external/webkit/Source/JavaScriptCore/wtf/
Bitmap.h 30 class Bitmap {
35 Bitmap();
63 inline Bitmap<size>::Bitmap()
69 inline bool Bitmap<size>::get(size_t n) const
75 inline void Bitmap<size>::set(size_t n)
81 inline bool Bitmap<size>::testAndSet(size_t n)
91 inline void Bitmap<size>::clear(size_t n)
97 inline void Bitmap<size>::clearAll()
103 inline size_t Bitmap<size>::nextPossiblyUnset(size_t start) cons
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java 22 import android.graphics.Bitmap;
28 import android.graphics.Bitmap.CompressFormat;
29 import android.graphics.Bitmap.Config;
43 private Bitmap mBitmap;
59 //abnormal case: the bitmap has been recycled
96 //abnormal case: the bitmap has been recycled
104 mBitmap = Bitmap.createBitmap(100, 100, Config.ARGB_8888);
105 Bitmap bitmap = mBitmap.copy(Config.ARGB_8888, false); local
106 WidgetTestUtils.assertEquals(mBitmap, bitmap);
159 Bitmap bitmap = Bitmap.createBitmap(mBitmap.getWidth(), mBitmap.getHeight(), local
178 Bitmap bitmap = Bitmap.createBitmap(colors, 10, 10, Config.RGB_565); local
    [all...]
  /external/regex-re2/re2/
prog.h 17 // Simple fixed-size bitmap.
19 class Bitmap {
21 Bitmap() { Reset(); }
45 DISALLOW_EVIL_CONSTRUCTORS(Bitmap);
207 const Bitmap<256>& byterange() { return byterange_; }
363 Bitmap<256> byterange_; // byterange.Get(x) true if x ends a
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 29 public final class Bitmap implements Parcelable {
31 * Indicates that the bitmap was created for an unknown pixel density.
33 * @see Bitmap#getDensity()
34 * @see Bitmap#setDensity(int)
47 * Backing buffer for the Bitmap.
94 bitmap int (pointer).
98 Bitmap(int nativeBitmap, byte[] buffer, boolean isMutable, byte[] ninePatchChunk,
107 bitmap int (pointer).
111 Bitmap(int nativeBitmap, byte[] buffer, boolean isMutable, byte[] ninePatchChunk,
114 throw new RuntimeException("internal error: native bitmap is 0")
569 Bitmap bitmap; local
    [all...]
  /external/v8/src/
spaces.h 166 // Bitmap is a sequence of cells each containing fixed number of bits.
167 class Bitmap {
214 INLINE(static Bitmap* FromAddress(Address addr)) {
215 return reinterpret_cast<Bitmap*>(addr);
495 CODE_POINTER_ALIGN(MAP_POINTER_ALIGN(kHeaderSize + Bitmap::kSize));
499 // the marking bitmap is arranged in 32 bit chunks.
538 inline Bitmap* markbits() {
539 return Bitmap::FromAddress(address() + kHeaderSize);
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/9/
android.jar 

Completed in 689 milliseconds