Home
last modified time | relevance | path

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

/external/webkit/JavaScriptCore/bytecode/
DOpcode.cpp67 long long leftValue = OpcodeStats::opcodeCounts[*(int*) left]; in compareOpcodeIndices() local
70 if (leftValue < rightValue) in compareOpcodeIndices()
72 else if (leftValue > rightValue) in compareOpcodeIndices()
81 long long leftValue = OpcodeStats::opcodePairCounts[leftPair.first][leftPair.second]; in compareOpcodePairIndices() local
85 if (leftValue < rightValue) in compareOpcodePairIndices()
87 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/webkit/WebCore/rendering/
DRenderBox.cpp2003 int leftValue = 0; in calcAbsoluteHorizontalValues() local
2025 leftValue = left.calcValue(containerWidth); in calcAbsoluteHorizontalValues()
2028 …const int availableSpace = containerWidth - (leftValue + widthValue + right.calcValue(containerWid… in calcAbsoluteHorizontalValues()
2061 leftValue = (availableSpace + leftValue) - marginLeftValue - marginRightValue; in calcAbsoluteHorizontalValues()
2122 leftValue = availableSpace - (widthValue + rightValue); in calcAbsoluteHorizontalValues()
2125 leftValue = left.calcValue(containerWidth); in calcAbsoluteHorizontalValues()
2130 int availableWidth = availableSpace - leftValue; in calcAbsoluteHorizontalValues()
2135 leftValue = availableSpace - (widthValue + right.calcValue(containerWidth)); in calcAbsoluteHorizontalValues()
2138 leftValue = left.calcValue(containerWidth); in calcAbsoluteHorizontalValues()
2139 widthValue = availableSpace - (leftValue + right.calcValue(containerWidth)); in calcAbsoluteHorizontalValues()
[all …]
/external/guava/src/com/google/common/collect/
DMaps.java300 V leftValue = entry.getValue(); in difference() local
303 if (Objects.equal(leftValue, rightValue)) { in difference()
304 onBoth.put(leftKey, leftValue); in difference()
308 leftValue, rightValue)); in difference()
312 onlyOnLeft.put(leftKey, leftValue); in difference()
408 public V leftValue() { in leftValue() method in Maps.ValueDifferenceImpl
420 return Objects.equal(this.left, that.leftValue()) in equals()
DMapDifference.java90 V leftValue(); in leftValue() method
/external/webkit/WebCore/css/
DCSSMutableStyleDeclaration.cpp265 RefPtr<CSSValue> leftValue = getPropertyCSSValue(properties[3]); in get4Values() local
268 if (!topValue || !rightValue || !bottomValue || !leftValue) in get4Values()
271 bool showLeft = rightValue->cssText() != leftValue->cssText(); in get4Values()
281 res += " " + leftValue->cssText(); in get4Values()
/external/webkit/WebCore/
DChangeLog-2006-12-3154719 (WebCore::RenderBox::calcAbsoluteHorizontalValues): Initialize leftValue.