Searched refs:leftValue (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DOpcode.cpp68 long long leftValue = OpcodeStats::opcodeCounts[*(int*) left]; local
71 if (leftValue < rightValue)
73 else if (leftValue > rightValue)
82 long long leftValue = OpcodeStats::opcodePairCounts[leftPair.first][leftPair.second]; local
86 if (leftValue < rightValue)
88 else if (leftValue > rightValue)
H A DSamplingTool.cpp348 const ScriptSampleRecord* const leftValue = *static_cast<const ScriptSampleRecord* const *>(left); local
351 return (leftValue->m_sampleCount < rightValue->m_sampleCount) ? 1 : (leftValue->m_sampleCount > rightValue->m_sampleCount) ? -1 : 0;
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSCalculationValue.cpp323 const double leftValue = m_leftSide->computeLengthPx(currentStyle, rootStyle, multiplier, computingFontSize); local
325 return evaluate(leftValue, rightValue);
381 double evaluate(double leftValue, double rightValue) const argument
385 return leftValue + rightValue;
387 return leftValue - rightValue;
389 return leftValue * rightValue;
392 return leftValue / rightValue;
H A DCSSComputedStyleDeclaration.cpp3004 RefPtr<CSSValue> leftValue = propertyValue(shorthand.properties()[3], DoNotUpdateLayout); local
3007 if (!topValue || !rightValue || !bottomValue || !leftValue)
3010 bool showLeft = !compareCSSValuePtr(rightValue, leftValue);
3020 list->append(leftValue.release());

Completed in 97 milliseconds