Searched refs:opaque (Results 1 - 22 of 22) sorted by relevance

/frameworks/base/core/java/android/view/
H A DGLES20Layer.java32 GLES20Layer(int width, int height, boolean opaque) { argument
33 super(width, height, opaque);
H A DTextureView.java180 * Indicates whether the content of this TextureView is opaque. The
181 * content is assumed to be opaque by default.
183 * @param opaque True if the content of this TextureView is opaque,
186 public void setOpaque(boolean opaque) { argument
187 if (opaque != mOpaque) {
188 mOpaque = opaque;
403 * situations, make sure this texture view is not marked opaque.</p>
H A DSurfaceView.java288 boolean opaque = true;
291 opaque = super.gatherTransparentRegion(region);
304 opaque = false;
306 return opaque;
H A DGLES20Canvas.java149 static native int nCreateTextureLayer(boolean opaque, int[] layerInfo); argument
152 static native void nUpdateTextureLayer(int layerId, int width, int height, boolean opaque, argument
257 private static native void nPrepare(int renderer, boolean opaque); argument
259 boolean opaque);
258 nPrepareDirty(int renderer, int left, int top, int right, int bottom, boolean opaque) argument
H A DView.java1639 * View flag indicating whether this view was invalidated by an opaque
1654 * Indicates whether the background is opaque.
1661 * Indicates whether the scrollbars are opaque.
1668 * Indicates whether the view is opaque.
2168 * completely transparent and 1 means completely opaque.
7509 * completely transparent and 1 means the view is completely opaque.
7520 * completely transparent and 1 means the view is completely opaque.</p>
8643 * Indicates whether this View is opaque. An opaque View guarantees that it will
8644 * draw all the pixels overlapping its bounds using a fully opaque colo
[all...]
/frameworks/base/libs/hwui/
H A DLayerRenderer.h50 virtual void prepareDirty(float left, float top, float right, float bottom, bool opaque);
H A DLayerRenderer.cpp40 void LayerRenderer::prepareDirty(float left, float top, float right, float bottom, bool opaque) { argument
60 OpenGLRenderer::prepareDirty(dirty.left, dirty.top, dirty.right, dirty.bottom, opaque);
62 OpenGLRenderer::prepareDirty(0.0f, 0.0f, width, height, opaque);
H A DOpenGLRenderer.h67 ANDROID_API void prepare(bool opaque);
68 virtual void prepareDirty(float left, float top, float right, float bottom, bool opaque);
H A DDisplayListRenderer.h241 virtual void prepareDirty(float left, float top, float right, float bottom, bool opaque);
H A DOpenGLRenderer.cpp147 void OpenGLRenderer::prepare(bool opaque) { argument
148 prepareDirty(0.0f, 0.0f, mWidth, mHeight, opaque);
151 void OpenGLRenderer::prepareDirty(float left, float top, float right, float bottom, bool opaque) { argument
166 if (!opaque) {
H A DDisplayListRenderer.cpp957 float right, float bottom, bool opaque) {
956 prepareDirty(float left, float top, float right, float bottom, bool opaque) argument
/frameworks/base/core/java/android/net/http/
H A DRequestHandle.java243 String opaque) {
246 username, password, realm, nonce, QOP, algorithm, opaque);
302 String opaque) {
323 if (opaque != null) {
324 response += ", opaque=" + doubleQuote(opaque);
236 setupDigestAuthResponse(boolean isProxy, String username, String password, String realm, String nonce, String QOP, String algorithm, String opaque) argument
296 computeDigestAuthResponse(String username, String password, String realm, String nonce, String QOP, String algorithm, String opaque) argument
/frameworks/base/libs/utils/
H A DZipUtils.cpp66 zstream.opaque = Z_NULL;
178 zstream.opaque = Z_NULL;
H A DStreamingZipInflater.cpp85 mInflateState.opaque = Z_NULL;
H A DZipFileRO.cpp795 zstream.opaque = Z_NULL;
862 zstream.opaque = Z_NULL;
/frameworks/base/core/java/android/widget/
H A DFrameLayout.java485 boolean opaque = super.gatherTransparentRegion(region);
489 return opaque;
H A DListView.java3022 final boolean opaque = (color >>> 24) == 0xFF;
3023 mIsCacheColorOpaque = opaque;
3024 if (opaque) {
3096 // If the list is opaque *and* the background is not, we want to
3098 // If the list is opaque and the background is also opaque, we don't
/frameworks/base/services/surfaceflinger/
H A DLayerBase.h93 bool setTransparentRegionHint(const Region& opaque);
179 * isOpaque - true if this surface is opaque
/frameworks/base/core/jni/
H A Dandroid_view_GLES20Canvas.cpp175 OpenGLRenderer* renderer, jboolean opaque) {
176 renderer->prepare(opaque);
181 jboolean opaque) {
182 renderer->prepareDirty(left, top, right, bottom, opaque);
174 android_view_GLES20Canvas_prepare(JNIEnv* env, jobject clazz, OpenGLRenderer* renderer, jboolean opaque) argument
179 android_view_GLES20Canvas_prepareDirty(JNIEnv* env, jobject clazz, OpenGLRenderer* renderer, jint left, jint top, jint right, jint bottom, jboolean opaque) argument
/frameworks/base/core/java/android/webkit/
H A DLoadListener.java880 String opaque = mAuthHeader.getOpaque();
883 realm, nonce, qop, algorithm, opaque);
/frameworks/base/tools/aapt/
H A DZipFile.cpp771 zstream.opaque = Z_NULL;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java379 boolean opaque = false;
387 (opaque ? PixelFormat.OPAQUE : PixelFormat.TRANSLUCENT));

Completed in 442 milliseconds