HomeSort by relevance Sort by last modified time
    Searched refs:currentColor (Results 1 - 25 of 39) sorted by null

1 2

  /frameworks/support/v7/palette/src/android/support/v7/graphics/
ColorHistogram.java 79 int currentColor = pixels[0];
84 if (pixels[i] != currentColor) {
85 currentColor = pixels[i];
99 int currentColor = pixels[0];
101 mColors[currentColorIndex] = currentColor;
111 if (pixels[i] == currentColor) {
116 currentColor = pixels[i];
119 mColors[currentColorIndex] = currentColor;
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleColor.h 41 static StyleColor currentColor() { return StyleColor(); }
46 Color resolve(Color currentColor) const { return m_currentColor ? currentColor : m_color; }
CSSGradientValue.h 107 PassRefPtrWillBeRawPtr<CSSGradientValue> gradientWithStylesResolved(const TextLinkColors&, Color currentColor);
  /external/chromium_org/third_party/WebKit/Source/platform/
ColorChooserClient.h 50 virtual Color currentColor() = 0;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
AppliedTextDecoration.cpp 20 , m_color(StyleColor::currentColor())
27 , m_color(StyleColor::currentColor())
StyleRareInheritedData.h 67 StyleColor textStrokeColor() const { return m_textStrokeColorIsCurrentColor ? StyleColor::currentColor() : StyleColor(m_textStrokeColor); }
68 StyleColor textFillColor() const { return m_textFillColorIsCurrentColor ? StyleColor::currentColor() : StyleColor(m_textFillColor); }
69 StyleColor textEmphasisColor() const { return m_textEmphasisColorIsCurrentColor ? StyleColor::currentColor() : StyleColor(m_textEmphasisColor); }
70 StyleColor visitedLinkTextStrokeColor() const { return m_visitedLinkTextStrokeColorIsCurrentColor ? StyleColor::currentColor() : StyleColor(m_visitedLinkTextStrokeColor); }
71 StyleColor visitedLinkTextFillColor() const { return m_visitedLinkTextFillColorIsCurrentColor ? StyleColor::currentColor() : StyleColor(m_visitedLinkTextFillColor); }
72 StyleColor visitedLinkTextEmphasisColor() const { return m_visitedLinkTextEmphasisColorIsCurrentColor ? StyleColor::currentColor() : StyleColor(m_visitedLinkTextEmphasisColor); }
CachedUAStyle.h 49 , backgroundColor(StyleColor::currentColor())
BorderValue.h 87 StyleColor color() const { return m_colorIsCurrentColor ? StyleColor::currentColor() : StyleColor(m_color); }
CollapsedBorderValue.h 57 StyleColor color() const { return m_colorIsCurrentColor ? StyleColor::currentColor() : StyleColor(m_color); }
StyleMultiColData.cpp 33 , m_visitedLinkColumnRuleColor(StyleColor::currentColor())
StyleRareNonInheritedData.cpp 50 , m_textDecorationColor(StyleColor::currentColor())
51 , m_visitedLinkTextDecorationColor(StyleColor::currentColor())
53 , m_visitedLinkOutlineColor(StyleColor::currentColor())
54 , m_visitedLinkBorderLeftColor(StyleColor::currentColor())
55 , m_visitedLinkBorderRightColor(StyleColor::currentColor())
56 , m_visitedLinkBorderTopColor(StyleColor::currentColor())
57 , m_visitedLinkBorderBottomColor(StyleColor::currentColor())
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TextLinkColors.cpp 97 Color TextLinkColors::colorFromPrimitiveValue(const CSSPrimitiveValue* value, Color currentColor, bool forVisitedLink) const
116 return currentColor;
TextLinkColors.h 56 Color colorFromPrimitiveValue(const CSSPrimitiveValue*, Color currentColor, bool forVisitedLink = false) const;
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ElementStyleResources.h 55 PassRefPtr<StyleImage> styleImage(Document&, const TextLinkColors&, Color currentColor, CSSPropertyID, CSSValue*);
ElementStyleResources.cpp 40 PassRefPtr<StyleImage> ElementStyleResources::styleImage(Document& document, const TextLinkColors& textLinkColors, Color currentColor, CSSPropertyID property, CSSValue* value)
47 return generatedOrPendingFromValue(property, toCSSGradientValue(value)->gradientWithStylesResolved(textLinkColors, currentColor).get());
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
ColorInputType.h 50 virtual Color currentColor() OVERRIDE;
ColorInputType.cpp 224 Color ColorInputType::currentColor()
  /external/chromium_org/third_party/WebKit/Source/web/
ColorChooserUIController.cpp 90 this, static_cast<WebColor>(m_client->currentColor().rgb()), m_client->suggestions()));
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ViewLayerInvalidationActivity.java 31 int currentColor = Color.WHITE;
83 currentColor = (currentColor == Color.WHITE) ? Color.RED : Color.WHITE;
85 tv.setTextColor(currentColor);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPaint.cpp 48 return "currentColor";
54 return "url(" + m_uri + ") currentColor";
91 // FIXME: This branch catches the string currentColor, but we should error if we have an illegal color value.
92 return StyleColor::currentColor();
SVGAnimatedTypeAnimator.cpp 90 return SVGColorProperty::create(value.isEmpty() ? StyleColor::currentColor() : SVGPaint::colorFromRGBColorString(value));
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasStyle.h 53 bool isCurrentColor() const { return m_type == CurrentColor || m_type == CurrentColorWithOverrideAlpha; }
69 enum Type { RGBA, CMYKA, Gradient, ImagePattern, CurrentColor, CurrentColorWithOverrideAlpha };
100 RGBA32 currentColor(HTMLCanvasElement*);
CanvasStyle.cpp 47 if (equalIgnoringCase(colorString, "currentcolor"))
57 RGBA32 currentColor(HTMLCanvasElement* canvas)
74 parsedColor = currentColor(canvas);
136 return adoptRef(new CanvasStyle(CurrentColor));
192 case CurrentColor:
241 case CurrentColor:
268 case CurrentColor:
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskViewHeader.java 295 int currentColor = mBackgroundColor;
298 lightPrimaryColor, currentColor);
328 int currentColor = mBackgroundColor;
330 currentColor, mCurrentPrimaryColor);
  /prebuilts/sdk/current/support/v7/palette/libs/
android-support-v7-palette.jar 

Completed in 1000 milliseconds

1 2