Searched refs:is_opaque (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/skia/ext/
H A Dbitmap_platform_device_skia.cc11 bool is_opaque) {
14 is_opaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType);
18 if (!is_opaque)
27 bool is_opaque) {
28 BitmapPlatformDevice* device = Create(width, height, is_opaque);
29 if (!is_opaque)
35 bool is_opaque,
39 is_opaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType);
77 SkCanvas* CreatePlatformCanvas(int width, int height, bool is_opaque, argument
80 BitmapPlatformDevice::Create(width, height, is_opaque, dat
10 Create(int width, int height, bool is_opaque) argument
25 CreateAndClear(int width, int height, bool is_opaque) argument
34 Create(int width, int height, bool is_opaque, uint8_t* data) argument
89 Allocate(int width, int height, bool is_opaque) argument
[all...]
H A Dplatform_canvas.h43 bool is_opaque,
50 bool is_opaque,
55 bool is_opaque,
66 bool is_opaque,
73 bool is_opaque) {
74 return CreatePlatformCanvas(width, height, is_opaque, 0, CRASH_ON_FAILURE);
82 bool is_opaque) {
83 return CreatePlatformCanvas(width, height, is_opaque, 0, CRASH_ON_FAILURE);
88 bool is_opaque) {
89 return CreatePlatformCanvas(width, height, is_opaque,
71 CreatePlatformCanvas(int width, int height, bool is_opaque) argument
80 CreateBitmapCanvas(int width, int height, bool is_opaque) argument
86 TryCreateBitmapCanvas(int width, int height, bool is_opaque) argument
[all...]
H A Dbitmap_platform_device_skia.h23 // Construct a BitmapPlatformDevice. |is_opaque| should be set if the caller
26 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque);
29 // If |is_opaque| is false, the bitmap is initialized to 0.
31 bool is_opaque);
35 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque,
H A Dbitmap_platform_device_cairo.h71 // to zero. |is_opaque| should be set if the caller knows the bitmap will be
73 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque);
79 bool is_opaque);
83 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque,
101 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque,
H A Dbitmap_platform_device_mac.cc99 bool is_opaque) {
107 is_opaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType);
121 if (!context && is_opaque) {
146 bool is_opaque) {
147 BitmapPlatformDevice* device = Create(NULL, width, height, is_opaque);
148 if (!is_opaque)
156 bool is_opaque) {
161 BitmapPlatformDevice* rv = Create(context, width, height, is_opaque);
254 bool is_opaque, OnFailureType failureType) {
256 BitmapPlatformDevice::Create(ctx, width, height, is_opaque));
96 Create(CGContextRef context, int width, int height, bool is_opaque) argument
144 CreateAndClear(int width, int height, bool is_opaque) argument
153 CreateWithData(uint8_t* data, int width, int height, bool is_opaque) argument
253 CreatePlatformCanvas(CGContextRef ctx, int width, int height, bool is_opaque, OnFailureType failureType) argument
260 CreatePlatformCanvas(int width, int height, bool is_opaque, uint8_t* data, OnFailureType failureType) argument
274 Allocate(int width, int height, bool is_opaque) argument
[all...]
H A Dbitmap_platform_device_cairo.cc108 bool is_opaque,
119 is_opaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType
133 bool is_opaque) {
138 BitmapPlatformDevice* device = Create(width, height, is_opaque, surface);
141 if (device && is_opaque) // Fill with bright bluish green
150 bool is_opaque) {
153 return Create(width, height, is_opaque);
157 bool is_opaque,
163 return Create(width, height, is_opaque, surface);
214 SkCanvas* CreatePlatformCanvas(int width, int height, bool is_opaque, argument
107 Create(int width, int height, bool is_opaque, cairo_surface_t* surface) argument
132 Create(int width, int height, bool is_opaque) argument
148 CreateAndClear(int width, int height, bool is_opaque) argument
156 Create(int width, int height, bool is_opaque, uint8_t* data) argument
226 Allocate(int width, int height, bool is_opaque) argument
[all...]
H A Dskia_utils_ios.h26 bool is_opaque);
H A Dbitmap_platform_device_mac.h31 // Creates a BitmapPlatformDevice instance. |is_opaque| should be set if the
38 bool is_opaque);
40 // Creates a BitmapPlatformDevice instance. If |is_opaque| is false,
43 bool is_opaque);
49 bool is_opaque);
H A Dbitmap_platform_device_win.h29 // Factory function. is_opaque should be set if the caller knows the bitmap
38 bool is_opaque, HANDLE shared_section);
42 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque);
45 // If |is_opaque| is false, then the bitmap is initialzed to 0.
47 bool is_opaque);
H A Dbitmap_platform_device_win.cc37 HBITMAP CreateHBitmap(int width, int height, bool is_opaque, argument
196 bool is_opaque,
200 HBITMAP hbitmap = CreateHBitmap(width, height, is_opaque, shared_section,
207 is_opaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType);
214 if (!shared_section && is_opaque)
227 bool is_opaque) {
228 return Create(width, height, is_opaque, NULL);
234 bool is_opaque) {
236 is_opaque);
237 if (device && !is_opaque)
193 Create( int width, int height, bool is_opaque, HANDLE shared_section) argument
226 Create(int width, int height, bool is_opaque) argument
232 CreateAndClear(int width, int height, bool is_opaque) argument
358 CreatePlatformCanvas(int width, int height, bool is_opaque, HANDLE shared_section, OnFailureType failureType) argument
378 Allocate(int width, int height, bool is_opaque) argument
[all...]
H A Dskia_utils_mac.h82 bool is_opaque,
88 bool is_opaque,
H A Dvector_platform_device_emf_win.cc26 int width, int height, bool is_opaque, HANDLE shared_section) {
27 if (!is_opaque) {
36 return BitmapPlatformDevice::Create(width, height, is_opaque,
25 CreateDevice( int width, int height, bool is_opaque, HANDLE shared_section) argument
H A Dvector_canvas_unittest.cc336 bool is_opaque) {
345 EXPECT_EQ(is_opaque, bitmap->isOpaque());
334 LoadPngFileToSkBitmap(const base::FilePath& filename, SkBitmap* bitmap, bool is_opaque) argument
/external/chromium_org/ui/gfx/image/
H A Dcanvas_image_source.cc15 CanvasImageSource::CanvasImageSource(const gfx::Size& size, bool is_opaque) argument
17 is_opaque_(is_opaque) {
H A Dcanvas_image_source.h24 CanvasImageSource(const gfx::Size& size, bool is_opaque);
/external/chromium_org/ui/gfx/codec/
H A Dpng_codec.cc23 unsigned char* output, bool* is_opaque) {
35 unsigned char* rgb, bool* is_opaque) {
46 unsigned char* rgb, bool* is_opaque) {
66 unsigned char* rgba, bool* is_opaque) {
91 is_opaque(true),
103 is_opaque(true),
118 bool is_opaque; member in class:gfx::__anon15190::PngDecoderState
153 state->is_opaque = false;
468 bitmap->setAlphaType(state.is_opaque ?
504 unsigned char* rgb, bool* is_opaque) {
22 ConvertBetweenBGRAandRGBA(const unsigned char* input, int pixel_width, unsigned char* output, bool* is_opaque) argument
34 ConvertRGBAtoRGB(const unsigned char* rgba, int pixel_width, unsigned char* rgb, bool* is_opaque) argument
45 ConvertSkiatoRGB(const unsigned char* skia, int pixel_width, unsigned char* rgb, bool* is_opaque) argument
65 ConvertSkiatoRGBA(const unsigned char* skia, int pixel_width, unsigned char* rgba, bool* is_opaque) argument
503 ConvertBGRAtoRGB(const unsigned char* bgra, int pixel_width, unsigned char* rgb, bool* is_opaque) argument
[all...]
/external/chromium_org/tools/imagediff/
H A Dimage_diff_png.cc53 unsigned char* output, bool* is_opaque) {
65 unsigned char* rgb, bool* is_opaque) {
95 is_opaque(true),
108 bool is_opaque; member in class:image_diff_png::__anon14983::PngDecoderState
116 bool* is_opaque);
127 unsigned char* rgba, bool* is_opaque) {
139 unsigned char* bgra, bool* is_opaque) {
274 state->row_converter(new_row, state->width, dest, &state->is_opaque);
394 unsigned char* rgb, bool* is_opaque) {
465 unsigned char* out, bool* is_opaque);
52 ConvertBetweenBGRAandRGBA(const unsigned char* input, int pixel_width, unsigned char* output, bool* is_opaque) argument
64 ConvertRGBAtoRGB(const unsigned char* rgba, int pixel_width, unsigned char* rgb, bool* is_opaque) argument
126 ConvertRGBtoRGBA(const unsigned char* rgb, int pixel_width, unsigned char* rgba, bool* is_opaque) argument
138 ConvertRGBtoBGRA(const unsigned char* rgb, int pixel_width, unsigned char* bgra, bool* is_opaque) argument
393 ConvertBGRAtoRGB(const unsigned char* bgra, int pixel_width, unsigned char* rgb, bool* is_opaque) argument
[all...]
/external/chromium_org/ui/gfx/
H A Dcanvas.h98 Canvas(const Size& size, float image_scale, bool is_opaque);
102 Canvas(const ImageSkiaRep& image_rep, bool is_opaque);
120 bool is_opaque);
H A Dcanvas.cc27 Canvas::Canvas(const Size& size, float image_scale, bool is_opaque) argument
33 is_opaque));
38 if (!is_opaque)
46 Canvas::Canvas(const ImageSkiaRep& image_rep, bool is_opaque) argument
51 is_opaque))),
75 bool is_opaque) {
80 is_opaque));
73 RecreateBackingCanvas(const Size& size, float image_scale, bool is_opaque) argument
/external/chromium_org/cc/output/
H A Dsoftware_renderer.cc475 bool is_opaque = false; local
480 is_opaque));
/external/pixman/pixman/
H A Dpixman-sse2.c173 is_opaque (__m128i x) function
605 if (is_opaque (_mm_and_si128 (src, mask)))
686 if (is_opaque (src))
3767 opaque = is_opaque (xmm_src);
3789 opaque = is_opaque (xmm_src);
3873 opaque = is_opaque (xmm_src_hi);
5022 if (m == 0xffffffff && is_opaque (xmm_src))
5246 if (is_opaque (xmm_mask) && is_opaque (xmm_src))
5372 if (is_opaque (xmm_src_h
[all...]
H A Dpixman-mmx.c481 is_opaque (__m64 v) function
710 if (is_opaque (vsrc))
737 if (is_opaque (vsrc))
3723 if (m == 0xff && is_opaque (pix1))
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml309 external is_opaque : lltype -> bool = "llvm_is_opaque"
H A Dllvm.mli506 (** [is_opaque sty] returns [true] if the structure type [sty] is opaque.
508 val is_opaque : lltype -> bool var

Completed in 875 milliseconds