OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:m_leftSide
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/
CalculationValue.h
176
:
m_leftSide
(leftSide)
185
return m_operator == o.m_operator && *
m_leftSide
== *o.
m_leftSide
&& *m_rightSide == *o.m_rightSide;
195
const CalcExpressionNode* leftSide() const { return
m_leftSide
.get(); }
203
OwnPtr<CalcExpressionNode>
m_leftSide
;
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSCalculationValue.cpp
425
OwnPtr<CalcExpressionNode> left(
m_leftSide
->toCalcValue(conversionData));
436
return evaluate(
m_leftSide
->doubleValue(), m_rightSide->doubleValue());
441
const double leftValue =
m_leftSide
->computeLengthPx(conversionData);
462
return buildCSSText(
m_leftSide
->customCSSText(), m_rightSide->customCSSText(), m_operator);
467
return buildCSSText(
m_leftSide
->serializeResolvingVariables(variables), m_rightSide->serializeResolvingVariables(variables), m_operator);
472
return
m_leftSide
->hasVariableReference() || m_rightSide->hasVariableReference();
481
return compareCSSValuePtr(
m_leftSide
, other.
m_leftSide
)
492
ASSERT(
m_leftSide
->category() == CalcNumber && m_rightSide->category() == CalcNumber);
498
if (
m_leftSide
->category() == CalcNumber
[
all
...]
Completed in 70 milliseconds