HomeSort by relevance Sort by last modified time
    Searched refs:color (Results 351 - 375 of 1551) sorted by null

<<11121314151617181920>>

  /hardware/qcom/display/liblight/
lights.c 118 return state->color & 0x00ffffff;
124 int color = state->color & 0x00ffffff; local
125 return ((77*((color>>16)&0x00ff))
126 + (150*((color>>8)&0x00ff)) + (29*(color&0x00ff))) >> 8;
163 colorRGB = state->color;
  /external/skia/legacy/src/core/
SkConfig8888.cpp 18 inline void unpack_config8888(uint32_t color,
22 *a = (color >> (A_IDX * 8)) & 0xff;
23 *r = (color >> (R_IDX * 8)) & 0xff;
24 *g = (color >> (G_IDX * 8)) & 0xff;
25 *b = (color >> (B_IDX * 8)) & 0xff;
27 *a = (color >> ((3 - A_IDX) * 8)) & 0xff;
28 *r = (color >> ((3 - R_IDX) * 8)) & 0xff;
29 *g = (color >> ((3 - G_IDX) * 8)) & 0xff;
30 *b = (color >> ((3 - B_IDX) * 8)) & 0xff;
  /external/skia/src/core/
SkConfig8888.cpp 19 inline void unpack_config8888(uint32_t color,
23 *a = (color >> (A_IDX * 8)) & 0xff;
24 *r = (color >> (R_IDX * 8)) & 0xff;
25 *g = (color >> (G_IDX * 8)) & 0xff;
26 *b = (color >> (B_IDX * 8)) & 0xff;
28 *a = (color >> ((3 - A_IDX) * 8)) & 0xff;
29 *r = (color >> ((3 - R_IDX) * 8)) & 0xff;
30 *g = (color >> ((3 - G_IDX) * 8)) & 0xff;
31 *b = (color >> ((3 - B_IDX) * 8)) & 0xff;
  /external/webkit/Source/WebCore/inspector/front-end/
SummaryBar.js 77 var colorString = this.categories[category].color;
79 var fillSegment = {color: colorString, value: size};
95 _drawSwatch: function(canvas, color)
100 ctx.fillStyle = color;
140 segments = [{color: "white", value: 1}];
246 // Fill the segments with the associated color.
250 ctx.fillStyle = segments[i].color;
329 _makeLegendElement: function(label, value, color)
334 if (color) {
342 this._drawSwatch(swatch, color);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
BinPacker.java 21 import java.awt.Color;
303 g.setColor(Color.BLACK);
306 Color[] colors = new Color[] {
307 Color.blue, Color.cyan,
308 Color.green, Color.magenta, Color.orange,
309 Color.pink, Color.red, Color.white, Color.yellow, Color.darkGray
315 Color color = new Color(0x9FFFFFFF, true); local
327 Color color = colors[colorIndex]; local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
EmbossMaskFilterTest.java 22 import android.graphics.Color;
47 paint.setColor(Color.GRAY);
54 bitmap.eraseColor(Color.BLACK);
83 long color = 0; local
87 color += Color.red(pixel) + Color.green(pixel) + Color.blue(pixel);
90 return color;
  /external/chromium/chrome/browser/ui/gtk/
gtk_theme_service.cc 52 // How much to tint the GTK+ color lighter at the top of the window.
55 // How much to tint the GTK+ color when an explicit frame color hasn't been
60 // text color.
66 // Number of times that the background color should be counted when trying to
67 // calculate the border color in GTK theme mode.
73 // Default color for links on the NTP when the GTK+ theme doesn't define a
74 // link color. Constant taken from gtklinkbutton.c.
77 // Middle color of the separator gradient.
80 // Top color of the separator gradient
203 SkColor color = GdkToSkColor(&style->fg[state]); local
414 GdkColor color; local
496 GdkColor* color = i == 0 ? thumb_active_color : local
931 GdkColor* color = &style->bg[GTK_STATE_NORMAL]; local
1072 const GdkColor color = style->text[GTK_STATE_SELECTED]; local
    [all...]
  /external/chromium/chrome/browser/ui/views/location_bar/
keyword_hint_view.cc 46 void KeywordHintView::SetColor(const SkColor& color) {
47 leading_label_->SetColor(color);
48 trailing_label_->SetColor(color);
  /external/skia/legacy/src/effects/
SkBlurDrawLooper.cpp 16 SkColor color, uint32_t flags)
17 : fDx(dx), fDy(dy), fBlurColor(color), fBlurFlags(flags) {
39 SkColor opaqueColor = SkColorSetA(color, 255);
40 //The SrcIn xfer mode will multiply 'color' by the incoming alpha
  /external/webkit/Source/WebCore/html/canvas/
CanvasStyle.h 30 #include "Color.h"
45 static PassRefPtr<CanvasStyle> createFromString(const String& color, Document* = 0);
46 static PassRefPtr<CanvasStyle> createFromStringWithOverrideAlpha(const String& color, float alpha);
57 String color() const { ASSERT(m_type == RGBA || m_type == CMYKA); return Color(m_rgba).serialized(); } function in class:WebCore::CanvasStyle
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextSkia.h 83 int /* offset */, const Color& color);
86 const Color& backgroundColor, ColorSpace colorSpace,
95 virtual void fillRect(const FloatRect& rect, const Color& color);
98 const IntSize& bottomRight, const Color& color);
  /external/webkit/Source/WebCore/platform/wx/wxcode/win/
non-kerned-drawing.cpp 72 void drawTextWithSpacing(GraphicsContext* graphicsContext, const SimpleFontData* font, const wxColour& color, const GlyphBuffer& glyphBuffer, int from, int numGlyphs, const FloatPoint& point)
117 if (color.Ok())
118 ::SetTextColor(hdc, color.GetPixel());
  /external/webkit/Source/WebCore/svg/
SVGPaint.cpp 68 setColor(Color());
75 static SVGPaint* staticDefaultFill = createColor(Color::black).releaseRef();
123 // raises an exception when attempting to switch to an unknown color type.
124 // Here we explicitely want to reset to Color() and an unknown type, so force it.
126 setColor(Color());
153 String color = SVGColor::cssText(); local
154 if (color.isEmpty())
156 return makeString(m_uri, ' ', color);
  /external/webkit/Tools/DumpRenderTree/chromium/
WebThemeControlDRTWin.cpp 132 void WebThemeControlDRTWin::line(int x0, int y0, int x1, int y1, SkColor color)
135 paint.setColor(color);
144 SkColor color)
149 paint.setColor(color);
163 void WebThemeControlDRTWin::roundRect(SkColor color)
170 paint.setColor(color);
179 void WebThemeControlDRTWin::oval(SkColor color)
185 paint.setColor(color);
194 void WebThemeControlDRTWin::circle(SkScalar radius, SkColor color)
200 paint.setColor(color);
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
BitmapMutateActivity.java 93 int color = 0xff000000; local
95 color |= (int) ((0xff * ((i + mOffset) % mSlice) / (float) mSlice)) <<
98 mPixels[y * width + x] = color;
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSimpleAdapter.java 92 int color; field in class:SelectCalendarsSimpleAdapter.CalendarRow
103 mColorCalendarVisible = mRes.getColor(R.color.calendar_visible);
104 mColorCalendarHidden = mRes.getColor(R.color.calendar_hidden);
105 mColorCalendarSecondaryVisible = mRes.getColor(R.color.calendar_secondary_visible);
106 mColorCalendarSecondaryHidden = mRes.getColor(R.color.calendar_secondary_hidden);
202 mData[p].color = c.getInt(mColorColumn);
224 int color = Utils.getDisplayColorFromColor(mData[position].color); local
228 final View delegate = view.findViewById(R.id.color);
250 View colorView = view.findViewById(R.id.color);
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
SetupStartIndicatorView.java 92 R.color.setup_step_action_background);
118 final int color = mIndicatorColor.getColorForState(stateSet, 0); local
119 mIndicatorPaint.setColor(color);
  /system/core/libpixelflinger/
pixelflinger.cpp 112 if (surface->format != c->state.buffers.color.format)
122 ggl_set_surface(c, &(c->state.buffers.color), surface);
218 static void ggl_color4xv(void* con, const GGLclampx* color)
221 c->shade.r0 = gglFixedToIteratedColor(color[0]);
222 c->shade.g0 = gglFixedToIteratedColor(color[1]);
223 c->shade.b0 = gglFixedToIteratedColor(color[2]);
224 c->shade.a0 = gglFixedToIteratedColor(color[3]);
278 static void ggl_fogColor3xv(void* con, const GGLclampx* color)
281 const int32_t r = gglClampx(color[0]);
282 const int32_t g = gglClampx(color[1])
370 uint8_t* const color = c->activeTMU->env_color; local
    [all...]
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
rails.php 320 1 => 'color:#9966CC; font-weight:bold;',
321 2 => 'color:#0000FF; font-weight:bold;',
322 3 => 'color:#CC0066; font-weight:bold;',
323 4 => 'color:#CC00FF; font-weight:bold;',
324 5 => 'color:#5A0A0A; font-weight:bold;'
327 1 => 'color:#008000; font-style:italic;',
328 'MULTI' => 'color:#000080; font-style:italic;'
331 0 => 'color:#000099;'
334 0 => 'color:#006600; font-weight:bold;'
337 0 => 'color:#996600;
    [all...]
  /external/opencv/cxcore/src/
cxdrawing.cpp 62 const void* color, int line_type,
66 icvFillEdgeCollection( CvMat* img, CvContour* edges, const void* color );
70 const void* color, int thickness, int line_type, int shift );
74 const void* color, int line_type, int shift );
257 const void* color, int connectivity = 8 )
274 CV_MEMCPY_AUTO( iterator.ptr, color, pix_size );
297 const void* color )
306 int cb = ((uchar*)color)[0], cg = ((uchar*)color)[1], cr = ((uchar*)color)[2]
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
yui-3.3.0-reset-min.css 8 html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;
  /cts/apps/CtsVerifier/include/colorchecker/
whitebalancetest.h 50 float convertToLinear(float color);
  /development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
ActionBarHelper.java 80 protected void onTitleChanged(CharSequence title, int color) {
  /external/chromium/chrome/browser/resources/gpu_internals/
tab_control.css 58 color: blue;
64 color: black;
  /external/chromium/chrome/browser/resources/net_internals/
tabswitcherview.css 50 color: blue;
60 color: black;

Completed in 903 milliseconds

<<11121314151617181920>>