OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isSetFromShorthand
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSProperty.h
35
StylePropertyMetadata(CSSPropertyID propertyID, bool
isSetFromShorthand
, int indexInShorthandsVector, bool important, bool implicit, bool inherited)
37
, m_isSetFromShorthand(
isSetFromShorthand
)
57
CSSProperty(CSSPropertyID propertyID, PassRefPtr<CSSValue> value, bool important = false, bool
isSetFromShorthand
= false, int indexInShorthandsVector = 0, bool implicit = false)
58
: m_metadata(propertyID,
isSetFromShorthand
, indexInShorthandsVector, important, implicit, isInheritedProperty(propertyID))
73
bool
isSetFromShorthand
() const { return m_metadata.m_isSetFromShorthand; };
StylePropertySet.cpp
273
if (!property.
isSetFromShorthand
())
311
m_propertyVector.append(CSSProperty(prefixingVariant, property.value(), property.isImportant(), property.
isSetFromShorthand
(), getIndexInShorthandVectorForPrefixingVariant(property, prefixingVariant), property.metadata().m_implicit));
319
*toReplace = CSSProperty(prefixingVariant, property.value(), property.isImportant(), property.
isSetFromShorthand
(), getIndexInShorthandVectorForPrefixingVariant(property, prefixingVariant), property.metadata().m_implicit);
Completed in 53 milliseconds