Searched refs:colorValues (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTextLinkColors.cpp67 static const ColorValue colorValues[] = { local
90 for (const ColorValue* col = colorValues; col->cssValueId; ++col) {
/external/chromium_org/third_party/skia/src/utils/
H A DSkTextureCompressor_ASTC.cpp1233 void colorEndpoints(SkColor endpoints[4][2], const int* colorValues) const {
1237 const int* v = colorValues;
1241 colorValues += 2;
1246 const int* v = colorValues;
1253 colorValues += 2;
1258 const int* v = colorValues;
1263 colorValues += 4;
1268 int v0 = colorValues[0];
1269 int v1 = colorValues[1];
1270 int v2 = colorValues[
1969 int colorValues[kMaxColorValues]; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.h180 bool parseColorParameters(CSSParserValue*, int* colorValues, bool parseAlpha);
181 bool parseHSLParameters(CSSParserValue*, double* colorValues, bool parseAlpha);
H A DCSSPropertyParser.cpp5280 int colorValues[3]; local
5281 if (!parseColorParameters(value, colorValues, false))
5283 c = makeRGB(colorValues[0], colorValues[1], colorValues[2]);
5289 int colorValues[4]; local
5290 if (!parseColorParameters(value, colorValues, true))
5292 c = makeRGBA(colorValues[0], colorValues[1], colorValues[
5297 double colorValues[3]; local
5305 double colorValues[4]; local
[all...]

Completed in 659 milliseconds