HomeSort by relevance Sort by last modified time
    Searched refs:blue (Results 226 - 250 of 275) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/webkit/WebCore/html/canvas/
WebGLRenderingContext.cpp 271 void WebGLRenderingContext::blendColor(double red, double green, double blue, double alpha)
273 m_context->blendColor(red, green, blue, alpha);
406 void WebGLRenderingContext::colorMask(bool red, bool green, bool blue, bool alpha)
408 m_context->colorMask(red, green, blue, alpha);
    [all...]
  /external/webkit/WebCore/rendering/
SVGInlineTextBox.cpp 501 color = Color(0xff - color.red(), 0xff - color.green(), 0xff - color.blue());
  /frameworks/base/core/jni/
android_opengl_GLES11Ext.cpp 515 /* void glClearColorxOES ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha ) */
518 (JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) {
522 (GLclampx)blue,
587 /* void glColor4xOES ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha ) */
590 (JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) {
594 (GLfixed)blue,
    [all...]
android_opengl_GLES20.cpp 236 /* void glBlendColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) */
239 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) {
243 (GLclampf)blue,
356 /* void glClearColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) */
359 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) {
363 (GLclampf)blue,
386 /* void glColorMask ( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ) */
389 (JNIEnv *_env, jobject _this, jboolean red, jboolean green, jboolean blue, jboolean alpha) {
393 (GLboolean)blue,
    [all...]
android_opengl_GLES11.cpp 313 /* void glColor4ub ( GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha ) */
316 (JNIEnv *_env, jobject _this, jbyte red, jbyte green, jbyte blue, jbyte alpha) {
320 (GLubyte)blue,
    [all...]
  /build/tools/droiddoc/templates-sdk/
customization.cs 249 <?cs # appears on the right side of the blue bar at the bottom off every page ?><?cs
  /external/webkit/WebCore/page/animation/
AnimationBase.cpp 102 blendFunc(anim, premultFrom.blue(), premultTo.blue(), progress),
    [all...]
  /external/libpng/
png.h 620 /* Three color definitions. The order of the red, green, and blue, (and the
628 png_byte blue; member in struct:png_color_struct
636 png_uint_16 red; /* for use in red green blue files */
638 png_uint_16 blue; member in struct:png_color_16_struct
646 png_byte red; /* for use in red green blue files */
648 png_byte blue; member in struct:png_color_8_struct
663 png_uint_16 blue; member in struct:png_sPLT_entry_struct
    [all...]
pngset.c 869 (int)trans_values->blue > sample_max)))
    [all...]
pngtest.c     [all...]
  /external/quake/quake/src/QW/scitech/include/
mgraph.h 659 uchar blue; /* Blue component of color */ member in struct:__anon6909
661 uchar red; /* Blue component of color */
676 m_int bluePos,blueAdjust; /* Blue position and adjustment */
826 char blueMaskSize; /* Size of direct color blue mask */
827 char blueFieldPosition; /* Bit posn of lsb of blue mask */
    [all...]
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
MGRAPH.H 659 uchar blue; /* Blue component of color */ member in struct:__anon7208
661 uchar red; /* Blue component of color */
676 m_int bluePos,blueAdjust; /* Blue position and adjustment */
826 char blueMaskSize; /* Size of direct color blue mask */
827 char blueFieldPosition; /* Bit posn of lsb of blue mask */
    [all...]
  /external/bison/src/
vcg.c 219 case blue: return "blue";
  /external/quake/quake/src/QW/client/
vid_x.c 627 colors[i].blue = palette[i*3+2] * 257;
  /external/quake/quake/src/WinQuake/
vid_sunx.cpp 834 colors[i].blue = vid_gamma[palette[i*3+2]] * 257;
vid_sunxil.cpp 727 colors[i].blue = vid_gamma[palette[i*3+2]] * 257;
vid_x.cpp 702 colors[i].blue = palette[i*3+2] * 257;
  /external/webkit/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 355 SkColor c = SkColorSetARGB(color.alpha(), color.red(), color.green(), color.blue());
  /external/webkit/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp 89 vgColor = (vgColor << 8) | color.blue();
  /frameworks/base/tools/aapt/
Images.cpp 810 rgbPalette[idx].blue = (png_byte) ((col >> 8) & 0xff);
    [all...]
  /libcore/luni/src/test/java/tests/api/java/io/
ObjectOutputStreamTest.java 480 red, blue, green enum constant in enum:ObjectOutputStreamTest.WriteReplaceObject.Color
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
GLRootView.java 580 Color.blue(color) * alpha, Color.alpha(color) * alpha);
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5video.c     [all...]
  /external/webkit/WebKit/qt/Api/
qwebpage.cpp     [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java 832 mTextView.setHintTextColor(Color.BLUE);
833 assertSame(ColorStateList.valueOf(Color.BLUE), mTextView.getHintTextColors());
834 assertEquals(Color.BLUE, mTextView.getCurrentHintTextColor());
    [all...]

Completed in 685 milliseconds

1 2 3 4 5 6 7 8 91011