Searched refs:rightValue (Results 1 - 7 of 7) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DOpcode.cpp69 long long rightValue = OpcodeStats::opcodeCounts[*(int*) right]; local
71 if (leftValue < rightValue)
73 else if (leftValue > rightValue)
84 long long rightValue = OpcodeStats::opcodePairCounts[rightPair.first][rightPair.second]; local
86 if (leftValue < rightValue)
88 else if (leftValue > rightValue)
H A DSamplingTool.cpp349 const ScriptSampleRecord* const rightValue = *static_cast<const ScriptSampleRecord* const *>(right); 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/bindings/scripts/
H A Dgenerate-bindings.pl234 foreach my $rightValue (split /\|/, $2) {
235 $rightValue =~ s/^\s*|\s*$//g;
236 $rightValue = "VALUE_IS_MISSING" unless $rightValue;
237 $idlAttributes{$name}{$rightValue} = 1;
288 for my $rightValue (split /\s*\|\s*/, $extendedAttributes->{$name}) {
289 if (!exists $idlAttributes->{$name}{$rightValue}) {
H A DIDLParser.pm1657 my $rightValue = $self->parseScopedName();
1658 return $name . "&" . $rightValue;
1662 my $rightValue = $self->parseScopedName();
1663 return $name . "|" . $rightValue;
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSCalculationValue.cpp324 const double rightValue = m_rightSide->computeLengthPx(currentStyle, rootStyle, multiplier, computingFontSize); local
325 return evaluate(leftValue, rightValue);
381 double evaluate(double leftValue, double rightValue) const
385 return leftValue + rightValue;
387 return leftValue - rightValue;
389 return leftValue * rightValue;
391 if (rightValue)
392 return leftValue / rightValue;
H A DCSSComputedStyleDeclaration.cpp3002 RefPtr<CSSValue> rightValue = propertyValue(shorthand.properties()[1], DoNotUpdateLayout); local
3007 if (!topValue || !rightValue || !bottomValue || !leftValue)
3010 bool showLeft = !compareCSSValuePtr(rightValue, leftValue);
3012 bool showRight = !compareCSSValuePtr(topValue, rightValue) || showBottom;
3016 list->append(rightValue.release());
/macosx-10.9.5/securityd-55199.3/src/
H A DAuthorizationRule.cpp485 AuthValueRef rightValue(rightNameSize, const_cast<char *>(rightName));
487 authValueVector.push_back(rightValue);
962 AuthValueRef rightValue(rightNameSize, const_cast<char *>(rightName));
964 authValueVector.push_back(rightValue);

Completed in 104 milliseconds