Searched refs:backgroundColor (Results 1 - 25 of 110) sorted by relevance

12345

/external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
H A Dprettyload.js28 backgroundColor,
40 this.backgroundColor = backgroundColor !== undefined ? backgroundColor : null;
49 function finish(frame, backgroundColor) {
52 if (backgroundColor) {
53 BROWSER_ACTION.setBadgeBackgroundColor({color: backgroundColor});
66 if (this.backgroundColor) {
67 BROWSER_ACTION.setBadgeBackgroundColor({color: this.backgroundColor});
/external/proguard/src/proguard/gui/splash/
H A DBufferedSprite.java36 private final Color backgroundColor; field in class:BufferedSprite
79 * @param backgroundColor the background color that is used for the buffer.
89 Color backgroundColor,
97 this.backgroundColor = backgroundColor;
113 if (backgroundColor != null)
122 bufferGraphics.setColor(backgroundColor);
86 BufferedSprite(int bufferX, int bufferY, Image bufferImage, Color backgroundColor, Sprite sprite, VariableInt x, VariableInt y) argument
/external/v8/test/mjsunit/regress/
H A Dregress-3252443.js32 document.getElementById(p1+''+p0).style.backgroundColor = "";
38 document.getElementById(p1+''+i).style.backgroundColor = "";
/external/webkit/Source/WebKit/chromium/public/linux/
H A DWebThemeEngine.h92 WebColor backgroundColor; member in struct:WebKit::WebThemeEngine::ButtonExtraParams
99 WebColor backgroundColor; member in struct:WebKit::WebThemeEngine::TextFieldExtraParams
108 WebColor backgroundColor; member in struct:WebKit::WebThemeEngine::MenuListExtraParams
/external/webkit/Tools/QtTestBrowser/
H A Dlocationedit.cpp102 QColor backgroundColor = QApplication::palette().color(QPalette::Base); local
107 p.setBrush(QPalette::Base, backgroundColor);
113 gradient.setColorAt((double) m_progress / 100 + 0.001, backgroundColor);
/external/webkit/Source/WebCore/page/chromium/
H A DFrameChromium.cpp45 , backgroundColor(frame->view()->baseBackgroundColor())
54 frame->view()->setBaseBackgroundColor(backgroundColor);
61 Color backgroundColor; member in struct:WebCore::__anon14631::ScopedState
/external/webkit/Source/WebCore/platform/
H A DPopupMenuStyle.h51 const Color& backgroundColor() const { return m_backgroundColor; } function in class:WebCore::PopupMenuStyle
/external/webkit/LayoutTests/fast/events/touch/script-tests/
H A Dmulti-touch-grouped-targets.js8 div1.style.backgroundColor = "blue";
14 div2.style.backgroundColor = "green";
H A Dtouch-target-limited.js8 div1.style.backgroundColor = "blue";
14 div2.style.backgroundColor = "green";
H A Dtouch-target.js8 div1.style.backgroundColor = "blue";
14 div2.style.backgroundColor = "green";
H A Dbasic-multi-touch-events-limited.js5 div.style.backgroundColor = "blue";
H A Dbasic-multi-touch-events.js5 div.style.backgroundColor = "blue";
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DBaseLayerAndroid.h81 const FloatPoint& origin, const Color& backgroundColor);
85 const FloatPoint& origin, const Color& backgroundColor);
H A DBaseLayerAndroid.cpp191 const Color& backgroundColor)
214 PureColorQuadData backgroundData(backgroundColor, BaseQuad,
255 const Color& backgroundColor)
279 PureColorQuadData backgroundData(backgroundColor, BaseQuad,
312 Color backgroundColor = Color((int)SkColorGetR(m_backgroundColor), local
319 origin, backgroundColor);
323 origin, backgroundColor);
186 drawSimpleQuad(ImageTexture* imageTexture, BackgroundImagePositioning* position, const IntPoint& repeatTimes, const FloatPoint& startPoint, const FloatPoint& origin, const Color& backgroundColor) argument
250 drawRepeatedGrid(ImageTexture* imageTexture, BackgroundImagePositioning* position, const IntPoint& repeatTimes, const FloatPoint& startPoint, const FloatPoint& origin, const Color& backgroundColor) argument
/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DGraphicsLayerTextureMapper.cpp254 if (value == m_pendingContent.backgroundColor)
256 m_pendingContent.backgroundColor = value;
265 if (!m_pendingContent.backgroundColor.isValid())
267 m_pendingContent.backgroundColor = Color();
328 m_pendingContent.backgroundColor = color;
/external/webkit/Source/WebKit/android/
H A DRenderSkinMediaButton.cpp122 SkColor backgroundColor = SkColorSetARGB(alpha, 34, 34, 34); local
124 paint.setColor(backgroundColor);
136 paint.setColor(backgroundColor);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DPopupMenuQt.cpp47 virtual QColor backgroundColor() const { return d ? QColor(d->menuStyle().backgroundColor()) : QColor(); } function in class:SelectData
49 virtual QColor itemBackgroundColor(int idx) const { return d ? QColor(d->itemStyle(idx).backgroundColor()) : QColor(); }
H A DQtFallbackWebPopup.cpp127 QColor backgroundColor = data.backgroundColor();
131 if (backgroundColor.isValid())
132 palette.setColor(QPalette::Background, backgroundColor);
/external/chromium/chrome/browser/resources/net_internals/
H A Dhstsview.js75 element.style.backgroundColor = '#fffccf';
78 element.style.backgroundColor = '#fff';
/external/webkit/Source/WebCore/rendering/
H A DRenderThemeChromiumLinux.cpp231 extraParams.button.backgroundColor = defaultButtonBackgroundColor;
233 extraParams.button.backgroundColor = o->style()->visitedDependentColor(CSSPropertyBackgroundColor).rgb();
253 Color backgroundColor(Color::white);
255 backgroundColor = o->style()->visitedDependentColor(CSSPropertyBackgroundColor);
256 extraParams.textField.backgroundColor = backgroundColor.rgb();
278 extraParams.menuList.backgroundColor = Color::transparent;
280 extraParams.menuList.backgroundColor = o->style()->visitedDependentColor(CSSPropertyBackgroundColor).rgb();
H A DRenderMenuList.cpp442 Color backgroundColor; local
444 backgroundColor = element->renderStyle()->visitedDependentColor(CSSPropertyBackgroundColor);
446 if (!backgroundColor.hasAlpha())
447 return backgroundColor;
450 backgroundColor = style()->visitedDependentColor(CSSPropertyBackgroundColor).blend(backgroundColor);
451 if (!backgroundColor.hasAlpha())
452 return backgroundColor;
455 return Color(Color::white).blend(backgroundColor);
/external/webkit/Source/WebKit/chromium/src/js/
H A DDevTools.js136 WebInspector.setToolbarColors = function(backgroundColor, color)
145 background-color: " + backgroundColor + " !important;\
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DGLUtils.cpp607 void GLUtils::clearBackgroundIfOpaque(const Color* backgroundColor) argument
609 if (!backgroundColor->hasAlpha()) {
611 float color = 1.0 - ((((float) backgroundColor->red() / 255.0) +
612 ((float) backgroundColor->green() / 255.0) +
613 ((float) backgroundColor->blue() / 255.0)) / 3.0);
616 glClearColor((float)backgroundColor->red() / 255.0,
617 (float)backgroundColor->green() / 255.0,
618 (float)backgroundColor->blue() / 255.0, 1);
H A DGLUtils.h93 static void clearBackgroundIfOpaque(const Color* backgroundColor);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebViewData.mm101 [backgroundColor release];

Completed in 3786 milliseconds

12345