HomeSort by relevance Sort by last modified time
    Searched refs:colors (Results 251 - 275 of 764) sorted by null

<<11121314151617181920>>

  /art/test/044-proxy/src/
BasicTest.java 49 Colors colors = (Colors) proxy; local
50 colors.red(1.0f);
51 colors.blue(777);
52 colors.mauve("sorry");
53 colors.blob();
102 new Class[] { Quads.class, Colors.class, Trace.class });
151 interface Colors {
177 class Mix implements Quads, Colors {
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/aalib/
SDL_aavideo.c 47 static int AA_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors);
352 int AA_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors)
358 colors[i].r>>2,
359 colors[i].g>>2,
360 colors[i].b>>2);
  /external/qemu/distrib/sdl-1.2.15/src/video/nds/
SDL_ndsvideo.c 44 static int NDS_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors);
472 int NDS_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors)
486 r=colors[i].r>>3;
487 g=colors[i].g>>3;
488 b=colors[i].b>>3;
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11video.c 67 SDL_Color *colors);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testpalette.c 81 SDL_SetColors(bg, screen->format->palette->colors, 0, 256);
113 SDL_SetColors(z, s->format->palette->colors,
203 boat[0]->format->palette->colors, 0, boatcols);
210 memcpy(cmap, screen->format->palette->colors, 256 * sizeof(SDL_Color));
312 memcpy(cmap, screen->format->palette->colors,
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PresentationActivity.java 437 drawable.setColors(mContents.colors);
447 final int[] colors; field in class:PresentationActivity.PresentationContents
464 colors = new int[] {
471 colors = new int[] { in.readInt(), in.readInt() };
482 dest.writeInt(colors[0]);
483 dest.writeInt(colors[1]);
  /external/chromium_org/cc/layers/
delegated_renderer_layer_impl.cc 313 SkColor colors[] = { local
321 const int kNumColors = arraysize(colors);
352 shared_quad_state, top, top, colors[i % kNumColors], false);
359 colors[kNumColors - 1 - (i % kNumColors)],
368 colors[kNumColors - 1 - (i % kNumColors)],
374 shared_quad_state, right, right, colors[i % kNumColors], false);
  /external/qemu/distrib/sdl-1.2.15/src/video/riscos/
SDL_wimpvideo.c 48 int WIMP_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors);
355 int WIMP_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors)
364 *pal = (((unsigned int)colors->r) << 8)
365 + (((unsigned int)colors->g) << 16)
366 + (((unsigned int)colors->b) << 24);
369 colors++;
  /external/qemu/distrib/sdl-1.2.15/src/video/svga/
SDL_svgavideo.c 58 SDL_Color *colors);
382 if ( (bpp == 16) && (modeinfo->colors == 32768) ) {
538 int SVGA_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors)
544 colors[i].r>>2,
545 colors[i].g>>2,
546 colors[i].b>>2);
  /external/chromium_org/chrome/browser/themes/
browser_theme_pack.cc 282 // Strings used by themes to identify colors in the JSON.
    [all...]
  /development/apps/NinePatchLab/src/com/android/ninepatch/
NinePatchLab.java 59 int[] colors = new int[] { local
64 colors);
  /external/chromium_org/third_party/angle/samples/angle/stencil_operations/
StencilOperations.cpp 117 GLfloat colors[testCount][4] = local
219 glUniform4fv(mColorLoc, 1, colors[i]);
  /external/chromium_org/third_party/skia/bench/
RepeatTileBench.cpp 54 SkPMColor* colors = storage; local
62 *colors++ = SkPreMultiplyARGB(0xFF, rr, gg, bb);
  /external/chromium_org/third_party/skia/experimental/PdfViewer/
SkTrackDevice.h 144 const SkColor colors[], SkXfermode* xmode,
148 INHERITED::drawVertices(dummy1, dummy2, vertexCount,verts, texs,colors, xmode, indices,
  /external/chromium_org/third_party/skia/gm/
colormatrix.cpp 88 SkColor colors[] = {0x00000000, 0xFFFFFFFF}; local
90 paint.setShader(SkGradientShader::CreateLinear(pts, colors, NULL, 2,
matrixconvolution.cpp 40 SkColor colors[2] = { 0xFFFFFFFF, 0x40404040 }; local
43 pts, colors, pos, 2, SkShader::kClamp_TileMode))->unref();
twopointradial.cpp 30 SkColor colors[] = { SK_ColorGREEN, SK_ColorRED }; local
42 colors, NULL, 2,
  /external/chromium_org/third_party/skia/samplecode/
SampleDitherBitmap.cpp 27 SkColor colors[] = { 0xFF000000, 0xFFFF0000 }; local
28 SkShader* s = SkGradientShader::CreateLinear(pts, colors, NULL, 2,
SampleFilter.cpp 26 const SkPMColor colors[] = { local
30 SkColorTable* ctable = new SkColorTable(colors, 4);
  /external/deqp/modules/gles31/functional/
es31fAdvancedBlendTests.cpp 367 vector<Vec4> colors (numQuads*4);
369 for (vector<Vec4>::iterator col = colors.begin(); col != colors.end(); ++col)
409 gl.bufferData(GL_ARRAY_BUFFER, (glw::GLsizeiptr)(colors.size()*sizeof(colors[0])), &colors[0], GL_STATIC_DRAW);
470 std::copy(&colors[4*quadNdx], &colors[4*quadNdx] + 4, &quad.color[0]);
  /external/eigen/bench/btl/data/
mk_new_gnuplot.sh 52 convert -background white -density 120 -rotate 90 -resize 800 +dither -colors 256 -quality 0 ../${DIR}/$WHAT.ps -background white -flatten ../${DIR}/$WHAT.png
  /external/qemu/distrib/sdl-1.2.15/src/video/dummy/
SDL_nullvideo.c 55 static int DUMMY_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors);
223 int DUMMY_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors)
  /external/qemu/distrib/sdl-1.2.15/src/video/macrom/
SDL_romvideo.c 60 SDL_Color *colors);
671 static int ROM_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors)
683 /* Verify the range of colors */
692 (**cTab).ctTable[j].rgb.red = colors[i].r << 8 | colors[i].r;
693 (**cTab).ctTable[j].rgb.green = colors[i].g << 8 | colors[i].g;
694 (**cTab).ctTable[j].rgb.blue = colors[i].b << 8 | colors[i].b;
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_video.c 47 static int ph_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors);
594 static int ph_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors)
610 syspalph[i] = PgRGB(colors[i-firstcolor].r, colors[i-firstcolor].g, colors[i-firstcolor].b);
624 syspalph[i] = PgRGB(colors[i-firstcolor].r, colors[i-firstcolor].g, colors[i-firstcolor].b);
  /external/skia/bench/
RepeatTileBench.cpp 54 SkPMColor* colors = storage; local
62 *colors++ = SkPreMultiplyARGB(0xFF, rr, gg, bb);

Completed in 501 milliseconds

<<11121314151617181920>>