Home
last modified time | relevance | path

Searched refs:green (Results 1 – 25 of 109) sorted by relevance

12345

/frameworks/base/graphics/java/android/graphics/
DColor.java71 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/
Dandroid-2.2-highlights.jd36 .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/
DDescription.cpp72 void Description::setColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) { in setColor() argument
74 mColor[1] = green; in setColor()
DRenderEngine.cpp158 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()
DRenderEngine.h64 void clearWithColor(float red, float green, float blue, float alpha);
66 float red, float green, float blue, float alpha);
DDescription.h66 void setColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
/frameworks/native/opengl/tests/finish/
Dfinish.cpp164 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/
Ddxt.cpp53 #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/
DTestFramerateView.java77 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/
Dgl_api.in4 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/
DGLES10.spec7 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/
DDuotoneFilter.java116 Color.green(mFirstColor)/255f, in updateParameters()
119 Color.green(mSecondColor)/255f, in updateParameters()
/frameworks/base/media/mca/filterfw/native/core/
Dshader_program.h350 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/
DPathDestructionActivity.java75 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/
DGL10.java291 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/
Dglspec-1.07 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/
Dstart.jd23 h2.green{color:#99CC00}
24 h2.green+hr{background:#99CC00}
53 <h2 class="green">3. Distribute</h2>
/frameworks/base/opengl/java/android/opengl/
DGLES10.java317 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
DGLErrorWrapper.java106 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/
Ddebug.in13 … (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/
Dgl.h479 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/
DBarTransitions.java209 (int)(v * Color.green(targetColor) + Color.green(mColorStart) * (1 - v)), in draw()
/frameworks/base/opengl/java/com/google/android/gles_jni/
DGLImpl.java131 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/
DErrorCalculator.java163 totalError += Math.abs(Color.green(idealColor) - Color.green(givenColor)); in calcError()
/frameworks/native/opengl/include/GLES/
Dgl.h594 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…

12345