Home
last modified time | relevance | path

Searched refs:backgroundColor (Results 1 – 25 of 126) sorted by relevance

123456

/external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
Dprettyload.js28 backgroundColor, argument
40 this.backgroundColor = backgroundColor !== undefined ? backgroundColor : null;
49 function finish(frame, backgroundColor) { argument
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/
DBufferedSprite.java36 private final Color backgroundColor; field in BufferedSprite
89 Color backgroundColor, in BufferedSprite() argument
97 this.backgroundColor = backgroundColor; in BufferedSprite()
113 if (backgroundColor != null) in paint()
122 bufferGraphics.setColor(backgroundColor); in paint()
/external/webkit/Source/WebKit/chromium/public/linux/
DWebThemeEngine.h92 WebColor backgroundColor; member
99 WebColor backgroundColor; member
108 WebColor backgroundColor; member
/external/webkit/Source/WebCore/rendering/
DRenderThemeChromiumLinux.cpp231 extraParams.button.backgroundColor = defaultButtonBackgroundColor; in paintButton()
233 …extraParams.button.backgroundColor = o->style()->visitedDependentColor(CSSPropertyBackgroundColor)… in paintButton()
253 Color backgroundColor(Color::white); in paintTextField() local
255 backgroundColor = o->style()->visitedDependentColor(CSSPropertyBackgroundColor); in paintTextField()
256 extraParams.textField.backgroundColor = backgroundColor.rgb(); in paintTextField()
278 extraParams.menuList.backgroundColor = Color::transparent; in paintMenuList()
280 …extraParams.menuList.backgroundColor = o->style()->visitedDependentColor(CSSPropertyBackgroundColo… in paintMenuList()
DRenderMenuList.cpp442 Color backgroundColor; in itemBackgroundColor() local
444 backgroundColor = element->renderStyle()->visitedDependentColor(CSSPropertyBackgroundColor); in itemBackgroundColor()
446 if (!backgroundColor.hasAlpha()) in itemBackgroundColor()
447 return backgroundColor; in itemBackgroundColor()
450backgroundColor = style()->visitedDependentColor(CSSPropertyBackgroundColor).blend(backgroundColor in itemBackgroundColor()
451 if (!backgroundColor.hasAlpha()) in itemBackgroundColor()
452 return backgroundColor; in itemBackgroundColor()
455 return Color(Color::white).blend(backgroundColor); in itemBackgroundColor()
/external/webkit/Source/WebCore/platform/graphics/android/layers/
DBaseLayerAndroid.cpp191 const Color& backgroundColor) in drawSimpleQuad() argument
214 PureColorQuadData backgroundData(backgroundColor, BaseQuad, in drawSimpleQuad()
255 const Color& backgroundColor) in drawRepeatedGrid() argument
279 PureColorQuadData backgroundData(backgroundColor, BaseQuad, in drawRepeatedGrid()
312 Color backgroundColor = Color((int)SkColorGetR(m_backgroundColor), in drawGL() local
319 origin, backgroundColor); in drawGL()
323 origin, backgroundColor); in drawGL()
DBaseLayerAndroid.h81 const FloatPoint& origin, const Color& backgroundColor);
85 const FloatPoint& origin, const Color& backgroundColor);
/external/webkit/Tools/QtTestBrowser/
Dlocationedit.cpp102 QColor backgroundColor = QApplication::palette().color(QPalette::Base); in paintEvent() local
107 p.setBrush(QPalette::Base, backgroundColor); in paintEvent()
113 gradient.setColorAt((double) m_progress / 100 + 0.001, backgroundColor); in paintEvent()
/external/webkit/Source/WebCore/platform/graphics/texmap/
DGraphicsLayerTextureMapper.cpp254 if (value == m_pendingContent.backgroundColor) in setBackgroundColor()
256 m_pendingContent.backgroundColor = value; in setBackgroundColor()
265 if (!m_pendingContent.backgroundColor.isValid()) in clearBackgroundColor()
267 m_pendingContent.backgroundColor = Color(); in clearBackgroundColor()
328 m_pendingContent.backgroundColor = color; in setContentsBackgroundColor()
DTextureMapperNode.h93 Color backgroundColor; member
209 Color backgroundColor; member
/external/webkit/Source/WebCore/page/chromium/
DFrameChromium.cpp45 , backgroundColor(frame->view()->baseBackgroundColor()) in ScopedState()
54 frame->view()->setBaseBackgroundColor(backgroundColor); in ~ScopedState()
61 Color backgroundColor; member
/external/v8/test/mjsunit/regress/
Dregress-3252443.js32 document.getElementById(p1+''+p0).style.backgroundColor = "";
38 document.getElementById(p1+''+i).style.backgroundColor = "";
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DPopupMenuQt.cpp47 …virtual QColor backgroundColor() const { return d ? QColor(d->menuStyle().backgroundColor()) : QCo… in backgroundColor() function in SelectData
49 …BackgroundColor(int idx) const { return d ? QColor(d->itemStyle(idx).backgroundColor()) : QColor()… in itemBackgroundColor()
DQtFallbackWebPopup.cpp127 QColor backgroundColor = data.backgroundColor(); in show() local
131 if (backgroundColor.isValid()) in show()
132 palette.setColor(QPalette::Background, backgroundColor); in show()
/external/webkit/Source/WebKit/android/
DRenderSkinMediaButton.cpp122 SkColor backgroundColor = SkColorSetARGB(alpha, 34, 34, 34); in Draw() local
124 paint.setColor(backgroundColor); in Draw()
136 paint.setColor(backgroundColor); in Draw()
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
DGLUtils.cpp607 void GLUtils::clearBackgroundIfOpaque(const Color* backgroundColor) in clearBackgroundIfOpaque() argument
609 if (!backgroundColor->hasAlpha()) { in clearBackgroundIfOpaque()
611 float color = 1.0 - ((((float) backgroundColor->red() / 255.0) + in clearBackgroundIfOpaque()
612 ((float) backgroundColor->green() / 255.0) + in clearBackgroundIfOpaque()
613 ((float) backgroundColor->blue() / 255.0)) / 3.0); in clearBackgroundIfOpaque()
616 glClearColor((float)backgroundColor->red() / 255.0, in clearBackgroundIfOpaque()
617 (float)backgroundColor->green() / 255.0, in clearBackgroundIfOpaque()
618 (float)backgroundColor->blue() / 255.0, 1); in clearBackgroundIfOpaque()
/external/webkit/LayoutTests/fast/events/touch/script-tests/
Dtouch-target.js8 div1.style.backgroundColor = "blue";
14 div2.style.backgroundColor = "green";
Dmulti-touch-grouped-targets.js8 div1.style.backgroundColor = "blue";
14 div2.style.backgroundColor = "green";
Dtouch-target-limited.js8 div1.style.backgroundColor = "blue";
14 div2.style.backgroundColor = "green";
/external/webkit/Source/WebKit/chromium/src/js/
DDevTools.js136 WebInspector.setToolbarColors = function(backgroundColor, color) argument
145 background-color: " + backgroundColor + " !important;\
/external/webkit/Source/WebCore/platform/graphics/android/context/
DPlatformGraphicsContextSkia.cpp340 const Color& backgroundColor, ColorSpace colorSpace, int from, in drawHighlightForText() argument
345 fillRect(rect, backgroundColor); in drawHighlightForText()
350 fillRect(IntRect(x, y, w, t), backgroundColor); in drawHighlightForText()
351 fillRect(IntRect(x, y+h-t, w, t), backgroundColor); in drawHighlightForText()
352 fillRect(IntRect(x, y+t, t, h-t2), backgroundColor); in drawHighlightForText()
353 fillRect(IntRect(x+w-t, y+t, t, h-t2), backgroundColor); in drawHighlightForText()
/external/chromium/chrome/browser/resources/net_internals/
Dhstsview.js75 element.style.backgroundColor = '#fffccf';
78 element.style.backgroundColor = '#fff';
/external/webkit/Source/WebCore/platform/graphics/qt/
DGraphicsLayerQt.cpp244 QColor backgroundColor; member
286 Color backgroundColor; member
607 …if (m_currentContent.backgroundColor.isValid() && m_currentContent.backgroundColor.alpha() == 0xff) in opaqueArea()
634 if (m_currentContent.backgroundColor.isValid()) in paint()
635 painter->fillRect(option->exposedRect, QColor(m_currentContent.backgroundColor)); in paint()
844 && (m_pendingContent.backgroundColor != m_currentContent.backgroundColor)) in flushChanges()
864 m_currentContent.backgroundColor = m_pendingContent.backgroundColor; in flushChanges()
1163 if (value == m_impl->m_pendingContent.backgroundColor) in setBackgroundColor()
1165 m_impl->m_pendingContent.backgroundColor = value; in setBackgroundColor()
1174 if (!m_impl->m_pendingContent.backgroundColor.isValid()) in clearBackgroundColor()
[all …]
/external/chromium/webkit/glue/
Dwebthemeengine_impl_linux.cc111 extra_params->button.backgroundColor; in GetNativeThemeExtraParams()
119 extra_params->textField.backgroundColor; in GetNativeThemeExtraParams()
131 extra_params->menuList.backgroundColor; in GetNativeThemeExtraParams()
/external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/resources/
Dwebviewbackgroundcolor.qml9 backgroundColor : "red"

123456