/frameworks/base/core/java/android/view/ |
HardwareRenderer.java | 527 * @param isOpaque Whether the layer should be opaque or not 531 abstract HardwareLayer createHardwareLayer(boolean isOpaque); 538 * @param isOpaque Whether the layer should be opaque or not 542 abstract HardwareLayer createHardwareLayer(int width, int height, boolean isOpaque); [all...] |
/frameworks/native/services/surfaceflinger/ |
Layer.cpp | 355 if (!isOpaque() || s.alpha != 0xFF) { 599 engine.setupLayerBlending(mPremultipliedAlpha, isOpaque(), s.alpha); 659 bool Layer::isOpaque() const [all...] |
/cts/tests/tests/net/src/android/net/cts/ |
UriTest.java | 264 assertTrue(uri.isOpaque()); 404 assertFalse(uri.isOpaque());
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/ |
OpaqueRegionSkia.cpp | 130 if (shader && !shader->isOpaque()) 132 if (bitmap && !bitmap->isOpaque())
|
/external/chromium_org/third_party/skia/include/core/ |
SkCanvas.h | 110 bool isOpaque); [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkSpriteBlitter_RGB16.cpp | 275 if (!fSource->isOpaque()) { 355 if (source.isOpaque()) {
|
SkBitmapScaler.cpp | 298 !source.isOpaque(), filter.xFilter(), filter.yFilter(),
|
/external/skia/include/core/ |
SkCanvas.h | 110 bool isOpaque); [all...] |
/external/skia/src/core/ |
SkSpriteBlitter_RGB16.cpp | 275 if (!fSource->isOpaque()) { 355 if (source.isOpaque()) {
|
SkBitmapScaler.cpp | 298 !source.isOpaque(), filter.xFilter(), filter.yFilter(),
|
/frameworks/base/core/jni/ |
android_view_GLES20Canvas.cpp | 816 jboolean isOpaque, jintArray layerInfo) { 817 Layer* layer = LayerRenderer::createTextureLayer(isOpaque); 829 jint width, jint height, jboolean isOpaque, jintArray layerInfo) { 830 Layer* layer = LayerRenderer::createLayer(width, height, isOpaque); [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
URITest.java | [all...] |
/external/chromium_org/chrome/browser/favicon/ |
favicon_util.cc | 123 if (!best_bitmap.isOpaque())
|
/external/chromium_org/chrome/browser/history/ |
select_favicon_frames.cc | 35 if (!contents.isOpaque())
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
ImageFrameGenerator.cpp | 277 m_hasAlpha[index] = !fullSizeBitmap.isOpaque();
|
/external/chromium_org/third_party/skia/include/device/xps/ |
SkXPSDevice.h | 318 bool isOpaque,
|
/external/chromium_org/third_party/skia/include/pdf/ |
SkPDFDevice.h | 262 bool isOpaque,
|
/external/chromium_org/third_party/skia/src/effects/gradients/ |
SkGradientShaderPriv.h | 105 virtual bool isOpaque() const SK_OVERRIDE;
|
/external/chromium_org/third_party/skia/src/ports/ |
SkImageDecoder_CG.cpp | 115 if (!bm->isOpaque() && this->getRequireUnpremultipliedColors()) {
|
/external/llvm/include/llvm/IR/ |
DerivedTypes.h | 247 /// isOpaque - Return true if this is a type with an identity that has no body 249 bool isOpaque() const { return (getSubclassData() & SCDB_HasBody) == 0; }
|
/external/skia/include/device/xps/ |
SkXPSDevice.h | 318 bool isOpaque,
|
/external/skia/include/pdf/ |
SkPDFDevice.h | 262 bool isOpaque,
|
/external/skia/src/effects/gradients/ |
SkGradientShaderPriv.h | 105 virtual bool isOpaque() const SK_OVERRIDE;
|
/external/skia/src/ports/ |
SkImageDecoder_CG.cpp | 115 if (!bm->isOpaque() && this->getRequireUnpremultipliedColors()) {
|
/frameworks/base/core/jni/android/graphics/ |
Bitmap.cpp | 263 if (src.isOpaque()) return ToColor_S32_Opaque;
266 if (src.isOpaque()) return ToColor_S4444_Opaque;
274 if (src.isOpaque()) return ToColor_SI8_Opaque;
442 return !bitmap->isOpaque();
|