Home
last modified time | relevance | path

Searched refs:currentColor (Results 1 – 19 of 19) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DStyleColor.h50 StyleColor(RGBA32 color, bool valid = true, bool currentColor = false)
53 , m_currentColor(currentColor) { } in m_color()
89 static const StyleColor currentColor() in currentColor() function
95 StyleColor(bool invalid, bool currentColor) in StyleColor() argument
98 , m_currentColor(currentColor) { } in StyleColor()
DSVGCSSValueKeywords.in169 //currentColor
173 //currentColor
196 //currentColor
DCSSGradientValue.h89 …PassRefPtr<CSSGradientValue> gradientWithStylesResolved(const TextLinkColors&, Color currentColor);
DCSSGradientValue.cpp109 …GradientValue::gradientWithStylesResolved(const TextLinkColors& textLinkColors, Color currentColor) in gradientWithStylesResolved() argument
132 …lvedColor = textLinkColors.colorFromPrimitiveValue(result->m_stops[i].m_color.get(), currentColor); in gradientWithStylesResolved()
/external/jmonkeyengine/engine/src/test/jme3test/material/
DTestColoredTexture.java77 ColorRGBA currentColor = new ColorRGBA(); in simpleUpdate() local
78 currentColor.interpolate(prevColor, nextColor, time); in simpleUpdate()
80 mat.setColor("Color", currentColor); in simpleUpdate()
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGAnimateColorElement.cpp45 …DEFINE_STATIC_LOCAL(const AtomicString, currentColor, ("currentColor", AtomicString::ConstructFrom… in attributeValueIsCurrentColor()
46 return value == currentColor; in attributeValueIsCurrentColor()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DTextLinkColors.cpp97 Color TextLinkColors::colorFromPrimitiveValue(const CSSPrimitiveValue* value, Color currentColor, b… in colorFromPrimitiveValue() argument
115 return currentColor; in colorFromPrimitiveValue()
DTextLinkColors.h56 …Color colorFromPrimitiveValue(const CSSPrimitiveValue*, Color currentColor, bool forVisitedLink = …
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DElementStyleResources.cpp41 …tyleResources::styleImage(const TextLinkColors& textLinkColors, Color currentColor, CSSPropertyID … in styleImage() argument
48 …operty, toCSSGradientValue(value)->gradientWithStylesResolved(textLinkColors, currentColor).get()); in styleImage()
DElementStyleResources.h53 …PassRefPtr<StyleImage> styleImage(const TextLinkColors&, Color currentColor, CSSPropertyID, CSSVal…
/external/chromium_org/third_party/WebKit/Source/platform/
DColorChooserClient.h51 virtual Color currentColor() = 0;
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DCanvasStyle.cpp56 RGBA32 currentColor(HTMLCanvasElement* canvas) in currentColor() function
73 parsedColor = currentColor(canvas); in parseColorOrCurrentColor()
DCanvasStyle.h101 RGBA32 currentColor(HTMLCanvasElement*);
DCanvasRenderingContext2D.cpp281 …style = CanvasStyle::createFromRGBA(colorWithOverrideAlpha(currentColor(canvas()), style->override… in setStrokeStyle()
283 style = CanvasStyle::createFromRGBA(currentColor(canvas())); in setStrokeStyle()
313 …style = CanvasStyle::createFromRGBA(colorWithOverrideAlpha(currentColor(canvas()), style->override… in setFillStyle()
315 style = CanvasStyle::createFromRGBA(currentColor(canvas())); in setFillStyle()
/external/chromium_org/third_party/WebKit/Source/web/
DColorChooserUIController.cpp90 this, static_cast<WebColor>(m_client->currentColor().rgb()), m_client->suggestions())); in openColorChooser()
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DColorInputType.h48 virtual Color currentColor() OVERRIDE;
DColorInputType.cpp220 Color ColorInputType::currentColor() in currentColor() function in WebCore::ColorInputType
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DRenderStyle.h225 && currentColor == other.currentColor
254 unsigned currentColor : 1; // At least one color has the value 'currentColor' member
319 noninherited_flags.currentColor = false; in setBitDefaults()
1513 void setHasCurrentColor() { noninherited_flags.currentColor = true; } in setHasCurrentColor()
1514 bool hasCurrentColor() const { return noninherited_flags.currentColor; } in hasCurrentColor()
DRenderStyle.cpp235 noninherited_flags.currentColor = other->noninherited_flags.currentColor; in copyNonInheritedFrom()