Searched defs:backgroundColor (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DCachedUAStyle.h51 backgroundColor = style->backgroundColor();
57 Color backgroundColor; member in class:WebCore::CachedUAStyle
/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/chromium_org/third_party/WebKit/Source/platform/
H A DPopupMenuStyle.h55 const Color& backgroundColor() const { return m_backgroundColor; } function in class:WebCore::PopupMenuStyle
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DTestPlugin.h96 unsigned backgroundColor[3]; member in struct:WebTestRunner::TestPlugin::Scene
113 backgroundColor[0] = backgroundColor[1] = backgroundColor[2] = 0;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderThemeChromiumDefault.cpp313 extraParams.button.backgroundColor = useMockTheme() ? 0xffc0c0c0 : defaultButtonBackgroundColor;
315 extraParams.button.backgroundColor = o->resolveColor(CSSPropertyBackgroundColor).rgb();
337 Color backgroundColor = o->resolveColor(CSSPropertyBackgroundColor, Color::white); local
338 extraParams.textField.backgroundColor = backgroundColor.rgb();
359 Color backgroundColor(Color::transparent);
361 backgroundColor = o->resolveColor(CSSPropertyBackgroundColor);
362 extraParams.menuList.backgroundColor = backgroundColor.rgb();
369 extraParams.menuList.fillContentArea = !o->style()->hasBackgroundImage() && backgroundColor
[all...]
H A DRenderMenuList.cpp485 Color backgroundColor; local
487 backgroundColor = resolveColor(element->renderStyle(), CSSPropertyBackgroundColor);
488 itemHasCustomBackgroundColor = backgroundColor.isValid() && backgroundColor.alpha();
490 if (!backgroundColor.hasAlpha()) {
491 itemBackgroundColor = backgroundColor;
496 backgroundColor = resolveColor(CSSPropertyBackgroundColor).blend(backgroundColor);
497 if (!backgroundColor.hasAlpha()) {
498 itemBackgroundColor = backgroundColor;
[all...]
H A DRenderTreeAsText.cpp228 Color backgroundColor = o.resolveColor(CSSPropertyBackgroundColor); local
229 if (o.parent()->resolveColor(CSSPropertyBackgroundColor) != backgroundColor
230 && backgroundColor.isValid() && backgroundColor.rgb())
231 ts << " [bgcolor=" << backgroundColor.nameForRenderTreeAsText() << "]";
H A DCompositedLayerMapping.cpp1396 Color backgroundColor = rendererBackgroundColor(); local
1398 m_graphicsLayer->setContentsToSolidColor(backgroundColor);
1403 m_graphicsLayer->setBackgroundColor(backgroundColor);
H A DInlineTextBox.cpp327 Color correctedTextColor(Color textColor, Color backgroundColor) argument
332 int d = differenceSquared(textColor, backgroundColor);
H A DRenderObject.cpp1730 Color backgroundColor; local
1734 backgroundColor = resolveColor(pseudoStyle.get(), CSSPropertyBackgroundColor).blendWithWhite();
1736 backgroundColor = frame()->selection().isFocusedAndActive() ?
1742 return backgroundColor;
H A DRenderBox.cpp1336 Color backgroundColor = resolveColor(CSSPropertyBackgroundColor); local
1337 if (backgroundColor.isValid() && backgroundColor.alpha())
1351 Color backgroundColor = resolveColor(CSSPropertyBackgroundColor);
1352 if (!backgroundColor.isValid() || backgroundColor.hasAlpha())
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFallbackThemeEngine.h92 WebColor backgroundColor; member in struct:blink::WebFallbackThemeEngine::ButtonExtraParams
99 WebColor backgroundColor; member in struct:blink::WebFallbackThemeEngine::TextFieldExtraParams
108 WebColor backgroundColor; member in struct:blink::WebFallbackThemeEngine::MenuListExtraParams
/external/chromium_org/third_party/WebKit/public/platform/default/
H A DWebThemeEngine.h96 WebColor backgroundColor; member in struct:blink::WebThemeEngine::ButtonExtraParams
103 WebColor backgroundColor; member in struct:blink::WebThemeEngine::TextFieldExtraParams
113 WebColor backgroundColor; member in struct:blink::WebThemeEngine::MenuListExtraParams
/external/chromium_org/third_party/WebKit/public/web/
H A DWebWidget.h254 virtual WebColor backgroundColor() const { return 0xFFFFFFFF; /* SK_ColorWHITE */ } function in class:blink::WebWidget
/external/chromium_org/ui/message_center/views/
H A Dbounded_label.cc276 void BoundedLabel::SetColors(SkColor textColor, SkColor backgroundColor) { argument
278 label_->SetBackgroundColor(backgroundColor);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrame.cpp451 void Frame::createView(const IntSize& viewportSize, const Color& backgroundColor, bool transparent, argument
478 if (backgroundColor.isValid())
479 frameView->updateBackgroundRecursively(backgroundColor, transparent);
604 , backgroundColor(frame->view()->baseBackgroundColor())
616 frame->view()->setBaseBackgroundColor(backgroundColor);
623 Color backgroundColor; member in struct:WebCore::ScopedFramePaintingState
H A DFrameView.cpp371 Color backgroundColor = documentBackgroundColor(); local
372 if (backgroundColor.isValid()) {
377 backgroundColor.getHSL(hue, saturation, lightness);
2147 void FrameView::setBaseBackgroundColor(const Color& backgroundColor) argument
2149 if (!backgroundColor.isValid())
2152 m_baseBackgroundColor = backgroundColor;
2163 void FrameView::updateBackgroundRecursively(const Color& backgroundColor, bool transparent) argument
2168 view->setBaseBackgroundColor(backgroundColor);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGInlineTextBox.cpp209 Color backgroundColor = renderer()->selectionBackgroundColor();
210 if (!backgroundColor.isValid() || !backgroundColor.alpha())
249 paintInfo.context->setFillColor(backgroundColor);
250 paintInfo.context->fillRect(selectionRectForTextFragment(fragment, fragmentStartPosition, fragmentEndPosition, style), backgroundColor); local
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsLayer.h188 const Color& backgroundColor() const { return m_backgroundColor; } function in class:WebCore::GraphicsLayer
H A DGraphicsContext.cpp1057 void GraphicsContext::drawHighlightForText(const Font& font, const TextRun& run, const FloatPoint& point, int h, const Color& backgroundColor, int from, int to) argument
1062 fillRect(font.selectionRectForText(run, point, h, from, to), backgroundColor);
/external/chromium_org/ui/native_theme/
H A Dnative_theme_base.cc269 SkColor backgroundColor = buttonColor; local
284 paint.setColor(backgroundColor);
/external/chromium_org/webkit/renderer/compositor_bindings/
H A Dweb_layer_impl.cc185 WebColor WebLayerImpl::backgroundColor() const { function in class:webkit::WebLayerImpl
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowView.java70 private int backgroundColor; field in class:ShadowView
266 backgroundColor = color;
276 return backgroundColor;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DCodeMirrorTextEditor.js355 var backgroundColor = WebInspector.getSelectionBackgroundColor(); variable
356 var backgroundColorRule = backgroundColor ? ".CodeMirror .CodeMirror-selected { background-color: " + backgroundColor + ";}" : "";
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebViewImpl.cpp2452 WebColor WebViewImpl::backgroundColor() const function in class:WebViewImpl
2461 Color backgroundColor = view->documentBackgroundColor(); local
2462 if (!backgroundColor.isValid())
2464 return backgroundColor.rgb();
4083 m_layerTreeView->setBackgroundColor(m_backgroundColorOverride != Color::transparent ? m_backgroundColorOverride : backgroundColor());

Completed in 3026 milliseconds

12