/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
D | GLColor.java | 23 public final int blue; field in GLColor 26 public GLColor(int red, int green, int blue, int alpha) { in GLColor() argument 29 this.blue = blue; in GLColor() 33 public GLColor(int red, int green, int blue) { in GLColor() argument 36 this.blue = blue; in GLColor() 46 blue == color.blue && in equals()
|
D | GLVertex.java | 68 colorBuffer.put(color.blue); in put()
|
D | Kube.java | 37 GLColor blue = new GLColor(0, 0, one); in makeGLWorld() local 114 mCubes[i + j].setFaceColor(Cube.kBack, blue); in makeGLWorld()
|
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
D | ReversingAnimation.java | 111 int blue = (int)(Math.random() * 255); in createBall() local 112 int color = 0xff000000 | red << 16 | green << 8 | blue; in createBall() 114 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4; in createBall()
|
D | AnimationSeeking.java | 135 int blue = (int)(100 + Math.random() * 155); in addBall() local 136 int color = 0xff000000 | red << 16 | green << 8 | blue; in addBall() 138 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4; in addBall()
|
D | AnimationLoading.java | 139 int blue = (int)(100 + Math.random() * 155); in addBall() local 140 int color = 0xff000000 | red << 16 | green << 8 | blue; in addBall() 142 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4; in addBall()
|
D | CustomEvaluator.java | 150 int blue = (int)(Math.random() * 255); in createBall() local 151 int color = 0xff000000 | red << 16 | green << 8 | blue; in createBall() 153 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4; in createBall()
|
D | AnimationCloning.java | 115 int blue = (int)(100 + Math.random() * 155); in addBall() local 116 int color = 0xff000000 | red << 16 | green << 8 | blue; in addBall() 118 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4; in addBall()
|
D | MultiPropertyAnimation.java | 152 int blue = (int)(100 + Math.random() * 155); in addBall() local 153 int color = 0xff000000 | red << 16 | green << 8 | blue; in addBall() 155 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4; in addBall()
|
D | BouncingBalls.java | 161 int blue = (int)(Math.random() * 255); in addBall() local 162 int color = 0xff000000 | red << 16 | green << 8 | blue; in addBall() 164 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4; in addBall()
|
D | AnimatorEvents.java | 179 int blue = (int)(Math.random() * 255); in createBall() local 180 int color = 0xff000000 | red << 16 | green << 8 | blue; in createBall() 182 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4; in createBall()
|
/development/samples/devbytes/animation/LayoutTransChanging/src/com/example/android/layouttranschanging/ |
D | LayoutTransChanging.java | 103 int blue = (int)(Math.random() * 128 + 127); in ColoredView() local 105 (green << 8) | blue; in ColoredView()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | WindowSurface.java | 247 int blue = (int)mColor.y + 128; in run() local 248 if (blue > 255) blue = 255; in run() 249 int color = 0xff000000 | (red<<16) | blue; in run()
|
D | CompressedTextureActivity.java | 143 byte blue = 0; in createImage() 149 image.put(blue); in createImage()
|
D | ColorPickerDialog.java | 134 int b = ave(Color.blue(c0), Color.blue(c1), p); in interpColor() 143 int b = Color.blue(color); in rotateColor()
|
D | BitmapPixels.java | 76 int b = Color.blue(c); in premultiplyColor()
|
/development/tools/emulator/opengl/tests/gles_android_wrapper/ |
D | gles.cpp | 61 void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) in glClearColor() argument 63 getDispatch()->glClearColor(red, green, blue, alpha); in glClearColor() 76 void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) in glColor4f() argument 78 getDispatch()->glColor4f(red, green, blue, alpha); in glColor4f() 286 void glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) in glClearColorx() argument 288 getDispatch()->glClearColorx(red, green, blue, alpha); in glClearColorx() 311 void glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) in glColor4ub() argument 313 getDispatch()->glColor4ub(red, green, blue, alpha); in glColor4ub() 316 void glColor4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) in glColor4x() argument 318 getDispatch()->glColor4x(red, green, blue, alpha); in glColor4x() [all …]
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
D | MatrixTrackingGL.java | 105 public void glClearColor(float red, float green, float blue, float alpha) { in glClearColor() argument 106 mgl.glClearColor(red, green, blue, alpha); in glClearColor() 109 public void glClearColorx(int red, int green, int blue, int alpha) { in glClearColorx() argument 110 mgl.glClearColorx(red, green, blue, alpha); in glClearColorx() 129 public void glColor4f(float red, float green, float blue, float alpha) { in glColor4f() argument 130 mgl.glColor4f(red, green, blue, alpha); in glColor4f() 133 public void glColor4x(int red, int green, int blue, int alpha) { in glColor4x() argument 134 mgl.glColor4x(red, green, blue, alpha); in glColor4x() 137 public void glColorMask(boolean red, boolean green, boolean blue, in glColorMask() argument 139 mgl.glColorMask(red, green, blue, alpha); in glColorMask() [all …]
|
/development/ndk/platforms/android-3/include/linux/ |
D | fb.h | 218 struct fb_bitfield blue; member 248 __u16 *blue; member
|
/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
D | importgl.h | 82 FNDEF(void, glClearColorx, (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha)); 83 FNDEF(void, glColor4x, (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha));
|
/development/tools/emulator/opengl/system/GLESv1_enc/ |
D | gl_entry.cpp | 10 void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); 13 void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); 55 void glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha); 59 void glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); 60 void glColor4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); 61 void glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); 185 void glClearColorxOES(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha); 189 void glColor4xOES(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); 315 void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) in glClearColor() argument 318 ctx->glClearColor(ctx, red, green, blue, alpha); in glClearColor() [all …]
|
D | gl_enc.h | 25 void glClearColor_enc(void *self , GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); 28 void glColor4f_enc(void *self , GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); 70 void glClearColorx_enc(void *self , GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha); 74 void glColor4ub_enc(void *self , GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); 75 void glColor4x_enc(void *self , GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); 76 void glColorMask_enc(void *self , GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); 200 …void glClearColorxOES_enc(void *self , GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha… 204 void glColor4xOES_enc(void *self , GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
|
/development/ndk/platforms/android-4/include/GLES/ |
D | gl.h | 594 GL_API void GL_APIENTRY glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); 597 GL_API void GL_APIENTRY glColor4f (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); 641 GL_API void GL_APIENTRY glClearColorx (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha); 646 GL_API void GL_APIENTRY glColor4ub (GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); 647 GL_API void GL_APIENTRY glColor4x (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); 648 GL_API void GL_APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alph…
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | Grid3.java | 118 getResources().getDrawable(R.drawable.blue) in setChecked()
|
/development/ndk/platforms/android-8/samples/bitmap-plasma/jni/ |
D | plasma.c | 140 static uint16_t make565(int red, int green, int blue) in make565() argument 144 ((blue >> 3) & 0x001f) ); in make565()
|