Searched defs:Bitmap (Results 1 - 25 of 26) sorted by relevance

12

/external/fonttools/Lib/fontTools/ttLib/tables/
H A DsbixBitmap.py18 class Bitmap(object): class in inherits:object
37 #print "Bitmap %i header too short: Expected %x, got %x." % (self.gid, sbixBitmapHeaderFormatSize, len(self.rawdata))
38 raise ttLib.TTLibError("Bitmap header too short.")
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DsbixBitmap.py18 class Bitmap(object): class in inherits:object
37 #print "Bitmap %i header too short: Expected %x, got %x." % (self.gid, sbixBitmapHeaderFormatSize, len(self.rawdata))
38 raise ttLib.TTLibError("Bitmap header too short.")
/external/chromium_org/net/disk_cache/blockfile/
H A Dbitmap.h14 class NET_EXPORT_PRIVATE 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...]
/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;
H A Driva_mmio.h401 RivaBitmap *Bitmap; member in struct:_riva_hw_inst
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dbitmaptools.cc70 struct Bitmap { struct
71 Bitmap() : pixels(NULL) {} function in struct:Bitmap
73 ~Bitmap() {
85 fprintf(stderr, "Could not parse Bitmap initializer.\n");
169 bool Histogram(const Bitmap& bmp) {
198 bool BoundingBox(const Bitmap& bmp) {
233 Bitmap bmp;
H A Dbitmap.py6 Bitmap is a basic wrapper for image pixels. It includes some basic processing
87 """Encapsulates an RGBA color retreived from a Bitmap"""
177 class Bitmap(object): class in inherits:object
251 return Bitmap(4 if meta['alpha'] else 3, width, height, pixels, meta)
256 return Bitmap.FromPng(f.read())
260 return Bitmap.FromPng(base64.b64decode(base64_png))
283 """Returns a new Bitmap that represents the difference between this image
284 and another Bitmap."""
311 # written into an in-memory buffer and read back into a Bitmap
316 diff = Bitmap
[all...]
/external/chromium_org/skia/ext/
H A Dvector_canvas_unittest.cc49 class Bitmap { class in namespace:skia::__anon10684
51 Bitmap(const Context& context, int x, int y) { function in class:skia::__anon10684::Bitmap
70 ~Bitmap() {
79 DISALLOW_COPY_AND_ASSIGN(Bitmap);
392 bitmap_ = new Bitmap(*context_, size_, size_);
434 // Bitmap created inside context_.
435 Bitmap* bitmap_;
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusHeaders.h432 // circular dependency since one of the Bitmap methods needs to
584 class Bitmap : public Image class in inherits:Image
590 Bitmap(
595 Bitmap(
600 static Bitmap* FromFile(
605 static Bitmap* FromStream(
610 Bitmap(IN INT width,
614 Bitmap(IN INT width,
617 Bitmap(IN INT width,
621 Bitmap* Clon
[all...]
H A DGdiPlusBitmap.h11 * Bitmap related declarations
588 Bitmap::Bitmap( function in class:Bitmap
608 Bitmap::Bitmap( function in class:Bitmap
628 Bitmap::Bitmap( function in class:Bitmap
649 Bitmap::Bitmap( function in class:Bitmap
668 Bitmap function in class:Bitmap
684 Bitmap::Bitmap( function in class:Bitmap
697 Bitmap::Bitmap( function in class:Bitmap
712 Bitmap::Bitmap( function in class:Bitmap
725 Bitmap::Bitmap( function in class:Bitmap
737 Bitmap::Bitmap( function in class:Bitmap
929 inline Bitmap::Bitmap(GpBitmap *nativeBitmap) function in class:Bitmap
[all...]
/external/chromium_org/third_party/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/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/chromium_org/cc/resources/
H A Dresource_provider.h74 Bitmap, enumerator in enum:cc::ResourceProvider::ResourceType
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Ddd.h179 void (*Bitmap)( struct gl_context *ctx, member in struct:dd_function_table
/external/mesa3d/src/mesa/main/
H A Ddd.h179 void (*Bitmap)( struct gl_context *ctx, member in struct:dd_function_table
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
H A Dstw_icd.h58 void (GLAPIENTRY * Bitmap)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *); member in struct:__GLdispatchTableRec
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
H A Dmeta.c341 struct bitmap_state Bitmap; /**< For _mesa_meta_Bitmap() */ member in struct:gl_meta_state
1156 * Used by the meta-Clear, Draw/CopyPixels and Bitmap functions where the Z
1227 struct temp_texture *tex = &ctx->Meta->Bitmap.Tex;
2625 struct bitmap_state *bitmap = &ctx->Meta->Bitmap;
/external/mesa3d/src/gallium/state_trackers/wgl/
H A Dstw_icd.h58 void (GLAPIENTRY * Bitmap)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *); member in struct:__GLdispatchTableRec
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta.c341 struct bitmap_state Bitmap; /**< For _mesa_meta_Bitmap() */ member in struct:gl_meta_state
1156 * Used by the meta-Clear, Draw/CopyPixels and Bitmap functions where the Z
1227 struct temp_texture *tex = &ctx->Meta->Bitmap.Tex;
2625 struct bitmap_state *bitmap = &ctx->Meta->Bitmap;
/external/chromium_org/v8/src/heap/
H A Dspaces.h143 // Bitmap is a sequence of cells each containing fixed number of bits.
144 class Bitmap { class in namespace:v8::internal
186 INLINE(static Bitmap* FromAddress(Address addr)) {
187 return reinterpret_cast<Bitmap*>(addr);
544 CODE_POINTER_ALIGN(kHeaderSize + Bitmap::kSize);
580 inline Bitmap* markbits() {
581 return Bitmap::FromAddress(address() + kHeaderSize);
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/glapi/
H A Dglapitemp.h132 KEYWORD1 void KEYWORD2 NAME(Bitmap)(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte * bitmap) function
135 DISPATCH(Bitmap, (width, height, xorig, yorig, xmove, ymove, bitmap), (F, "glBitmap(%d, %d, %f, %f, %f, %f, %p);\n", width, height, xorig, yorig, xmove, ymove, (const void *) bitmap));
8196 TABLE_ENTRY(Bitmap),
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglapi_mapi_tmp.h30 GLAPI void APIENTRY GLAPI_PREFIX(Bitmap)(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap);
1456 GLAPI void APIENTRY GLAPI_PREFIX(Bitmap)(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap) function
10418 STUB_ASM_ENTRY(GLAPI_PREFIX_STR(Bitmap))"\n"
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 869 milliseconds

12