OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CalcExpressionLength
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/
CalculationValue.h
138
class PLATFORM_EXPORT
CalcExpressionLength
: public CalcExpressionNode {
140
explicit
CalcExpressionLength
(Length length)
146
bool operator==(const
CalcExpressionLength
& o) const
153
return type() == o.type() && *this == static_cast<const
CalcExpressionLength
&>(o);
167
inline const
CalcExpressionLength
* toCalcExpressionLength(const CalcExpressionNode* value)
170
return static_cast<const
CalcExpressionLength
*>(value);
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSCalculationValueTest.cpp
71
adoptPtr(new
CalcExpressionLength
(Length(10, WebCore::Fixed))),
72
adoptPtr(new
CalcExpressionLength
(Length(20, WebCore::Fixed))),
85
adoptPtr(new
CalcExpressionLength
(Length(30, WebCore::Fixed))),
CSSCalculationValue.cpp
232
return adoptPtr(new
CalcExpressionLength
(Length(m_value->computeLength<float>(conversionData), WebCore::Fixed)));
236
return adoptPtr(new
CalcExpressionLength
(primitiveValue
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableLengthTest.cpp
185
adoptPtr(new
CalcExpressionLength
(Length(-5, WebCore::Fixed))),
186
adoptPtr(new
CalcExpressionLength
(Length(-5, Percent))),
193
adoptPtr(new
CalcExpressionLength
(Length(-15, WebCore::Fixed))),
194
adoptPtr(new
CalcExpressionLength
(Length(-5, Percent))),
201
adoptPtr(new
CalcExpressionLength
(Length(-5, WebCore::Fixed))),
202
adoptPtr(new
CalcExpressionLength
(Length(-5, Percent))),
209
adoptPtr(new
CalcExpressionLength
(Length(-15, WebCore::Fixed))),
210
adoptPtr(new
CalcExpressionLength
(Length(-5, Percent))),
Completed in 51 milliseconds