HomeSort by relevance Sort by last modified time
    Searched refs:hasAlpha (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/public/platform/
WebDeviceOrientationData.h 49 bool hasAlpha : 1;
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
Shape.java 84 public boolean hasAlpha() {
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/test/
MockImageDecoder.h 65 virtual void setFrameHasAlpha(bool hasAlpha) { m_frameBufferCache[0].setHasAlpha(hasAlpha); }
  /external/chromium_org/third_party/skia/src/opts/
SkBitmapProcState_opts_arm.cpp 247 bool hasAlpha) {
267 if (hasAlpha) {
277 if (hasAlpha) {
285 if (hasAlpha) {
297 template<bool hasAlpha>
317 if (hasAlpha) {
327 if (hasAlpha) {
335 if (hasAlpha) {
  /external/skia/src/opts/
SkBitmapProcState_opts_arm.cpp 247 bool hasAlpha) {
267 if (hasAlpha) {
277 if (hasAlpha) {
285 if (hasAlpha) {
297 template<bool hasAlpha>
317 if (hasAlpha) {
327 if (hasAlpha) {
335 if (hasAlpha) {
  /external/chromium_org/content/renderer/device_orientation/
device_orientation_event_pump_unittest.cc 75 data.hasAlpha = true;
111 EXPECT_TRUE(received_data.hasAlpha);
141 EXPECT_TRUE(received_data.hasAlpha);
158 EXPECT_TRUE(received_data.hasAlpha);
device_orientation_event_pump.cc 65 data_.hasAlpha, data_.alpha, data.hasAlpha, data.alpha) ||
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext.h 58 virtual bool hasAlpha() const { return true; }
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/png/
PNGImageDecoder.cpp 171 void setHasAlpha(bool hasAlpha) { m_hasAlpha = hasAlpha; }
172 bool hasAlpha() const { return m_hasAlpha; }
181 void createColorTransform(const ColorProfile& colorProfile, bool hasAlpha)
197 qcms_data_type dataFormat = hasAlpha ? QCMS_DATA_RGBA_8 : QCMS_DATA_RGB_8;
409 unsigned colorChannels = m_reader->hasAlpha() ? 4 : 3;
474 bool hasAlpha = m_reader->hasAlpha();
475 unsigned colorChannels = hasAlpha ? 4 : 3;
497 unsigned alpha = hasAlpha ? pixel[3] : 255
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleColor.h 72 bool hasAlpha() const { return m_color.hasAlpha(); }
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/
ImageFrame.cpp 67 setHasAlpha(other.hasAlpha());
121 bool ImageFrame::hasAlpha() const
  /external/chromium_org/third_party/skia/src/core/
SkConvolver.cpp 114 template<bool hasAlpha>
137 if (hasAlpha) {
147 if (hasAlpha) {
155 if (hasAlpha) {
167 template<bool hasAlpha>
187 if (hasAlpha) {
197 if (hasAlpha) {
205 if (hasAlpha) {
SkConvolver.h 150 bool hasAlpha);
159 bool hasAlpha);
  /external/skia/src/core/
SkConvolver.cpp 114 template<bool hasAlpha>
137 if (hasAlpha) {
147 if (hasAlpha) {
155 if (hasAlpha) {
167 template<bool hasAlpha>
187 if (hasAlpha) {
197 if (hasAlpha) {
205 if (hasAlpha) {
SkConvolver.h 150 bool hasAlpha);
159 bool hasAlpha);
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libpng.cpp 93 SkBitmap::Config *config, bool *hasAlpha,
294 bool hasAlpha = false;
298 if (!getBitmapConfig(png_ptr, info_ptr, &config, &hasAlpha, &doDither, &theTranspColor)) {
319 decodePalette(png_ptr, info_ptr, &hasAlpha, &reallyHasAlpha, &colorTable);
367 } else if (hasAlpha) {
724 bool hasAlpha = false;
728 if (!getBitmapConfig(png_ptr, info_ptr, &config, &hasAlpha, &doDither, &theTranspColor)) {
747 decodePalette(png_ptr, info_ptr, &hasAlpha, &reallyHasAlpha, &colorTable);
824 } else if (hasAlpha) {
    [all...]
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 93 SkBitmap::Config *config, bool *hasAlpha,
296 bool hasAlpha = false;
299 if (!this->getBitmapConfig(png_ptr, info_ptr, &config, &hasAlpha, &theTranspColor)) {
320 decodePalette(png_ptr, info_ptr, &hasAlpha, &reallyHasAlpha, &colorTable);
368 } else if (hasAlpha) {
730 bool hasAlpha = false;
733 if (!this->getBitmapConfig(png_ptr, info_ptr, &config, &hasAlpha, &theTranspColor)) {
752 decodePalette(png_ptr, info_ptr, &hasAlpha, &reallyHasAlpha, &colorTable);
829 } else if (hasAlpha) {
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 707 bitmap = createBitmap(neww, newh, newConfig, source.hasAlpha());
719 transformed || source.hasAlpha());
779 * @param hasAlpha If the bitmap is ARGB_8888 this flag can be used to mark the
785 private static Bitmap createBitmap(int width, int height, Config config, boolean hasAlpha) {
786 return createBitmap(null, width, height, config, hasAlpha);
798 * @param hasAlpha If the bitmap is ARGB_8888 this flag can be used to mark the
805 Config config, boolean hasAlpha) {
813 if (config == Config.ARGB_8888 && !hasAlpha) {
815 nativeSetHasAlpha(bm.mNativeBitmap, hasAlpha);
    [all...]
NinePatch.java 202 * This is equivalent to calling <code>getBitmap().hasAlpha()</code> on this
205 public final boolean hasAlpha() {
206 return mBitmap.hasAlpha();
  /cts/tests/tests/graphics/src/android/graphics/cts/
NinePatchTest.java 135 assertFalse(mNinePatch.hasAlpha());
136 assertEquals(mNinePatch.hasAlpha(), mBitmap.hasAlpha());
142 assertTrue(ninePatch.hasAlpha());
143 assertEquals(ninePatch.hasAlpha(), bitmap.hasAlpha());
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
ImageBuffer.h 97 static PassOwnPtr<ImageBuffer> createCompatibleBuffer(const IntSize&, float resolutionScale, const GraphicsContext*, bool hasAlpha);
154 ImageBuffer(const IntSize&, float resolutionScale, const GraphicsContext*, bool hasAlpha, bool& success);
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFImage.cpp 25 bool hasAlpha = false;
62 hasAlpha = true;
76 hasAlpha = true;
117 hasAlpha = true;
149 hasAlpha = true;
161 hasAlpha = true;
182 hasAlpha = true;
203 if (isTransparent || !hasAlpha) {
  /external/skia/src/pdf/
SkPDFImage.cpp 25 bool hasAlpha = false;
62 hasAlpha = true;
76 hasAlpha = true;
117 hasAlpha = true;
149 hasAlpha = true;
161 hasAlpha = true;
182 hasAlpha = true;
203 if (isTransparent || !hasAlpha) {
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
ImageFrameGenerator.h 78 bool hasAlpha(size_t);
  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceOrientationData.cpp 44 return DeviceOrientationData::create(data.hasAlpha, data.alpha, data.hasBeta, data.beta, data.hasGamma, data.gamma, data.hasAbsolute, data.absolute);

Completed in 1076 milliseconds

1 2 3 4 5