Home
last modified time | relevance | path

Searched defs:red (Results 1 – 21 of 21) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
DGLColor.java21 public final int red; field in GLColor
26 public GLColor(int red, int green, int blue, int alpha) { in GLColor()
33 public GLColor(int red, int green, int blue) { in GLColor()
DKube.java35 GLColor red = new GLColor(one, 0, 0); in makeGLWorld() local
/development/samples/devbytes/animation/LayoutTransChanging/src/com/example/android/layouttranschanging/
DLayoutTransChanging.java101 int red = (int)(Math.random() * 128 + 127); in ColoredView() local
/development/samples/ApiDemos/src/com/example/android/apis/animation/
DReversingAnimation.java109 int red = (int)(Math.random() * 255); in createBall() local
DAnimationCloning.java113 int red = (int)(100 + Math.random() * 155); in addBall() local
DAnimationLoading.java137 int red = (int)(100 + Math.random() * 155); in addBall() local
DBouncingBalls.java159 int red = (int)(Math.random() * 255); in addBall() local
DAnimationSeeking.java133 int red = (int)(100 + Math.random() * 155); in addBall() local
DMultiPropertyAnimation.java150 int red = (int)(100 + Math.random() * 155); in addBall() local
DAnimatorEvents.java177 int red = (int)(Math.random() * 255); in createBall() local
DCustomEvaluator.java148 int red = (int)(Math.random() * 255); in createBall() local
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DWindowSurface.java245 int red = (int)mColor.x + 128; in run() local
/development/tools/emulator/opengl/tests/gles_android_wrapper/
Dgles.cpp61 void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) in glClearColor()
76 void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) in glColor4f()
286 void glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) in glClearColorx()
311 void glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) in glColor4ub()
316 void glColor4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) in glColor4x()
321 void glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) in glColorMask()
851 void glClearColorxOES(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) in glClearColorxOES()
866 void glColor4xOES(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) in glColor4xOES()
/development/tools/emulator/opengl/system/GLESv1_enc/
Dgl_entry.cpp315 void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) in glClearColor()
333 void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) in glColor4f()
585 void glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) in glClearColorx()
609 void glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) in glColor4ub()
615 void glColor4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) in glColor4x()
621 void glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) in glColorMask()
1369 void glClearColorxOES(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) in glClearColorxOES()
1393 void glColor4xOES(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) in glColor4xOES()
Dgl_enc.cpp33 void glClearColor_enc(void *self , GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) in glClearColor_enc()
84 void glColor4f_enc(void *self , GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) in glColor4f_enc()
818 void glClearColorx_enc(void *self , GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) in glClearColorx_enc()
881 void glColor4ub_enc(void *self , GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) in glColor4ub_enc()
899 void glColor4x_enc(void *self , GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) in glColor4x_enc()
917 void glColorMask_enc(void *self , GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) in glColorMask_enc()
2984 void glClearColorxOES_enc(void *self , GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) in glClearColorxOES_enc()
3053 void glColor4xOES_enc(void *self , GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) in glColor4xOES_enc()
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
DMatrixTrackingGL.java105 public void glClearColor(float red, float green, float blue, float alpha) { in glClearColor()
109 public void glClearColorx(int red, int green, int blue, int alpha) { in glClearColorx()
129 public void glColor4f(float red, float green, float blue, float alpha) { in glColor4f()
133 public void glColor4x(int red, int green, int blue, int alpha) { in glColor4x()
137 public void glColorMask(boolean red, boolean green, boolean blue, in glColorMask()
765 public void glColor4ub(byte red, byte green, byte blue, byte alpha) { in glColor4ub()
/development/ndk/platforms/android-3/include/linux/
Dfb.h216 struct fb_bitfield red; member
246 __u16 *red; member
/development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
Dplasma.c140 static uint16_t make565(int red, int green, int blue) in make565()
/development/ndk/platforms/android-9/samples/native-plasma/jni/
Dplasma.c145 static uint16_t make565(int red, int green, int blue) in make565()
/development/tools/emulator/opengl/system/GLESv2_enc/
Dgl2_entry.cpp268 void glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) in glBlendColor()
322 void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) in glClearColor()
340 void glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) in glColorMask()
Dgl2_enc.cpp131 void glBlendColor_enc(void *self , GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) in glBlendColor_enc()
291 void glClearColor_enc(void *self , GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) in glClearColor_enc()
339 void glColorMask_enc(void *self , GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) in glColorMask_enc()