/frameworks/base/graphics/java/android/graphics/ |
D | Color.java | 71 public static int green(int color) { in green() method in Color 93 public static int rgb(int red, int green, int blue) { in rgb() argument 94 return (0xFF << 24) | (red << 16) | (green << 8) | blue; in rgb() 107 public static int argb(int alpha, int red, int green, int blue) { in argb() argument 108 return (alpha << 24) | (red << 16) | (green << 8) | blue; in argb() 262 float green = 0.0f; in HSBtoColor() local 275 green = tv; in HSBtoColor() 280 green = b; in HSBtoColor() 285 green = b; in HSBtoColor() 290 green = qv; in HSBtoColor() [all …]
|
/frameworks/base/docs/html/about/versions/ |
D | android-2.2-highlights.jd | 36 .green { 78 <p style="margin-top:0">New Home screen <span class="green">tips widget</span> assists new users on 81 <p>The Phone, applications Launcher, and Browser now have <span class="green">dedicated 95 <p><span class="green">Improved security</span> with the addition of numeric pin or alpha-numeric 98 <p><span class="green">Remote wipe:</span> Exchange administrators can remotely reset the device to 100 <p><span class="green">Exchange Calendars are now supported</span> in the Calendar application.</p> 101 <p><span class="green">Auto-discovery:</span> you just need to know your user-name and password to 103 <p><span class="green">Global Address Lists look-up</span> is now available in the Email 121 <p>Gallery allows you to <span class="green">peek into picture stacks</span> using a zoom 123 <p>Camera <span class="green">onscreen buttons</span> provide easy access to a new UI for [all …]
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
D | Description.cpp | 72 void Description::setColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) { in setColor() argument 74 mColor[1] = green; in setColor()
|
D | RenderEngine.cpp | 158 float red, float green, float blue, float alpha) { in fillRegionWithColor() argument 177 setupFillWithColor(red, green, blue, alpha); in fillRegionWithColor() 181 void RenderEngine::clearWithColor(float red, float green, float blue, float alpha) { in clearWithColor() argument 182 glClearColor(red, green, blue, alpha); in clearWithColor()
|
D | RenderEngine.h | 64 void clearWithColor(float red, float green, float blue, float alpha); 66 float red, float green, float blue, float alpha);
|
D | Description.h | 66 void setColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
|
/frameworks/native/opengl/tests/finish/ |
D | finish.cpp | 164 uint16_t green = 0x7E0; in main() local 167 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 1, 1, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, &green); in main() 212 uint16_t green = 0x7E0; in main() local 215 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 1, 1, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, &green); in main()
|
/frameworks/native/opengl/libagl/ |
D | dxt.cpp | 53 #define green(x) (((x) >> 5) & 0x3f) macro 236 int g0 = green(color0); in decodeDXT1() 240 int g1 = green(color1); in decodeDXT1() 366 int g0 = green(color0); in decodeDXT3() 370 int g1 = green(color1); in decodeDXT3() 523 int g0 = green(color0); in decodeDXT5() 527 int g1 = green(color1); in decodeDXT5()
|
/frameworks/native/opengl/tests/testFramerate/src/com/android/testframerate/ |
D | TestFramerateView.java | 77 float green = (now_us % 2000000) / 2000000.f; in onDrawFrame() local 79 GLES20.glClearColor(red, green, blue, 1.0f); in onDrawFrame()
|
/frameworks/native/opengl/libs/GLES_CM/ |
D | gl_api.in | 4 void API_ENTRY(glClearColor)(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) { 5 CALL_GL_API(glClearColor, red, green, blue, alpha); 13 void API_ENTRY(glColor4f)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) { 14 CALL_GL_API(glColor4f, red, green, blue, alpha); 139 void API_ENTRY(glClearColorx)(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) { 140 CALL_GL_API(glClearColorx, red, green, blue, alpha); 154 void API_ENTRY(glColor4ub)(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) { 155 CALL_GL_API(glColor4ub, red, green, blue, alpha); 157 void API_ENTRY(glColor4x)(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) { 158 CALL_GL_API(glColor4x, red, green, blue, alpha); [all …]
|
/frameworks/native/opengl/tools/glgen/specs/gles11/ |
D | GLES10.spec | 7 void glClearColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) 8 void glClearColorx ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha ) 13 void glColor4f ( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ) 14 void glColor4x ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha ) 15 void glColorMask ( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha )
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
D | DuotoneFilter.java | 116 Color.green(mFirstColor)/255f, in updateParameters() 119 Color.green(mSecondColor)/255f, in updateParameters()
|
/frameworks/base/media/mca/filterfw/native/core/ |
D | shader_program.h | 350 void SetClearColor(float red, float green, float blue, float alpha); 428 float green; member 432 RGBAColor() : red(0), green(0), blue(0), alpha(1) { in RGBAColor()
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | PathDestructionActivity.java | 75 int green = MathUtils.random(255); in getRandomColor() local 77 return 0xff000000 | red << 16 | green << 8 | blue; in getRandomColor()
|
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/ |
D | GL10.java | 291 float green, in glClearColor() argument 298 int green, in glClearColorx() argument 321 float green, in glColor4f() argument 328 int green, in glColor4x() argument 335 boolean green, in glColorMask() argument
|
/frameworks/native/opengl/tools/glgen/specs/jsr239/ |
D | glspec-1.0 | 7 void glClearColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) 8 void glClearColorx ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha ) 13 void glColor4f ( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ) 14 void glColor4x ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha ) 15 void glColorMask ( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha )
|
/frameworks/base/docs/html/about/ |
D | start.jd | 23 h2.green{color:#99CC00} 24 h2.green+hr{background:#99CC00} 53 <h2 class="green">3. Distribute</h2>
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLES10.java | 317 float green, in glClearColor() argument 326 int green, in glClearColorx() argument 359 float green, in glColor4f() argument 368 int green, in glColor4x() argument 377 boolean green, in glColorMask() argument
|
D | GLErrorWrapper.java | 106 public void glClearColor(float red, float green, float blue, float alpha) { in glClearColor() argument 108 mgl.glClearColor(red, green, blue, alpha); in glClearColor() 112 public void glClearColorx(int red, int green, int blue, int alpha) { in glClearColorx() argument 114 mgl.glClearColorx(red, green, blue, alpha); in glClearColorx() 142 public void glColor4f(float red, float green, float blue, float alpha) { in glColor4f() argument 144 mgl.glColor4f(red, green, blue, alpha); in glColor4f() 148 public void glColor4x(int red, int green, int blue, int alpha) { in glColor4x() argument 150 mgl.glColor4x(red, green, blue, alpha); in glColor4x() 154 public void glColorMask(boolean red, boolean green, boolean blue, in glColorMask() argument 157 mgl.glColorMask(red, green, blue, alpha); in glColorMask() [all …]
|
/frameworks/native/opengl/libs/ |
D | debug.in | 13 … (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha), (red, green, blue, alpha), 4, "GLc… 14 … (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha), (red, green, blue, alpha), 4, "GLc… 25 …r4f, (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha), (red, green, blue, alpha), 4, "GLf… 26 …4ub, (GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha), (red, green, blue, alpha), 4, "GLu… 27 …r4x, (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha), (red, green, blue, alpha), 4, "GLf… 28 …OES, (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha), (red, green, blue, alpha), 4, "GLf…
|
/frameworks/native/opengl/tests/angeles/include/GLES/ |
D | gl.h | 479 GLAPI void APIENTRY glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); 480 GLAPI void APIENTRY glClearColorx (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha); 485 GLAPI void APIENTRY glColor4f (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); 486 GLAPI void APIENTRY glColor4x (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); 487 GLAPI void APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | BarTransitions.java | 209 (int)(v * Color.green(targetColor) + Color.green(mColorStart) * (1 - v)), in draw()
|
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
D | GLImpl.java | 131 float green, in glClearColor() argument 140 int green, in glClearColorx() argument 173 float green, in glColor4f() argument 182 int green, in glColor4x() argument 191 boolean green, in glColorMask() argument 1225 byte green, in glColor4ub() argument
|
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/ |
D | ErrorCalculator.java | 163 totalError += Math.abs(Color.green(idealColor) - Color.green(givenColor)); in calcError()
|
/frameworks/native/opengl/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…
|