Home
last modified time | relevance | path

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

/external/webkit/Source/JavaScriptCore/bytecode/
DOpcode.cpp72 long long leftValue = OpcodeStats::opcodeCounts[*(int*) left]; in compareOpcodeIndices() local
75 if (leftValue < rightValue) in compareOpcodeIndices()
77 else if (leftValue > rightValue) in compareOpcodeIndices()
86 long long leftValue = OpcodeStats::opcodePairCounts[leftPair.first][leftPair.second]; in compareOpcodePairIndices() local
90 if (leftValue < rightValue) in compareOpcodePairIndices()
92 else if (leftValue > rightValue) in compareOpcodePairIndices()
DSamplingTool.cpp259 … const ScriptSampleRecord* const leftValue = *static_cast<const ScriptSampleRecord* const *>(left); in compareScriptSampleRecords() local
262 …return (leftValue->m_sampleCount < rightValue->m_sampleCount) ? 1 : (leftValue->m_sampleCount > ri… in compareScriptSampleRecords()
/external/skia/tools/
Dskdiff.h215 float leftValue = MAX3(lhs->fAverageMismatchR, in comparePixels() local
221 if (leftValue < rightValue) { in comparePixels()
224 if (rightValue < leftValue) { in comparePixels()
236 uint32_t leftValue = MAX3(lhs->fMaxMismatchR, in comparePixels() local
242 if (leftValue < rightValue) { in comparePixels()
245 if (rightValue < leftValue) { in comparePixels()
/external/guava/guava/src/com/google/common/collect/
DMapDifference.java94 V leftValue(); in leftValue() method
DMaps.java363 V leftValue = entry.getValue(); in difference() local
366 if (valueEquivalence.equivalent(leftValue, rightValue)) { in difference()
367 onBoth.put(leftKey, leftValue); in difference()
371 leftKey, ValueDifferenceImpl.create(leftValue, rightValue)); in difference()
375 onlyOnLeft.put(leftKey, leftValue); in difference()
489 public V leftValue() { in leftValue() method in Maps.ValueDifferenceImpl
502 return Objects.equal(this.left, that.leftValue()) in equals()
552 V leftValue = entry.getValue(); in difference() local
555 if (Objects.equal(leftValue, rightValue)) { in difference()
556 onBoth.put(leftKey, leftValue); in difference()
[all …]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DMaps.java360 V leftValue = entry.getValue(); in difference() local
363 if (valueEquivalence.equivalent(leftValue, rightValue)) { in difference()
364 onBoth.put(leftKey, leftValue); in difference()
368 leftKey, ValueDifferenceImpl.create(leftValue, rightValue)); in difference()
372 onlyOnLeft.put(leftKey, leftValue); in difference()
486 public V leftValue() { in leftValue() method in Maps.ValueDifferenceImpl
499 return Objects.equal(this.left, that.leftValue()) in equals()
549 V leftValue = entry.getValue(); in difference() local
552 if (Objects.equal(leftValue, rightValue)) { in difference()
553 onBoth.put(leftKey, leftValue); in difference()
[all …]
/external/webkit/Source/WebCore/css/
DCSSMutableStyleDeclaration.cpp290 RefPtr<CSSValue> leftValue = getPropertyCSSValue(properties[3]); in get4Values() local
293 if (!topValue || !rightValue || !bottomValue || !leftValue) in get4Values()
296 bool showLeft = rightValue->cssText() != leftValue->cssText(); in get4Values()
306 res += " " + leftValue->cssText(); in get4Values()
/external/webkit/Source/WebCore/
DChangeLog-2006-12-3154719 (WebCore::RenderBox::calcAbsoluteHorizontalValues): Initialize leftValue.