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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/widget/src/android/widget/cts/
GridViewTest.java 891 R.drawable.blue, R.drawable.red,
894 R.drawable.pass, R.drawable.red,
TextViewTest.java 569 mTextView.setTextColor(Color.RED);
570 assertEquals(Color.RED, mTextView.getCurrentTextColor());
571 assertSame(ColorStateList.valueOf(Color.RED), mTextView.getTextColors());
836 mTextView.setHintTextColor(Color.RED);
837 assertSame(ColorStateList.valueOf(Color.RED), mTextView.getHintTextColors());
838 assertEquals(Color.RED, mTextView.getCurrentHintTextColor());
    [all...]
ProgressBarTest.java 570 Drawable d2 = mContext.getResources().getDrawable(R.drawable.red);
  /external/libpng/
example.c 218 * It is possible to set the red, green, and blue components directly
659 sig_bit.red = true_red_bit_depth;
png.h 620 /* Three color definitions. The order of the red, green, and blue, (and the
626 png_byte red; member in struct:png_color_struct
636 png_uint_16 red; /* for use in red green blue files */ member in struct:png_color_16_struct
646 png_byte red; /* for use in red green blue files */ member in struct:png_color_8_struct
661 png_uint_16 red; member in struct:png_sPLT_entry_struct
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/dga/
SDL_dgavideo.c 1002 xcmap[i].red = (colors[i].r<<8)|colors[i].r;
1037 xcmap[i].red = ramp[0*256+c];
  /external/qemu/distrib/sdl-1.2.12/src/video/macdsp/
SDL_dspvideo.c 1020 surface->hwdata->alpha.red = (alpha / 255.0) * 65535;
    [all...]
  /external/qemu/
sys-tree.h 43 * splay trees and red-black trees.
57 * A red-black tree is a binary search tree with the node color as an
61 * - each red node (except for the root) has a black parent,
64 * Every operation on a red-black tree is bounded as O(lg n).
65 * The maximum height of a red-black tree is 2lg (n+1).
301 /* Macros that define a red-black tree */
337 #define RB_SET_BLACKRED(black, red, field) do { \
339 RB_COLOR(red, field) = RB_RED; \
    [all...]
  /external/quake/quake/src/QW/client/
vid_x.c 205 dummycolour.red = 0;
625 colors[i].red = palette[i*3] * 257;
  /external/quake/quake/src/WinQuake/
vid_sunx.cpp 380 dummycolour.red = 0;
832 colors[i].red = vid_gamma[palette[i*3]] * 257;
vid_sunxil.cpp 298 dummycolour.red = 0;
725 colors[i].red = vid_gamma[palette[i*3]] * 257;
vid_x.cpp 284 dummycolour.red = 0;
700 colors[i].red = palette[i*3] * 257;
  /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/Gallery3D/src/com/cooliris/media/
RenderView.java 304 public void setColor(float red, float green, float blue, float alpha) {
307 gl.glColor4f(red, green, blue, alpha);
    [all...]
  /frameworks/base/core/jni/
com_google_android_gles_jni_GLImpl.cpp 342 /* void glClearColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) */
345 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) {
347 (GLclampf)red,
354 /* void glClearColorx ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha ) */
357 (JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) {
359 (GLclampx)red,
402 /* void glColor4f ( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ) */
405 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) {
407 (GLfloat)red,
414 /* void glColor4x ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha ) *
    [all...]
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) {
520 (GLclampx)red,
587 /* void glColor4xOES ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha ) */
590 (JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) {
592 (GLfixed)red,
    [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) {
241 (GLclampf)red,
356 /* void glClearColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) */
359 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) {
361 (GLclampf)red,
386 /* void glColorMask ( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ) */
389 (JNIEnv *_env, jobject _this, jboolean red, jboolean green, jboolean blue, jboolean alpha) {
391 (GLboolean)red,
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_sysvideo.cc 785 palette->colors[i].r = cmap->color_list[i].red;
  /external/qemu/distrib/sdl-1.2.12/src/video/macrom/
SDL_romvideo.c 692 (**cTab).ctTable[j].rgb.red = colors[i].r << 8 | colors[i].r;
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_ph_video.c 470 SDL_ReallocFormat(current, mask->bpp, mask->red, mask->green, mask->blue, 0);
  /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());
  /external/webkit/WebCore/page/animation/
AnimationBase.cpp 100 Color premultBlended(blendFunc(anim, premultFrom.red(), premultTo.red(), progress),
    [all...]
  /external/quake/quake/src/QW/scitech/include/
mgraph.h 661 uchar red; /* Blue component of color */ member in struct:__anon6909
674 m_int redPos,redAdjust; /* Red position and adjustment */
822 char redMaskSize; /* Size of direct color red mask */
823 char redFieldPosition; /* Bit posn of lsb of red mask */
    [all...]
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
MGRAPH.H 661 uchar red; /* Blue component of color */ member in struct:__anon7208
674 m_int redPos,redAdjust; /* Red position and adjustment */
822 char redMaskSize; /* Size of direct color red mask */
823 char redFieldPosition; /* Bit posn of lsb of red mask */
    [all...]

Completed in 770 milliseconds

1 2 3 4 5 6 7 8 91011>>