OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cssCalcValue
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableLength.cpp
45
const
CSSCalcValue
* calcValue = primitiveValue->
cssCalcValue
();
67
if (primitiveValue->
cssCalcValue
())
138
return
CSSCalcValue
::createExpressionNode(toCSSPrimitiveValue(AllValues), m_number == trunc(m_number));
147
return primitiveValue->
cssCalcValue
()->permittedValueRange() == ValueRangeNonNegative;
155
m_cachedCSSPrimitiveValue = CSSPrimitiveValue::create(
CSSCalcValue
::create(m_calcExpression, range == AllValues ? ValueRangeAll : ValueRangeNonNegative));
165
return AnimatableLength::create(
CSSCalcValue
::createExpressionNode(
167
CSSCalcValue
::createExpressionNode(CSSPrimitiveValue::create(factor, CSSPrimitiveValue::CSS_NUMBER)),
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSPrimitiveValue.h
36
class
CSSCalcValue
;
303
CSSCalcValue
*
cssCalcValue
() const { return m_primitiveUnitType != CSS_CALC ? 0 : m_value.calc; }
366
void init(PassRefPtr<
CSSCalcValue
>);
383
CSSCalcValue
* calc;
CSSPrimitiveValue.cpp
300
init(
CSSCalcValue
::create(length.calculationValue(), zoom));
403
void CSSPrimitiveValue::init(PassRefPtr<
CSSCalcValue
> c)
[
all
...]
CSSGradientValue.cpp
190
length = stop.m_position->
cssCalcValue
()->toCalcValue(conversionData)->evaluate(gradientLength);
401
return value->
cssCalcValue
()->toCalcValue(conversionData)->evaluate(edgeDistance);
[
all
...]
CSSPrimitiveValueMappings.h
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FontBuilder.cpp
332
size = primitiveValue->
cssCalcValue
()->toCalcValue(CSSToLengthConversionData(parentStyle, rootElementStyle, 1.0f))->evaluate(parentSize);
StyleBuilderCustom.cpp
289
Length zoomedLength = Length(primitiveValue->
cssCalcValue
()->toCalcValue(state.cssToLengthConversionData().copyWithAdjustedZoom(multiplier)));
[
all
...]
Completed in 68 milliseconds