Home | History | Annotate | Download | only in view

Lines Matching defs:OPAQUE

2300      * View flag indicating whether this view was invalidated by an opaque
2315 * Indicates whether the background is opaque.
2322 * Indicates whether the scrollbars are opaque.
2329 * Indicates whether the view is opaque.
3984 * completely transparent and 1 means completely opaque.
4590 * Flag indicating that the drag shadow will be opaque. When
4592 * with this flag set, the drag shadow will be opaque, otherwise, it will be semitransparent.
14942 * completely transparent and 1 means the view is completely opaque.
15012 * completely transparent and 1 means the view is completely opaque.
15807 * By default the shadow color is black. Generally, this color will be opaque so the intensity
15811 * alpha channel of the outlineSpotShadowColor (typically opaque), and the
15835 * By default the shadow color is black. Generally, this color will be opaque so the intensity
15839 * alpha channel of the outlineAmbientShadowColor (typically opaque), and the
16569 * Indicates whether this View is opaque. An opaque View guarantees that it will
16570 * draw all the pixels overlapping its bounds using a fully opaque color.
16573 * whether an instance is opaque. Opaque Views are treated in a special way by
16577 * @return True if this View is guaranteed to be fully opaque, false otherwise.
16589 // Opaque if:
16591 // - Background is opaque
16594 if (mBackground != null && mBackground.getOpacity() == PixelFormat.OPAQUE) {
19363 final boolean opaque = drawingCacheBackgroundColor != 0 || isOpaque();
19366 final long projectedBitmapSize = width * height * (opaque && !use32BitCache ? 2 : 4);
19386 if (!opaque) {
19415 if (opaque && use32BitCache) bitmap.setHasAlpha(false);
23579 * point is opaque, regardless of the transparent region; returns false
26779 private static final float[] OPAQUE = { 255 };
26847 // the opacity (alpha) from fully opaque to fully
26854 // Start opaque
26855 interpolator.setKeyFrame(framesCount++, nextFrame, OPAQUE);
27364 stream.addProperty("drawing:opaque", isOpaque());