Searched defs:isOpaque (Results 1 - 25 of 60) sorted by path

123

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsContext.h204 void setCertainlyOpaque(bool isOpaque) { m_isCertainlyOpaque = isOpaque; } argument
H A DImageLayerChromiumTest.cpp48 static PassRefPtr<TestImage> create(const IntSize& size, bool isOpaque) argument
50 return adoptRef(new TestImage(size, isOpaque));
53 explicit TestImage(const IntSize& size, bool isOpaque) argument
58 bitmap.allocN32Pixels(size.width(), size.height(), isOpaque);
69 return m_nativeImage->bitmap().isOpaque();
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/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/chromium_org/third_party/skia/bench/
H A DShaderMaskBench.cpp41 ShaderMaskBench(bool isOpaque, FontQuality fq) { argument
47 fPaint.setShader(new SkColorShader(isOpaque ? 0xFFFFFFFF : 0x80808080))->unref();
/external/chromium_org/third_party/skia/experimental/StrokePathRenderer/
H A DGrStrokePathRenderer.cpp60 // FIXME : put the proper condition once GrDrawTarget::isOpaque is implemented
61 const bool isOpaque = true; // target->isOpaque(); local
78 !path.isInverseFillType() && isOpaque && !requiresAACircle && !antiAlias &&
/external/chromium_org/third_party/skia/include/core/
H A DSkBitmap.h184 bool isOpaque() const { function in class:SkBitmap
212 * this (isOpaque). Only call this if you need to compute this value from
266 bool SK_WARN_UNUSED_RESULT tryAllocN32Pixels(int width, int height, bool isOpaque = false) {
268 isOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType);
272 SK_ALLOCPIXELS_RETURN_TYPE allocN32Pixels(int width, int height, bool isOpaque = false) {
274 isOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType);
H A DSkColorTable.h35 bool isOpaque() const { function in class:SkColorTable
H A DSkDevice.h65 bool isOpaque() const { function in class:SkBaseDevice
66 return this->imageInfo().isOpaque();
H A DSkImage.h50 virtual bool isOpaque() const { return false; } function in class:SkImage
H A DSkImageInfo.h206 bool isOpaque() const { function in struct:SkImageInfo
H A DSkShader.h117 virtual bool isOpaque() const { return false; } function in class:SkShader
/external/chromium_org/third_party/skia/samplecode/
H A DSampleDitherBitmap.cpp102 static void setBitmapOpaque(SkBitmap* bm, bool isOpaque) { argument
104 bm->setAlphaType(isOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType);
H A DSampleTinyBitmap.cpp59 static void setBitmapOpaque(SkBitmap* bm, bool isOpaque) { argument
61 bm->setAlphaType(isOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType);
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapProcShader.cpp92 bool SkBitmapProcShader::isOpaque() const { function in class:SkBitmapProcShader
93 return fRawBitmap.isOpaque();
151 bool bitmapIsOpaque = bitmap.isOpaque();
H A DSkBlitMask_D32.cpp74 SkBlitMask::BlitLCD16RowProc SkBlitMask::BlitLCD16RowFactory(bool isOpaque) { argument
75 BlitLCD16RowProc proc = PlatformBlitRowProcs16(isOpaque);
80 if (isOpaque) {
96 bool isOpaque = (0xFF == SkColorGetA(color)); local
97 proc = SkBlitMask::BlitLCD16RowFactory(isOpaque);
100 if (isOpaque) {
H A DSkBlitRow_D32.cpp204 bool isOpaque = (0xFF == SkGetPackedA32(color)); local
206 if (!isOpaque || width >= MIN_WIDTH_FOR_SCANLINE_PROC) {
H A DSkCanvas.cpp928 bool isOpaque = !SkToBool(flags & kHasAlphaLayer_SaveFlag); local
930 isOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType);
2515 if (!bitmap.info().isOpaque()) {
H A DSkShader.cpp270 bool SkColorShader::isOpaque() const { function in class:SkColorShader
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkGradientShader.cpp325 bool SkGradientShaderBase::isOpaque() const { function in class:SkGradientShaderBase
1125 fIsOpaque = shader.isOpaque();
H A DSkTwoPointConicalGradient.cpp212 bool SkTwoPointConicalGradient::isOpaque() const { function in class:SkTwoPointConicalGradient
/external/chromium_org/third_party/skia/src/gpu/
H A DGrPaint.cpp34 bool GrPaint::isOpaque() const { function in class:GrPaint
/external/chromium_org/third_party/skia/src/image/
H A DSkImage_Gpu.cpp34 virtual bool isOpaque() const SK_OVERRIDE;
77 bool SkImage_Gpu::isOpaque() const { function in class:SkImage_Gpu
78 return fBitmap.isOpaque();
H A DSkImage_Raster.cpp72 virtual bool isOpaque() const SK_OVERRIDE;
224 bool SkImage_Raster::isOpaque() const { function in class:SkImage_Raster
225 return fBitmap.isOpaque();
/external/chromium_org/third_party/skia/src/images/
H A DSkMovie.cpp47 int SkMovie::isOpaque() function in class:SkMovie

Completed in 1000 milliseconds

123