Searched refs:alpha (Results 226 - 236 of 236) sorted by relevance

12345678910

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DQuickSettings.java916 .alpha(newAlpha)
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A Dcarousel.rs317 rezInCardCount = 0.0f; // alpha will ramp to 1.0f over this many cards (0.0f means disabled)
378 // Computes an alpha value for a card using elapsed time and constant fadeInDuration
382 double alpha = duration > 0 ? (double) timeElapsed / duration : 1.0;
383 return min(1.0f, (float) alpha);
744 // Set alpha for blending between the textures
749 // Bind the appropriate shader network. If there's no alpha blend, then
853 // Angle where detail alpha is 0.0f
916 // Compute alpha for gradually fading in details. Applied to both line and
924 // Compute alpha based on position. We fade cards quickly so they cannot overlap
944 // Set alpha fo
[all...]
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp272 void GLTrace_glBlendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) { argument
296 // copy argument alpha
300 arg_alpha->add_floatvalue(alpha);
305 glContext->hooks->gl.glBlendColor(red, green, blue, alpha);
618 void GLTrace_glClearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) { argument
642 // copy argument alpha
646 arg_alpha->add_floatvalue(alpha);
651 glContext->hooks->gl.glClearColor(red, green, blue, alpha);
720 void GLTrace_glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) { argument
744 // copy argument alpha
15855 GLTrace_glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) argument
16963 GLTrace_glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) argument
17100 GLTrace_glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) argument
17146 GLTrace_glColor4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) argument
19562 GLTrace_glClearColorxOES(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) argument
19671 GLTrace_glColor4xOES(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivity.java3329 public final void setFeatureDrawableAlpha(int featureId, int alpha) { argument
3330 getWindow().setFeatureDrawableAlpha(featureId, alpha);
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES11.cpp561 /* void glColor4ub ( GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha ) */
564 (JNIEnv *_env, jobject _this, jbyte red, jbyte green, jbyte blue, jbyte alpha) {
569 (GLubyte)alpha
563 android_glColor4ub__BBBB(JNIEnv *_env, jobject _this, jbyte red, jbyte green, jbyte blue, jbyte alpha) argument
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DPagedView.java179 // If true, modify alpha of neighboring pages as user scrolls left/right
2076 mScrollIndicatorAnimator = ObjectAnimator.ofFloat(mScrollIndicator, "alpha", 1f);
2102 mScrollIndicatorAnimator = ObjectAnimator.ofFloat(mScrollIndicator, "alpha", 0f);
2205 mDeleteDropTarget.animate().alpha(1f)
2354 mDeleteDropTarget.animate().alpha(0f)
2409 * For this animation, the alpha runs for a fixed duration and we update the position
2510 ObjectAnimator.ofFloat(v, "alpha", 1f));
2631 ObjectAnimator.ofFloat(dragView, "alpha", toAlpha));
/frameworks/base/services/java/com/android/server/wm/
H A DWindowState.java430 mWinAnimator.mAlpha = a.alpha;
H A DWindowManagerService.java2710 public void setUniverseTransformLocked(WindowState window, float alpha, argument
2713 transform.setAlpha(alpha);
2824 winAnimator.mAlpha = attrs.alpha;
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsics_neon.S273 vdup.8 d3, d5[1] @ d3 = 255 (alpha) from the multipliers line in
364 vdup.8 d3, d5[1] @ d3 = 255 (alpha) from the multipliers line in
457 vdup.8 d3, d5[1] @ d3 = 255 (alpha) from the multipliers line in
1638 d24 / q12 = alpha mash
1639 d25 = current pixel alpha
1782 vbic.u8 d14, d14, d24 // mix in alpha
/frameworks/base/core/java/android/widget/
H A DEditor.java2641 final int newAlpha = (int) (Color.alpha(underlineColor) * BACKGROUND_TRANSPARENCY);
3793 final int highlightColorAlpha = Color.alpha(mTextView.mHighlightColor);
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java2555 int a = Color.alpha(bgc);

Completed in 3071 milliseconds

12345678910