HomeSort by relevance Sort by last modified time
    Searched refs:color (Results 701 - 725 of 2806) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEFloodElement.cpp 69 Color color = svgStyle->floodColor(); local
72 return FEFlood::create(filter, color, opacity);
  /external/chromium_org/third_party/WebKit/Source/web/
WebColorName.cpp 36 #include "platform/graphics/Color.h"
115 WebColor color = colors[i]; local
117 // Convert color to internal value identifier.
120 RenderTheme::setCustomFocusRingColor(color);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_clear.c 45 const union pipe_color_union *color,
67 util_pack_color(color->f, cbuf->format, &u_color);
78 util_pack_color(color->f, cbuf->format, &u_color);
80 util_pack_color(color->f, PIPE_FORMAT_B8G8R8A8_UNORM, &u_color);
119 /* hw can't fastclear both depth and color if their bbp mismatch. */
221 const union pipe_color_union *color,
224 util_clear(pipe, &i915_context(pipe)->framebuffer, buffers, color, depth,
230 const union pipe_color_union *color,
238 i915_clear_emit(pipe, buffers, color, depth, stencil,
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_execute.h 33 GLfloat lambda, GLuint unit, GLfloat color[4]);
39 GLuint unit, GLfloat color[4]);
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast_setup/
ss_triangle.c 138 COPY_CHAN4(c[0], v0->color);
139 COPY_CHAN4(c[1], v1->color);
143 /* copy v2 color/indexes to v0, v1 indexes */
144 COPY_CHAN4(v0->color, v2->color);
145 COPY_CHAN4(v1->color, v2->color);
151 COPY_CHAN4(v0->color, c[0]);
152 COPY_CHAN4(v1->color, c[1]);
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrSimpleTextureEffect.cpp 42 void GrSimpleTextureEffect::getConstantColorComponents(GrColor* color, uint32_t* validFlags) const {
43 this->updateConstantColorComponentsForModulation(color, validFlags);
  /external/chromium_org/third_party/skia/src/opts/
SkBitmapProcState_opts_SSE2.h 19 SkPMColor color);
  /external/chromium_org/ui/compositor/test/
test_layer_animation_delegate.cc 55 void TestLayerAnimationDelegate::SetColorFromAnimation(SkColor color) {
56 color_ = color;
  /external/chromium_org/ui/gfx/
canvas.cc 164 void Canvas::DrawDashedRect(const Rect& rect, SkColor color) {
166 // so that you never get two pixels of the same color around the edges
171 if (!dots || last_color != color) {
176 last_color = color;
186 dot[i * row_pixels + u] = color;
252 void Canvas::DrawColor(SkColor color) {
253 DrawColor(color, SkXfermode::kSrcOver_Mode);
256 void Canvas::DrawColor(SkColor color, SkXfermode::Mode mode) {
257 canvas_->drawColor(color, mode);
260 void Canvas::FillRect(const Rect& rect, SkColor color) {
    [all...]
shadow_value.cc 22 SkColor color)
25 color_(color) {
  /external/chromium_org/ui/views/
background.h 44 // Creates a background that fills the canvas in the specified color.
45 static Background* CreateSolidBackground(SkColor color);
47 // Creates a background that fills the canvas in the specified color.
52 // Creates a background that fills the canvas in the specified color.
64 // each corresponding color. |colors| and |pos| must be the same size. The
82 // Set a solid, opaque color to be used when drawing backgrounds of native
84 void SetNativeControlColor(SkColor color);
86 // Returns the "background color". This is equivalent to the color set in
87 // SetNativeControlColor(). For solid backgrounds, this is the color; fo
    [all...]
shadow_border.cc 17 SkColor color,
22 color_(color),
  /external/chromium_org/ui/views/controls/
link.h 59 virtual void SetEnabledColor(SkColor color) OVERRIDE;
60 void SetPressedColor(SkColor color);
80 // The color when the link is neither pressed nor disabled.
83 // The color when the link is pressed.
styled_label.h 43 // The text color for the range.
44 SkColor color; member in struct:views::StyledLabel::RangeStyleInfo
71 // Sets the color of the background on which the label is drawn. This won't
72 // be explicitly drawn, but the label will force the text color to be
74 void SetDisplayedOnBackgroundColor(SkColor color);
134 // Background color on which the label is drawn, for auto color readability.
  /external/chromium_org/ui/views/window/
frame_background.h 29 // Sets the color to draw under the frame images.
30 void set_frame_color(SkColor color) { frame_color_ = color; }
43 // Sets the height of the top area to fill with the default frame color,
77 // Fills the frame area with the frame color.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
LineGraph.java 15 import org.eclipse.swt.graphics.Color;
31 Color color; field in class:LineGraph.GraphItem
34 GraphItem(String title, String description,double value, Color color,boolean display) {
35 this(title, description, value, color);
39 GraphItem(String title, String description, double value, Color color) {
42 this.color= color;
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_clear.c 45 const union pipe_color_union *color,
67 util_pack_color(color->f, cbuf->format, &u_color);
78 util_pack_color(color->f, cbuf->format, &u_color);
80 util_pack_color(color->f, PIPE_FORMAT_B8G8R8A8_UNORM, &u_color);
119 /* hw can't fastclear both depth and color if their bbp mismatch. */
221 const union pipe_color_union *color,
224 util_clear(pipe, &i915_context(pipe)->framebuffer, buffers, color, depth,
230 const union pipe_color_union *color,
238 i915_clear_emit(pipe, buffers, color, depth, stencil,
  /external/mesa3d/src/mesa/program/
prog_execute.h 33 GLfloat lambda, GLuint unit, GLfloat color[4]);
39 GLuint unit, GLfloat color[4]);
  /external/mesa3d/src/mesa/swrast_setup/
ss_triangle.c 138 COPY_CHAN4(c[0], v0->color);
139 COPY_CHAN4(c[1], v1->color);
143 /* copy v2 color/indexes to v0, v1 indexes */
144 COPY_CHAN4(v0->color, v2->color);
145 COPY_CHAN4(v1->color, v2->color);
151 COPY_CHAN4(v0->color, c[0]);
152 COPY_CHAN4(v1->color, c[1]);
  /external/opencv/otherlibs/highgui/
grfmt_imageio.cpp 125 bool GrFmtImageIOReader::ReadData( uchar* data, int step, int color )
129 // Set color to either CV_IMAGE_LOAD_COLOR or CV_IMAGE_LOAD_GRAYSCALE if unchanged
130 color = color > 0 || ( m_iscolor && color < 0 );
132 // Get Height, Width, and color information
143 if( color == CV_LOAD_IMAGE_GRAYSCALE )
149 else if( color == CV_LOAD_IMAGE_COLOR )
152 bpp = 4; /* CG only has 8 and 32 bit color spaces, so we waste a byte */
170 colorSpace, /* color space *
    [all...]
grfmt_tiff.h 100 bool ReadData( uchar* data, int step, int color );
120 bool ReadData( uchar* data, int step, int color );
  /external/pixman/demos/
tri-test.c 24 pixman_color_t color = { 0x4444, 0x4444, 0xffff, 0xffff }; local
31 src_img = pixman_image_create_solid_fill (&color);
  /external/skia/src/gpu/effects/
GrSimpleTextureEffect.cpp 42 void GrSimpleTextureEffect::getConstantColorComponents(GrColor* color, uint32_t* validFlags) const {
43 this->updateConstantColorComponentsForModulation(color, validFlags);
  /external/skia/src/opts/
SkBitmapProcState_opts_SSE2.h 19 SkPMColor color);
  /external/skia/tests/
BitmapHasherTest.cpp 31 SkColor color) {
35 bitmap.eraseColor(color);
50 // same dimensions but different color should yield a different checksum

Completed in 659 milliseconds

<<21222324252627282930>>