Searched refs:Bitmap (Results 1 - 25 of 42) sorted by relevance

12

/external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/
H A DBitmap.h1 #include <JavaScriptCore/Bitmap.h>
/external/webkit/Source/WebCore/ForwardingHeaders/wtf/
H A DBitmap.h3 #include <JavaScriptCore/Bitmap.h>
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DImageBufferDataHaiku.h28 #include <Bitmap.h>
H A DStillImageHaiku.h32 #include <Bitmap.h>
/external/chromium/net/disk_cache/
H A Dbitmap.h14 class Bitmap { class in namespace:disk_cache
16 Bitmap() : map_(NULL), num_bits_(0), array_size_(0), alloc_(false) {} function in class:disk_cache::Bitmap
20 Bitmap(int num_bits, bool clear_bits);
22 // Constructs a Bitmap with the actual storage provided by the caller. |map|
25 Bitmap(uint32* map, int num_bits, int num_words);
27 ~Bitmap();
131 DISALLOW_COPY_AND_ASSIGN(Bitmap);
H A Dbitmap.cc43 Bitmap::Bitmap(int num_bits, bool clear_bits) function in class:disk_cache::Bitmap
54 Bitmap::Bitmap(uint32* map, int num_bits, int num_words) function in class:disk_cache::Bitmap
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 {
111 void Bitmap
[all...]
H A Dbitmap_unittest.cc10 disk_cache::Bitmap map32(32, false);
13 disk_cache::Bitmap map64(64, false);
19 disk_cache::Bitmap map;
26 disk_cache::Bitmap bitmap(80, true);
59 disk_cache::Bitmap map(kSize, true);
72 disk_cache::Bitmap map(kSize1, true);
96 disk_cache::Bitmap bitmap(kMapSize * 8, false);
108 disk_cache::Bitmap bitmap2(reinterpret_cast<uint32*>(local_map),
125 disk_cache::Bitmap map(kMapSize * 8, true);
138 disk_cache::Bitmap ma
[all...]
H A Dsparse_control.h158 Bitmap children_map_; // The actual bitmap of children.
160 Bitmap child_map_; // The allocation map as a bitmap.
/external/webkit/Source/JavaScriptCore/wtf/
H A DBitmap.h30 class Bitmap { class in namespace:WTF
35 Bitmap();
63 inline Bitmap<size>::Bitmap() function in class:WTF::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<siz
[all...]
H A DPageAllocatorSymbian.h33 #include <wtf/Bitmap.h>
93 Bitmap<largeReservationSize / m_pageSize> m_map;
/external/jmonkeyengine/engine/src/android/com/jme3/texture/plugins/
H A DAndroidImageLoader.java3 import android.graphics.Bitmap;
14 Bitmap bitmap = imageInfo.getBitmap();
/external/jmonkeyengine/engine/src/android/com/jme3/asset/
H A DAndroidImageInfo.java3 import android.graphics.Bitmap;
13 * method to retrieve a {@link Bitmap} when it is needed by the renderer.
22 protected Bitmap bitmap;
29 public Bitmap getBitmap(){
92 Bitmap newBitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), flipMat, false);
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DPlanarYUVLuminanceSource.java21 import android.graphics.Bitmap;
109 public Bitmap renderCroppedGreyscaleBitmap() {
125 Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
H A DCaptureActivityHandler.java24 import android.graphics.Bitmap;
82 Bitmap barcode = bundle == null ? null :
83 (Bitmap) bundle.getParcelable(DecodeThread.BARCODE_BITMAP);
H A DViewfinderView.java24 import android.graphics.Bitmap;
50 private Bitmap resultBitmap;
163 Bitmap resultBitmap = this.resultBitmap;
176 public void drawResultBitmap(Bitmap barcode) {
H A DCaptureActivity.java27 import android.graphics.Bitmap;
200 public void handleDecode(Result rawResult, Bitmap barcode) {
223 private void drawResultPoints(Bitmap barcode, Result rawResult) {
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fbriva.c77 RivaBitmap *Bitmap = (RivaBitmap *)(mapped_io + BITMAP_OFFSET); local
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;
/external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
H A DTextureUtil.java3 import android.graphics.Bitmap;
53 private static void buildMipmap(Bitmap bitmap) {
71 Bitmap bitmap2 = Bitmap.createScaledBitmap(bitmap, width, height, true);
85 public static void uploadTextureBitmap(final int target, Bitmap bitmap, boolean generateMips, boolean powerOf2)
96 Bitmap bitmap2 = Bitmap.createScaledBitmap(bitmap, width, height, true);
/external/skia/src/animator/
H A DSkDrawTo.cpp19 SK_MEMBER(use, Bitmap)
H A DSkDrawBitmap.h35 DECLARE_DRAW_MEMBER_INFO(Bitmap);
/external/webkit/Source/WebCore/platform/image-decoders/haiku/
H A DImageDecoderHaiku.cpp30 #include <Bitmap.h>
/external/regex-re2/re2/
H A Dprog.h19 class Bitmap { class in namespace:re2
21 Bitmap() { Reset(); } function in class:re2::Bitmap
45 DISALLOW_EVIL_CONSTRUCTORS(Bitmap);
207 const Bitmap<256>& byterange() { return byterange_; }
363 Bitmap<256> byterange_; // byterange.Get(x) true if x ends a
/external/webkit/Source/JavaScriptCore/heap/
H A DMarkedBlock.h25 #include <wtf/Bitmap.h>
95 WTF::Bitmap<blockSize / atomSize> m_marks;
/external/replicaisland/src/com/replica/replicaisland/
H A DTextureLibrary.java27 import android.graphics.Bitmap;
58 sBitmapOptions.inPreferredConfig = Bitmap.Config.RGB_565;
161 Bitmap bitmap;
/external/v8/src/
H A Dmark-compact.cc349 Bitmap::Clear(it.next());
358 Bitmap::Clear(it.next());
1985 Bitmap::IndexToCell(
1986 Bitmap::CellAlignIndex(
1990 int cell_index = Bitmap::IndexToCell(
1991 Bitmap::CellAlignIndex(
1999 Bitmap::IndexToCell(
2000 Bitmap::CellAlignIndex(
2008 ((current_cell >> 1) | (next_cell << (Bitmap::kBitsPerCell - 1)));
2027 grey_objects >>= (Bitmap
[all...]

Completed in 412 milliseconds

12