Home
last modified time | relevance | path

Searched refs:rightValue (Results 1 – 8 of 8) sorted by relevance

/external/skia/tools/
Dskdiff.h218 float rightValue = MAX3(rhs->fAverageMismatchR, in comparePixels() local
221 if (leftValue < rightValue) { in comparePixels()
224 if (rightValue < leftValue) { in comparePixels()
239 uint32_t rightValue = MAX3(rhs->fMaxMismatchR, in comparePixels() local
242 if (leftValue < rightValue) { in comparePixels()
245 if (rightValue < leftValue) { in comparePixels()
/external/chromium_org/third_party/skia/tools/
Dskdiff.h218 float rightValue = MAX3(rhs->fAverageMismatchR, in comparePixels() local
221 if (leftValue < rightValue) { in comparePixels()
224 if (rightValue < leftValue) { in comparePixels()
239 uint32_t rightValue = MAX3(rhs->fMaxMismatchR, in comparePixels() local
242 if (leftValue < rightValue) { in comparePixels()
245 if (rightValue < leftValue) { in comparePixels()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSCalculationValue.cpp378 …double rightValue = rightSide->doubleValue() * CSSPrimitiveValue::conversionToCanonicalUnitsScaleF… in createSimplified() local
379 …return CSSCalcPrimitiveValue::create(evaluateOperator(leftValue, rightValue, op), canonicalType, i… in createSimplified()
448 const double rightValue = m_rightSide->computeLengthPx(conversionData); in computeLengthPx() local
449 return evaluate(leftValue, rightValue); in computeLengthPx()
573 static double evaluateOperator(double leftValue, double rightValue, CalcOperator op) in evaluateOperator() argument
577 return leftValue + rightValue; in evaluateOperator()
579 return leftValue - rightValue; in evaluateOperator()
581 return leftValue * rightValue; in evaluateOperator()
583 if (rightValue) in evaluateOperator()
584 return leftValue / rightValue; in evaluateOperator()
DCSSComputedStyleDeclaration.cpp2882 …RefPtrWillBeRawPtr<CSSValue> rightValue = getPropertyCSSValue(shorthand.properties()[1], DoNotUpda… in valuesForSidesShorthand() local
2887 if (!topValue || !rightValue || !bottomValue || !leftValue) in valuesForSidesShorthand()
2890 bool showLeft = !compareCSSValuePtr(rightValue, leftValue); in valuesForSidesShorthand()
2892 bool showRight = !compareCSSValuePtr(topValue, rightValue) || showBottom; in valuesForSidesShorthand()
2896 list->append(rightValue.release()); in valuesForSidesShorthand()
/external/guava/guava/src/com/google/common/collect/
DMapDifference.java99 V rightValue(); in rightValue() method
DMaps.java365 V rightValue = onlyOnRight.remove(leftKey); in difference() local
366 if (valueEquivalence.equivalent(leftValue, rightValue)) { in difference()
371 leftKey, ValueDifferenceImpl.create(leftValue, rightValue)); in difference()
494 public V rightValue() { in rightValue() method in Maps.ValueDifferenceImpl
503 && Objects.equal(this.right, that.rightValue()); in equals()
554 V rightValue = onlyOnRight.remove(leftKey); in difference() local
555 if (Objects.equal(leftValue, rightValue)) { in difference()
560 leftKey, ValueDifferenceImpl.create(leftValue, rightValue)); in difference()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DMaps.java362 V rightValue = onlyOnRight.remove(leftKey); in difference() local
363 if (valueEquivalence.equivalent(leftValue, rightValue)) { in difference()
368 leftKey, ValueDifferenceImpl.create(leftValue, rightValue)); in difference()
491 public V rightValue() { in rightValue() method in Maps.ValueDifferenceImpl
500 && Objects.equal(this.right, that.rightValue()); in equals()
551 V rightValue = onlyOnRight.remove(leftKey); in difference() local
552 if (Objects.equal(leftValue, rightValue)) { in difference()
557 leftKey, ValueDifferenceImpl.create(leftValue, rightValue)); in difference()
/external/chromium_org/third_party/WebKit/Source/core/animation/
DKeyframeEffectModelTest.cpp348 Interpolation* rightValue = findValue(*values.get(), CSSPropertyRight); in TEST() local
349 ASSERT_TRUE(rightValue); in TEST()
350 expectDoubleValue(6.0, rightValue); in TEST()