OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EColorInterpolation
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyle.h
64
static
EColorInterpolation
initialColorInterpolation() { return CI_SRGB; }
65
static
EColorInterpolation
initialColorInterpolationFilters() { return CI_LINEARRGB; }
134
void setColorInterpolation(
EColorInterpolation
val) { svg_inherited_flags._colorInterpolation = val; }
135
void setColorInterpolationFilters(
EColorInterpolation
val) { svg_inherited_flags._colorInterpolationFilters = val; }
311
EColorInterpolation
colorInterpolation() const { return (
EColorInterpolation
) svg_inherited_flags._colorInterpolation; }
312
EColorInterpolation
colorInterpolationFilters() const { return (
EColorInterpolation
) svg_inherited_flags._colorInterpolationFilters; }
399
unsigned _colorInterpolation : 2; //
EColorInterpolation
400
unsigned _colorInterpolationFilters : 2; //
EColorInterpolation
[
all
...]
SVGRenderStyleDefs.h
48
enum
EColorInterpolation
{
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
ReferenceFilterBuilder.cpp
79
EColorInterpolation
eColorInterpolation
= CI_AUTO;
82
eColorInterpolation
= svgStyle->colorInterpolationFilters();
89
eColorInterpolation
= (
EColorInterpolation
)primitiveValue;
95
switch (
eColorInterpolation
) {
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSPrimitiveValueMappings.h
[
all
...]
Completed in 257 milliseconds