OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cssvalueid
(Results
1 - 25
of
49
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/core/dom/
TextLinkColors.cpp
60
static Color colorForCSSValue(
CSSValueID
cssValueId
)
63
CSSValueID
cssValueId
;
90
for (const ColorValue* col = colorValues; col->
cssValueId
; ++col) {
91
if (col->
cssValueId
==
cssValueId
)
94
return RenderTheme::theme().systemColor(
cssValueId
);
102
CSSValueID
valueID = value->getValueID();
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumAndroid.cpp
61
Color RenderThemeChromiumAndroid::systemColor(
CSSValueID
cssValueId
) const
63
if (isRunningLayoutTest() &&
cssValueId
== CSSValueButtonface) {
68
return RenderTheme::systemColor(
cssValueId
);
RenderThemeChromiumFontProvider.h
41
static void systemFont(
CSSValueID
, FontDescription&);
RenderThemeChromiumAndroid.h
38
virtual Color systemColor(
CSSValueID
) const OVERRIDE;
RenderThemeChromiumFontProviderLinux.cpp
44
void RenderThemeChromiumFontProvider::systemFont(
CSSValueID
valueID, FontDescription& fontDescription)
RenderThemeChromiumDefault.h
41
virtual Color systemColor(
CSSValueID
) const;
RenderThemeChromiumWin.h
60
virtual Color systemColor(
CSSValueID
) const OVERRIDE;
RenderThemeChromiumMac.h
62
virtual void systemFont(
CSSValueID
, FontDescription&) const OVERRIDE;
89
virtual Color systemColor(
CSSValueID
) const OVERRIDE;
RenderThemeChromiumWin.cpp
221
static int cssValueIdToSysColorIndex(int
cssValueId
)
223
switch (
cssValueId
) {
256
Color RenderThemeChromiumWin::systemColor(
CSSValueID
cssValueId
) const
258
int sysColorIndex = cssValueIdToSysColorIndex(
cssValueId
);
260
return RenderTheme::systemColor(
cssValueId
);
RenderThemeChromiumDefault.cpp
113
Color RenderThemeChromiumDefault::systemColor(
CSSValueID
cssValueId
) const
118
if (
cssValueId
== CSSValueButtonface) {
123
if (
cssValueId
== CSSValueMenu)
125
return RenderTheme::systemColor(
cssValueId
);
RenderThemeChromiumFontProviderWin.cpp
122
void RenderThemeChromiumFontProvider::systemFont(
CSSValueID
valueID, FontDescription& fontDescription)
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleBuilderConverter.h
55
template <
CSSValueID
IdForNone> static AtomicString convertString(StyleResolverState&, CSSValue*);
69
CSSValueID
valueID = primitiveValue->getValueID();
93
template <
CSSValueID
IdForNone>
FontBuilder.h
52
void fromSystemFont(
CSSValueID
, float effectiveZoom);
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableUnknown.h
48
static PassRefPtr<AnimatableUnknown> create(
CSSValueID
value)
54
CSSValueID
toCSSValueID() const { return toCSSPrimitiveValue(m_value.get())->getValueID(); }
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFontElement.h
35
static bool cssValueFromFontSizeNumber(const String&,
CSSValueID
&);
HTMLFontElement.cpp
145
bool HTMLFontElement::cssValueFromFontSizeNumber(const String& s,
CSSValueID
& size)
190
CSSValueID
size = CSSValueInvalid;
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTCue.h
110
CSSValueID
getCSSAlignment() const;
112
CSSValueID
getCSSWritingDirection() const;
113
CSSValueID
getCSSWritingMode() const;
180
CSSValueID
m_displayDirection;
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSValuePool.h
50
PassRefPtr<CSSPrimitiveValue> createIdentifierValue(
CSSValueID
identifier);
Counter.h
40
CSSValueID
listStyleIdent() const { return m_listStyle ? m_listStyle->getValueID() : CSSValueInvalid; }
CSSParser.h
111
PassRefPtr<CSSPrimitiveValue> parseValidPrimitive(
CSSValueID
ident, CSSParserValue*);
274
static bool isBlendMode(
CSSValueID
);
275
static bool isCompositeOperator(
CSSValueID
);
628
CSSValueID
cssValueKeywordID(const CSSParserString&);
CSSPrimitiveValue.h
201
static PassRefPtr<CSSPrimitiveValue> createIdentifier(
CSSValueID
valueID) { return adoptRef(new CSSPrimitiveValue(valueID)); }
306
CSSValueID
getValueID() const { return m_primitiveUnitType == CSS_VALUE_ID ? m_value.valueID : CSSValueInvalid; }
329
CSSPrimitiveValue(
CSSValueID
);
373
CSSValueID
valueID;
CSSValuePool.cpp
51
PassRefPtr<CSSPrimitiveValue> CSSValuePool::createIdentifierValue(
CSSValueID
ident)
/external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.h
235
CSSValueID
getIdentifierValue(CSSStyleDeclaration*, CSSPropertyID);
236
CSSValueID
getIdentifierValue(StylePropertySet*, CSSPropertyID);
EditingStyle.cpp
155
static PassOwnPtr<HTMLElementEquivalent> create(CSSPropertyID propertyID,
CSSValueID
primitiveValue, const QualifiedName& tagName)
170
HTMLElementEquivalent(CSSPropertyID,
CSSValueID
primitiveValue, const QualifiedName& tagName);
188
HTMLElementEquivalent::HTMLElementEquivalent(CSSPropertyID id,
CSSValueID
primitiveValue, const QualifiedName& tagName)
209
static PassOwnPtr<HTMLElementEquivalent> create(
CSSValueID
primitiveValue, const QualifiedName& tagName)
217
HTMLTextDecorationEquivalent(
CSSValueID
primitiveValue, const QualifiedName& tagName);
220
HTMLTextDecorationEquivalent::HTMLTextDecorationEquivalent(
CSSValueID
primitiveValue, const QualifiedName& tagName)
324
CSSValueID
size;
541
CSSValueID
unicodeBidiValue = toCSSPrimitiveValue(unicodeBidi.get())->getValueID();
[
all
...]
/external/chromium_org/third_party/WebKit/Source/build/scripts/
make_css_value_keywords.py
24
enum
CSSValueID
{
Completed in 794 milliseconds
1
2