Searched refs:gradient (Results 26 - 46 of 46) sorted by relevance

12

/external/chromium-trace/trace-viewer/src/
H A Dtimeline_view.css28 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#E5E5E5), to(#D1D1D1));
65 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#E5E5E5), to(#D1D1D1));
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext.cpp282 void GraphicsContext::setStrokeGradient(PassRefPtr<Gradient> gradient) argument
284 ASSERT(gradient);
285 if (!gradient) {
289 m_state.strokeGradient = gradient;
294 void GraphicsContext::setFillGradient(PassRefPtr<Gradient> gradient) argument
296 ASSERT(gradient);
297 if (!gradient) {
301 m_state.fillGradient = gradient;
/external/webkit/Source/WebCore/inspector/front-end/
H A Dinspector.css80 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(191, 191, 191)), to(rgb(151, 151, 151)));
88 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(233, 233, 233)), to(rgb(207, 207, 207)));
196 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 251, 251, 0.9)), to(rgba(231, 231, 231, 0.9)));
200 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(191, 191, 191, 0.7)), to(rgba(171, 171, 171, 0.5)));
204 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(111, 111, 111, 0.8)), to(rgba(91, 91, 91, 0.8)));
219 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(191, 191, 191)), to(rgb(151, 151, 151)));
240 background: -webkit-gradient(linear, left top, left bottom, from(rgba(128, 128, 128, 0.6)), to(rgba(128, 128, 128, 0.6)), color-stop(20%, rgba(158, 158, 158, 0.2)), color-stop(80%, rgba(158, 158, 158, 0.2)));
279 background: -webkit-gradient(linear, left top, right top, from(rgb(192, 192, 192)), to(rgb(192, 192, 192)), color-stop(40%, rgb(214, 214, 214)));
286 background: -webkit-gradient(linear, left top, right top, from(rgb(230, 230, 230)), to(rgb(230, 230, 230)), color-stop(40%, rgb(252, 252, 252)));
290 background: -webkit-gradient(linea
[all...]
H A DheapProfiler.css106 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
/external/chromium/chrome/browser/resources/ntp/
H A Dmost_visited.css103 background-image: -webkit-linear-gradient(hsl(213, 87%, 67%),
200 background-image: -webkit-linear-gradient(hsla(0, 0%, 0%, 0),
/external/skia/src/svg/
H A DSkSVGPaintState.cpp127 SkSVGElement* gradient = found->getGradient();
128 if (gradient) {
129 gradient->write(parser, current.f_fill);
130 gradient->write(parser, current.f_stroke);
/external/webkit/Source/WebCore/platform/gtk/
H A DRenderThemeGtk.cpp541 // Chrome for the gradient code.
573 RefPtr<Gradient> gradient = Gradient::create(sliderTopLeft, sliderTopRight); local
575 gradient->addColorStop(0.0, startColor);
576 gradient->addColorStop(1.0, Color(startColor.red() / 2, startColor.green() / 2, startColor.blue() / 2, startColor.alpha()));
578 context->setFillGradient(gradient);
/external/chromium/chrome/browser/resources/touch_ntp/
H A Dnewtab.css15 /* This newer linear-gradient form works on Chrome but not mobile Safari */
16 /*background: -webkit-linear-gradient(top,#252c39,#3e485b,#252c39); */
17 background: -webkit-gradient(linear, left top, left bottom, from(#252c39),
/external/webkit/Source/WebCore/css/
H A DfullscreenQuickTime.css39 background-image: -webkit-gradient(
H A Dhtml.css644 background: -webkit-gradient(linear, left top, left bottom, from(#f8ecec), to(#e8cccc));
688 background: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(#ddd), color-stop(0.20, #eee), color-stop(0.45, #ccc), color-stop(0.55, #ccc));
694 background: -webkit-gradient(linear, left top, left bottom, from(#ad7), to(#ad7), color-stop(0.20, #cea), color-stop(0.45, #7a3), color-stop(0.55, #7a3));
700 background: -webkit-gradient(linear, left top, left bottom, from(#fe7), to(#fe7), color-stop(0.20, #ffc), color-stop(0.45, #db3), color-stop(0.55, #db3));
706 background: -webkit-gradient(linear, left top, left bottom, from(#f77), to(#f77), color-stop(0.20, #fcc), color-stop(0.45, #d44), color-stop(0.55, #d44));
H A DCSSParser.cpp2593 // attr(X) | counter(X [,Y]) | counters(X, Y, [,Z]) | -webkit-gradient(...)
5054 // This should go away once we drop support for -webkit-gradient
5136 bool CSSParser::parseDeprecatedGradient(RefPtr<CSSValue>& gradient) argument
5143 // The first argument is the gradient type. It is an identifier.
5170 // Next comes the starting point for the gradient as an x y pair. There is no
5208 // Next is the ending point for the gradient as an x, y pair.
5262 gradient = result.release();
5295 bool CSSParser::parseLinearGradient(RefPtr<CSSValue>& gradient, CSSGradientRepeat repeating) argument
5361 gradient = result.release();
5365 bool CSSParser::parseRadialGradient(RefPtr<CSSValue>& gradient, CSSGradientRepea argument
5484 parseGradientColorStops(CSSParserValueList* valueList, CSSGradientValue* gradient, bool expectComma) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DGraphicsContextWinCE.cpp1309 Color gradientAverageColor(const Gradient* gradient) argument
1311 const Vector<Gradient::ColorStop>& stops = gradient->getStops();
1399 void GraphicsContext::fillRect(const FloatRect& r, const Gradient* gradient) argument
1404 const Vector<Gradient::ColorStop>& stops = gradient->getStops();
1428 FloatPoint fp0 = m_data->mapPoint(gradient->p0());
1429 FloatPoint fp1 = m_data->mapPoint(gradient->p1());
1435 if (gradient->isRadial()) {
1439 float r0 = gradient->startRadius() * scale;
1440 float r1 = gradient->endRadius() * scale;
1441 g_radialGradientFiller(dc, rect, p0, p1, r0, r1, gradient
[all...]
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp1007 // If x0 = x1 and y0 = y1, then the linear gradient must paint nothing
1008 // If x0 = x1 and y0 = y1 and r0 = r1, then the radial gradient must paint nothing
1009 Gradient* gradient = c->fillGradient();
1010 if (gradient && gradient->isZeroSize())
1469 void CanvasRenderingContext2D::prepareGradientForDashboard(CanvasGradient* gradient) const
1473 gradient->setDashboardCompatibilityMode();
1475 UNUSED_PARAM(gradient);
1486 RefPtr<CanvasGradient> gradient = CanvasGradient::create(FloatPoint(x0, y0), FloatPoint(x1, y1)); local
1487 prepareGradientForDashboard(gradient
1503 RefPtr<CanvasGradient> gradient = CanvasGradient::create(FloatPoint(x0, y0), r0, FloatPoint(x1, y1), r1); local
[all...]
H A DCanvasRenderingContext2D.h294 void prepareGradientForDashboard(CanvasGradient* gradient) const;
/external/chromium/chrome/browser/resources/options/chromeos/
H A Dinternet_options_page.css57 background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.8),
/external/chromium/chrome/browser/resources/file_manager/css/
H A Dfile_manager.css26 background-image: -webkit-linear-gradient(top, #fff,#f6f6f6);
202 background-image: -webkit-linear-gradient(top, #f9f9f9, #e8e8e8);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DGraphicsContextSkia.cpp1007 void GraphicsContext::setPlatformFillGradient(Gradient* gradient) argument
1012 platformContext()->setFillShader(gradient->platformGradient());
1132 void GraphicsContext::setPlatformStrokeGradient(Gradient* gradient) argument
1137 platformContext()->setStrokeShader(gradient->platformGradient());
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGRenderTreeAsText.cpp607 RenderSVGResourceLinearGradient* gradient = static_cast<RenderSVGResourceLinearGradient*>(resource); local
611 SVGLinearGradientElement* linearGradientElement = static_cast<SVGLinearGradientElement*>(gradient->node());
623 RenderSVGResourceRadialGradient* gradient = static_cast<RenderSVGResourceRadialGradient*>(resource); local
627 SVGRadialGradientElement* radialGradientElement = static_cast<SVGRadialGradientElement*>(gradient->node());
/external/chromium/chrome/browser/resources/
H A Dnew_new_tab.js593 var gradient = '-webkit-linear-gradient(' + gradientArguments.join(',') + ')';
594 maxiview.style.WebkitMaskImage = gradient;
598 // TODO(arv): The CSS3 gradient syntax allows px units so we should simplify
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 266 milliseconds

12