Searched defs:green (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/support/transition/tests/src/android/support/transition/
H A DChangeBoundsTest.java55 assertThat(startHolder.green, is(below(startHolder.red)));
59 assertThat(endHolder.green, is(atTop()));
60 assertThat(endHolder.red, is(below(endHolder.green)));
94 public final View green; field in class:ChangeBoundsTest.ViewHolder
98 green = activity.findViewById(R.id.greenSquare);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DDescription.cpp72 void Description::setColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) { argument
74 mColor[1] = green;
H A DRenderEngine.cpp201 float red, float green, float blue, float alpha) {
220 setupFillWithColor(red, green, blue, alpha);
228 void RenderEngine::clearWithColor(float red, float green, float blue, float alpha) { argument
229 glClearColor(red, green, blue, alpha);
200 fillRegionWithColor(const Region& region, uint32_t height, float red, float green, float blue, float alpha) argument
/frameworks/base/core/java/android/hardware/camera2/params/
H A DTonemapCurve.java33 * <p>This defines red, green, and blue curves that the {@link CameraDevice} will
70 * Index of the green color channel curve.
93 * @param green An array of elements whose length is divisible by {@value #POINT_SIZE}
103 public TonemapCurve(float[] red, float[] green, float[] blue) { argument
107 checkNotNull(green, "green must not be null");
111 checkArgumentArrayLengthDivisibleBy(green, POINT_SIZE, "green");
115 checkArgumentArrayLengthNoLessThan(green, MIN_CURVE_LENGTH, "green");
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dshader_program.h350 void SetClearColor(float red, float green, float blue, float alpha);
428 float green; member in struct:android::filterfw::ShaderProgram::RGBAColor
432 RGBAColor() : red(0), green(0), blue(0), alpha(1) {
H A Dshader_program.cpp562 clear_color_.green,
595 void ShaderProgram::SetClearColor(float red, float green, float blue, float alpha) { argument
597 clear_color_.green = green;
/frameworks/base/core/jni/android/graphics/
H A DShader.cpp27 static void Color_RGBToHSV(JNIEnv* env, jobject, jint red, jint green, jint blue, jfloatArray hsvArray) argument
30 SkRGBToHSV(red, green, blue, hsv);
/frameworks/base/graphics/java/android/graphics/
H A DColor.java111 * <li>{@link #green(int)} to extract the green component</li>
124 * which the components represent red, green and blue values.</p>
210 * <li>{@link #green(long)} to extract the green/Y/a component</li>
239 * Color green = Color.valueOf(100.0f, -128.0f, 128.0f, 1.0f, lab);
249 * <li>{@link #green()}, returns the green component value (or second
336 * @param g The value of the green channel, must be in [0..1] range
349 * @param g The value of the green channe
518 public float green() { method in class:Color
742 public static float green(@ColorLong long color) { method in class:Color
999 pack(float red, float green, float blue) argument
1016 pack(float red, float green, float blue, float alpha) argument
1040 pack(float red, float green, float blue, float alpha, @NonNull ColorSpace colorSpace) argument
1258 public static int green(int color) { method in class:Color
1283 rgb( @ntRangefrom = 0, to = 255) int red, @IntRange(from = 0, to = 255) int green, @IntRange(from = 0, to = 255) int blue) argument
1301 rgb(float red, float green, float blue) argument
1319 argb( @ntRangefrom = 0, to = 255) int alpha, @IntRange(from = 0, to = 255) int red, @IntRange(from = 0, to = 255) int green, @IntRange(from = 0, to = 255) int blue) argument
1338 argb(float alpha, float red, float green, float blue) argument
1415 RGBToHSV( @ntRangefrom = 0, to = 255) int red, @IntRange(from = 0, to = 255) int green, @IntRange(from = 0, to = 255) int blue, @Size(3) float hsv[]) argument
[all...]
/frameworks/native/opengl/libagl/
H A Dstate.cpp569 void glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) { argument
571 c->rasterizer.procs.clearColorx(c, red, green, blue, alpha);
H A Ddxt.cpp53 #define green(x) (((x) >> 5) & 0x3f) macro
236 int g0 = green(color0);
240 int g1 = green(color1);
366 int g0 = green(color0);
370 int g1 = green(color1);
523 int g0 = green(color0);
527 int g1 = green(color1);
/frameworks/av/media/libstagefright/omx/
H A DSoftVideoEncoderOMXComponent.cpp483 unsigned green = src[greenOffset]; local
495 ((red * 65 + green * 129 + blue * 25 + 128) >> 8) + 16;
501 ((-red * 38 - green * 74 + blue * 112 + 128) >> 8) + 128;
504 ((red * 112 - green * 94 - blue * 18 + 128) >> 8) + 128;
/frameworks/base/core/java/com/android/internal/graphics/palette/
H A DPalette.java459 mGreen = Color.green(color);
465 Swatch(int red, int green, int blue, int population) { argument
467 mGreen = green;
469 mRgb = Color.rgb(red, green, blue);
/frameworks/base/tools/aapt2/compile/
H A DPngCrunch.cpp410 slot->green = color >> 16;
532 int green = *row++; local
542 (red != 0 || green != 0 || blue != 0);
543 red = green = blue = 0;
547 const uint32_t color = red << 24 | green << 16 | blue << 8 | alpha;
558 if (red != green || red != blue) {
565 max_gray_deviation = std::max(std::abs(red - green), max_gray_deviation);
566 max_gray_deviation = std::max(std::abs(green - blue), max_gray_deviation);
678 // The image was already grayscale, red == green == blue.
/frameworks/support/v7/palette/src/main/java/android/support/v7/graphics/
H A DPalette.java454 mGreen = Color.green(color);
460 Swatch(int red, int green, int blue, int population) { argument
462 mGreen = green;
464 mRgb = Color.rgb(red, green, blue);
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES11.cpp714 /* void glColor4ub ( GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha ) */
717 (JNIEnv *_env, jobject _this, jbyte red, jbyte green, jbyte blue, jbyte alpha) {
720 (GLubyte)green,
716 android_glColor4ub__BBBB(JNIEnv *_env, jobject _this, jbyte red, jbyte green, jbyte blue, jbyte alpha) argument
H A Dandroid_opengl_GLES10.cpp516 /* void glClearColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) */
519 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) {
522 (GLclampf)green,
528 /* void glClearColorx ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha ) */
531 (JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) {
534 (GLclampx)green,
576 /* void glColor4f ( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ) */
579 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) {
582 (GLfloat)green,
588 /* void glColor4x ( GLfixed red, GLfixed green, GLfixe
518 android_glClearColor__FFFF(JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) argument
530 android_glClearColorx__IIII(JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) argument
578 android_glColor4f__FFFF(JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) argument
590 android_glColor4x__IIII(JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) argument
602 android_glColorMask__ZZZZ(JNIEnv *_env, jobject _this, jboolean red, jboolean green, jboolean blue, jboolean alpha) argument
[all...]
H A Dandroid_opengl_GLES11Ext.cpp985 /* void glClearColorxOES ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha ) */
988 (JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) {
991 (GLclampx)green,
1086 /* void glColor4xOES ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha ) */
1089 (JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) {
1092 (GLfixed)green,
987 android_glClearColorxOES__IIII(JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) argument
1088 android_glColor4xOES__IIII(JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) argument
/frameworks/base/opengl/java/android/opengl/
H A DGLES11.java209 // C function void glColor4ub ( GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha )
213 byte green,
211 glColor4ub( byte red, byte green, byte blue, byte alpha ) argument
H A DGLES11Ext.java279 // C function void glClearColorxOES ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha )
283 int green,
309 // C function void glColor4xOES ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha )
313 int green,
281 glClearColorxOES( int red, int green, int blue, int alpha ) argument
311 glColor4xOES( int red, int green, int blue, int alpha ) argument
H A DGLErrorWrapper.java106 public void glClearColor(float red, float green, float blue, float alpha) { argument
108 mgl.glClearColor(red, green, blue, alpha);
112 public void glClearColorx(int red, int green, int blue, int alpha) { argument
114 mgl.glClearColorx(red, green, blue, alpha);
142 public void glColor4f(float red, float green, float blue, float alpha) { argument
144 mgl.glColor4f(red, green, blue, alpha);
148 public void glColor4x(int red, int green, int blue, int alpha) { argument
150 mgl.glColor4x(red, green, blue, alpha);
154 public void glColorMask(boolean red, boolean green, boolean blue, argument
157 mgl.glColorMask(red, green, blu
980 glColor4ub(byte red, byte green, byte blue, byte alpha) argument
[all...]
H A DGLES10.java313 // C function void glClearColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha )
317 float green,
322 // C function void glClearColorx ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha )
326 int green,
355 // C function void glColor4f ( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha )
359 float green,
364 // C function void glColor4x ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha )
368 int green,
373 // C function void glColorMask ( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha )
377 boolean green,
315 glClearColor( float red, float green, float blue, float alpha ) argument
324 glClearColorx( int red, int green, int blue, int alpha ) argument
357 glColor4f( float red, float green, float blue, float alpha ) argument
366 glColor4x( int red, int green, int blue, int alpha ) argument
375 glColorMask( boolean red, boolean green, boolean blue, boolean alpha ) argument
[all...]
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11.java190 byte green,
188 glColor4ub( byte red, byte green, byte blue, byte alpha ) argument
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java127 // C function void glClearColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha )
131 float green,
136 // C function void glClearColorx ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha )
140 int green,
169 // C function void glColor4f ( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha )
173 float green,
178 // C function void glColor4x ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha )
182 int green,
187 // C function void glColorMask ( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha )
191 boolean green,
129 glClearColor( float red, float green, float blue, float alpha ) argument
138 glClearColorx( int red, int green, int blue, int alpha ) argument
171 glColor4f( float red, float green, float blue, float alpha ) argument
180 glColor4x( int red, int green, int blue, int alpha ) argument
189 glColorMask( boolean red, boolean green, boolean blue, boolean alpha ) argument
1223 glColor4ub( byte red, byte green, byte blue, byte alpha ) argument
[all...]
/frameworks/native/services/surfaceflinger/
H A DLayer.cpp1138 float red, float green, float blue,
1143 engine.setupFillWithColor(red, green, blue, alpha);
1137 clearWithOpenGL(const sp<const DisplayDevice>& hw, float red, float green, float blue, float alpha) const argument
/frameworks/base/media/java/android/media/
H A DCea708CaptionRenderer.java499 int green = (data[pos] & 0x0c) >> 2;
501 CaptionColor foregroundColor = new CaptionColor(opacity, red, green, blue);
505 green = (data[pos] & 0x0c) >> 2;
507 CaptionColor backgroundColor = new CaptionColor(opacity, red, green, blue);
510 green = (data[pos] & 0x0c) >> 2;
513 CaptionColor.OPACITY_SOLID, red, green, blue);
544 int green = (data[pos] & 0x0c) >> 2;
546 CaptionColor fillColor = new CaptionColor(opacity, red, green, blue);
549 green = (data[pos + 1] & 0x0c) >> 2;
552 CaptionColor.OPACITY_SOLID, red, green, blu
843 public final int green; field in class:Cea708CCParser.CaptionColor
846 CaptionColor(int opacity, int red, int green, int blue) argument
[all...]

Completed in 333 milliseconds

12