Home
last modified time | relevance | path

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

/external/webkit/JavaScriptCore/bytecode/
DOpcode.cpp68 long long rightValue = OpcodeStats::opcodeCounts[*(int*) right]; in compareOpcodeIndices() local
70 if (leftValue < rightValue) in compareOpcodeIndices()
72 else if (leftValue > rightValue) in compareOpcodeIndices()
83 long long rightValue = OpcodeStats::opcodePairCounts[rightPair.first][rightPair.second]; in compareOpcodePairIndices() local
85 if (leftValue < rightValue) in compareOpcodePairIndices()
87 else if (leftValue > rightValue) in compareOpcodePairIndices()
DSamplingTool.cpp260 …const ScriptSampleRecord* const rightValue = *static_cast<const ScriptSampleRecord* const *>(right… in compareScriptSampleRecords() local
262 …return (leftValue->m_sampleCount < rightValue->m_sampleCount) ? 1 : (leftValue->m_sampleCount > ri… in compareScriptSampleRecords()
/external/webkit/WebCore/css/
DCSSMutableStyleDeclaration.cpp263 RefPtr<CSSValue> rightValue = getPropertyCSSValue(properties[1]); in get4Values() local
268 if (!topValue || !rightValue || !bottomValue || !leftValue) in get4Values()
271 bool showLeft = rightValue->cssText() != leftValue->cssText(); in get4Values()
273 bool showRight = (topValue->cssText() != rightValue->cssText()) || showBottom; in get4Values()
277 res += " " + rightValue->cssText(); in get4Values()
/external/webkit/WebCore/rendering/
DRenderBox.cpp2115 int rightValue = right.calcValue(containerWidth); in calcAbsoluteHorizontalValues() local
2120 int availableWidth = availableSpace - rightValue; in calcAbsoluteHorizontalValues()
2122 leftValue = availableSpace - (widthValue + rightValue); in calcAbsoluteHorizontalValues()
2477 int rightValue = 0; in calcAbsoluteHorizontalReplaced() local
2484 rightValue = right.calcValue(containerWidth); in calcAbsoluteHorizontalReplaced()
2486 int difference = availableSpace - (leftValue + rightValue); in calcAbsoluteHorizontalReplaced()
2508 rightValue = right.calcValue(containerWidth); in calcAbsoluteHorizontalReplaced()
2511 leftValue = availableSpace - (rightValue + m_marginLeft + m_marginRight); in calcAbsoluteHorizontalReplaced()
2518 rightValue = availableSpace - (leftValue + m_marginLeft + m_marginRight); in calcAbsoluteHorizontalReplaced()
2522 rightValue = right.calcValue(containerWidth); in calcAbsoluteHorizontalReplaced()
[all …]
/external/guava/src/com/google/common/collect/
DMapDifference.java95 V rightValue(); in rightValue() method
DMaps.java302 V rightValue = onlyOnRight.remove(leftKey); in difference() local
303 if (Objects.equal(leftValue, rightValue)) { in difference()
308 leftValue, rightValue)); in difference()
412 public V rightValue() { in rightValue() method in Maps.ValueDifferenceImpl
421 && Objects.equal(this.right, that.rightValue()); in equals()