right             139 Source/bindings/templates/methods.cpp     {# IDL type is used for clamping, for the right bounds, since different
right              41 Source/core/animation/AnimatableLengthBox.cpp         AnimatableValue::interpolate(this->right(), lengthBox->right(), fraction),
right              51 Source/core/animation/AnimatableLengthBox.cpp         AnimatableValue::add(this->right(), lengthBox->right()),
right              60 Source/core/animation/AnimatableLengthBox.cpp         && right()->equals(lengthBox->right())
right              41 Source/core/animation/AnimatableLengthBox.h     static PassRefPtrWillBeRawPtr<AnimatableLengthBox> create(PassRefPtrWillBeRawPtr<AnimatableValue> left, PassRefPtrWillBeRawPtr<AnimatableValue> right, PassRefPtrWillBeRawPtr<AnimatableValue> top, PassRefPtrWillBeRawPtr<AnimatableValue> bottom)
right              43 Source/core/animation/AnimatableLengthBox.h         return adoptRefWillBeNoop(new AnimatableLengthBox(left, right, top, bottom));
right              46 Source/core/animation/AnimatableLengthBox.h     const AnimatableValue* right() const { return m_right.get(); }
right              57 Source/core/animation/AnimatableLengthBox.h     AnimatableLengthBox(PassRefPtrWillBeRawPtr<AnimatableValue> left, PassRefPtrWillBeRawPtr<AnimatableValue> right, PassRefPtrWillBeRawPtr<AnimatableValue> top, PassRefPtrWillBeRawPtr<AnimatableValue> bottom)
right              59 Source/core/animation/AnimatableLengthBox.h         , m_right(right)
right             100 Source/core/animation/AnimatableRepeatable.cpp         const AnimatableValue* right = otherValues[i % otherValues.size()].get();
right             101 Source/core/animation/AnimatableRepeatable.cpp         addedValues[i] = add(left, right);
right              56 Source/core/animation/AnimatableValue.cpp PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableValue::interpolate(const AnimatableValue* left, const AnimatableValue* right, double fraction)
right              59 Source/core/animation/AnimatableValue.cpp     ASSERT(right);
right              61 Source/core/animation/AnimatableValue.cpp     ASSERT(!right->isNeutral());
right              63 Source/core/animation/AnimatableValue.cpp     if (fraction && fraction != 1 && left->isSameType(right))
right              64 Source/core/animation/AnimatableValue.cpp         return left->interpolateTo(right, fraction);
right              66 Source/core/animation/AnimatableValue.cpp     return defaultInterpolateTo(left, right, fraction);
right              69 Source/core/animation/AnimatableValue.cpp PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableValue::add(const AnimatableValue* left, const AnimatableValue* right)
right              72 Source/core/animation/AnimatableValue.cpp     ASSERT(right);
right              75 Source/core/animation/AnimatableValue.cpp         return takeConstRef(right);
right              76 Source/core/animation/AnimatableValue.cpp     if (right->isNeutral())
right              79 Source/core/animation/AnimatableValue.cpp     if (left->isSameType(right))
right              80 Source/core/animation/AnimatableValue.cpp         return left->addWith(right);
right              82 Source/core/animation/AnimatableValue.cpp     return defaultAddWith(left, right);
right              90 Source/core/animation/AnimatableValue.cpp double AnimatableValue::distance(const AnimatableValue* left, const AnimatableValue* right)
right              93 Source/core/animation/AnimatableValue.cpp     ASSERT(right);
right              95 Source/core/animation/AnimatableValue.cpp     if (left->isSameType(right))
right              96 Source/core/animation/AnimatableValue.cpp         return left->distanceTo(right);
right             121 Source/core/animation/AnimatableValue.h     static PassRefPtrWillBeRawPtr<AnimatableValue> defaultInterpolateTo(const AnimatableValue* left, const AnimatableValue* right, double fraction) { return takeConstRef((fraction < 0.5) ? left : right); }
right             125 Source/core/animation/AnimatableValue.h     static PassRefPtrWillBeRawPtr<AnimatableValue> defaultAddWith(const AnimatableValue* left, const AnimatableValue* right) { return takeConstRef(right); }
right              74 Source/core/animation/AnimatableValueTestHelper.cpp     PrintTo(*(animLengthBox.right()), os);
right             115 Source/core/animation/css/CSSAnimatableValueFactory.cpp         createFromLength(lengthBox.right(), style),
right             131 Source/core/animation/css/CSSAnimatableValueFactory.cpp         createFromBorderImageLength(borderImageLengthBox.right(), style),
right             400 Source/core/animation/css/CSSAnimatableValueFactory.cpp         return createFromLength(style.right(), style);
right             201 Source/core/animation/css/CSSPropertyEquality.cpp         return a.right() == b.right();
right             112 Source/core/css/BasicShapeFunctions.cpp         insetValue->setRight(CSSPrimitiveValue::create(inset->right()));
right             251 Source/core/css/BasicShapeFunctions.cpp         rect->setRight(convertToLength(state, rectValue->right()));
right             287 Source/core/css/CSSBasicShapes.cpp static String buildInsetString(const String& top, const String& right, const String& bottom, const String& left,
right             299 Source/core/css/CSSBasicShapes.cpp     if (!right.isNull()) {
right             301 Source/core/css/CSSBasicShapes.cpp         result.append(right);
right             158 Source/core/css/CSSBasicShapes.h     CSSPrimitiveValue* right() const { return m_right.get(); }
right             168 Source/core/css/CSSBasicShapes.h     void setRight(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> right) { m_right = right; }
right             172 Source/core/css/CSSBasicShapes.h     void updateShapeSize4Values(CSSPrimitiveValue* top, CSSPrimitiveValue* right, CSSPrimitiveValue* bottom, CSSPrimitiveValue* left)
right             175 Source/core/css/CSSBasicShapes.h         setRight(right);
right             404 Source/core/css/CSSCalculationValue.cpp         OwnPtr<CalcExpressionNode> right(m_rightSide->toCalcValue(conversionData));
right             405 Source/core/css/CSSCalculationValue.cpp         if (!right)
right             407 Source/core/css/CSSCalculationValue.cpp         return adoptPtr(new CalcExpressionBinaryOperation(left.release(), right.release(), m_operator));
right             404 Source/core/css/CSSComputedStyleDeclaration.cpp     RefPtrWillBeRawPtr<CSSPrimitiveValue> right = nullptr;
right             413 Source/core/css/CSSComputedStyleDeclaration.cpp     if (image.imageSlices().right() == image.imageSlices().top() && image.imageSlices().bottom() == image.imageSlices().top()
right             415 Source/core/css/CSSComputedStyleDeclaration.cpp         right = top;
right             419 Source/core/css/CSSComputedStyleDeclaration.cpp         if (image.imageSlices().right().isPercent())
right             420 Source/core/css/CSSComputedStyleDeclaration.cpp             right = cssValuePool().createValue(image.imageSlices().right().value(), CSSPrimitiveValue::CSS_PERCENTAGE);
right             422 Source/core/css/CSSComputedStyleDeclaration.cpp             right = cssValuePool().createValue(image.imageSlices().right().value(), CSSPrimitiveValue::CSS_NUMBER);
right             424 Source/core/css/CSSComputedStyleDeclaration.cpp         if (image.imageSlices().bottom() == image.imageSlices().top() && image.imageSlices().right() == image.imageSlices().left()) {
right             426 Source/core/css/CSSComputedStyleDeclaration.cpp             left = right;
right             433 Source/core/css/CSSComputedStyleDeclaration.cpp             if (image.imageSlices().left() == image.imageSlices().right())
right             434 Source/core/css/CSSComputedStyleDeclaration.cpp                 left = right;
right             446 Source/core/css/CSSComputedStyleDeclaration.cpp     quad->setRight(right);
right             457 Source/core/css/CSSComputedStyleDeclaration.cpp     RefPtrWillBeRawPtr<CSSPrimitiveValue> right = nullptr;
right             466 Source/core/css/CSSComputedStyleDeclaration.cpp     if (box.right() == box.top() && box.bottom() == box.top() && box.left() == box.top()) {
right             467 Source/core/css/CSSComputedStyleDeclaration.cpp         right = top;
right             471 Source/core/css/CSSComputedStyleDeclaration.cpp         if (box.right().isNumber())
right             472 Source/core/css/CSSComputedStyleDeclaration.cpp             right = cssValuePool().createValue(box.right().number(), CSSPrimitiveValue::CSS_NUMBER);
right             474 Source/core/css/CSSComputedStyleDeclaration.cpp             right = cssValuePool().createValue(box.right().length(), style);
right             476 Source/core/css/CSSComputedStyleDeclaration.cpp         if (box.bottom() == box.top() && box.right() == box.left()) {
right             478 Source/core/css/CSSComputedStyleDeclaration.cpp             left = right;
right             485 Source/core/css/CSSComputedStyleDeclaration.cpp             if (box.left() == box.right())
right             486 Source/core/css/CSSComputedStyleDeclaration.cpp                 left = right;
right             498 Source/core/css/CSSComputedStyleDeclaration.cpp     quad->setRight(right);
right             614 Source/core/css/CSSComputedStyleDeclaration.cpp             l = style.right();
right            2556 Source/core/css/CSSComputedStyleDeclaration.cpp             rect->setRight(zoomAdjustedPixelValue(style->clip().right().value(), *style));
right              34 Source/core/css/Rect.h     CSSPrimitiveValue* right() const { return m_right.get(); }
right              39 Source/core/css/Rect.h     void setRight(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> right) { m_right = right; }
right              78 Source/core/css/Rect.h         return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText());
right              84 Source/core/css/Rect.h     static String generateCSSString(const String& top, const String& right, const String& bottom, const String& left)
right              86 Source/core/css/Rect.h         return "rect(" + top + ' ' + right + ' ' + bottom + ' ' + left + ')';
right             102 Source/core/css/Rect.h         return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText());
right             108 Source/core/css/Rect.h     static String generateCSSString(const String& top, const String& right, const String& bottom, const String& left)
right             112 Source/core/css/Rect.h         result.reserveCapacity(top.length() + right.length() + bottom.length() + left.length() + 3);
right             114 Source/core/css/Rect.h         if (right != top || bottom != top || left != top) {
right             116 Source/core/css/Rect.h             result.append(right);
right             117 Source/core/css/Rect.h             if (bottom != top || right != left) {
right             120 Source/core/css/Rect.h                 if (left != right) {
right             430 Source/core/css/StylePropertySerializer.cpp     StylePropertySet::PropertyReference right = m_propertySet.propertyAt(rightValueIndex);
right             435 Source/core/css/StylePropertySerializer.cpp     if (!top.value() || !right.value() || !bottom.value() || !left.value())
right             438 Source/core/css/StylePropertySerializer.cpp     if (top.isInherited() && right.isInherited() && bottom.isInherited() && left.isInherited())
right             441 Source/core/css/StylePropertySerializer.cpp     if (top.value()->isInitialValue() || right.value()->isInitialValue() || bottom.value()->isInitialValue() || left.value()->isInitialValue()) {
right             442 Source/core/css/StylePropertySerializer.cpp         if (top.value()->isInitialValue() && right.value()->isInitialValue() && bottom.value()->isInitialValue() && left.value()->isInitialValue() && !top.isImplicit()) {
right             448 Source/core/css/StylePropertySerializer.cpp     if (top.isImportant() != right.isImportant() || right.isImportant() != bottom.isImportant() || bottom.isImportant() != left.isImportant())
right             451 Source/core/css/StylePropertySerializer.cpp     bool showLeft = !right.value()->equals(*left.value());
right             453 Source/core/css/StylePropertySerializer.cpp     bool showRight = !top.value()->equals(*right.value()) || showBottom;
right             459 Source/core/css/StylePropertySerializer.cpp         result.append(right.value()->cssText());
right              98 Source/core/css/resolver/AnimatedStyleBuilder.cpp         animatableValueToLength(animatableLengthBox->right(), state, range),
right             108 Source/core/css/resolver/AnimatedStyleBuilder.cpp         animatableValueToBorderImageLength(animatableLengthBox->right(), state),
right             569 Source/core/css/resolver/CSSToStyleMap.cpp         if (image.borderSlices().right().isLength() && image.borderSlices().right().length().isFixed())
right             570 Source/core/css/resolver/CSSToStyleMap.cpp             mutableStyle->setBorderRightWidth(image.borderSlices().right().length().value());
right             601 Source/core/css/resolver/CSSToStyleMap.cpp     if (slices->right()->isPercentage())
right             602 Source/core/css/resolver/CSSToStyleMap.cpp         box.m_right = Length(slices->right()->getDoubleValue(), Percent);
right             604 Source/core/css/resolver/CSSToStyleMap.cpp         box.m_right = Length(slices->right()->getIntValue(CSSPrimitiveValue::CSS_NUMBER), Fixed);
right             634 Source/core/css/resolver/CSSToStyleMap.cpp         toBorderImageLength(*slices->right(), conversionData),
right             117 Source/core/css/resolver/StyleBuilderCustom.cpp         Length right = clipConvertToLength(state, rect->right());
right             120 Source/core/css/resolver/StyleBuilderCustom.cpp         state.style()->setClip(top, right, bottom, left);
right              46 Source/core/dom/ClientRect.h         float right() const { return m_rect.maxX(); }
right              96 Source/core/dom/DOMImplementation.cpp         && svgFeatures.contains(feature.right(feature.length() - 8));
right             162 Source/core/dom/DOMImplementation.cpp         && svgFeatures.contains(feature.right(feature.length() - 35));
right            1005 Source/core/editing/Editor.cpp     String transposed = text.right(1) + text.left(1);
right             696 Source/core/editing/FrameSelection.cpp             pos = VisiblePosition(m_selection.extent(), m_selection.affinity()).right(true);
right             445 Source/core/editing/VisiblePosition.cpp     VisiblePosition right = VisiblePosition(pos, DOWNSTREAM);
right             446 Source/core/editing/VisiblePosition.cpp     ASSERT(right != *this);
right             449 Source/core/editing/VisiblePosition.cpp         return right;
right             452 Source/core/editing/VisiblePosition.cpp     return honorEditingBoundaryAtOrAfter(right);
right              81 Source/core/editing/VisiblePosition.h     VisiblePosition right(bool stayInEditableContent = false) const;
right             363 Source/core/editing/VisibleUnits.cpp         VisiblePosition adjacentCharacterPosition = direction == MoveRight ? current.right(true) : current.left(true);
right            1362 Source/core/frame/FrameView.cpp             if (style->width().isFixed() && (style->left().isAuto() || style->right().isAuto()))
right             376 Source/core/html/forms/RangeInputType.cpp     size_t right = m_tickMarkValues.size();
right             379 Source/core/html/forms/RangeInputType.cpp         ASSERT(left <= right);
right             380 Source/core/html/forms/RangeInputType.cpp         middle = left + (right - left) / 2;
right             393 Source/core/html/forms/RangeInputType.cpp             right = middle;
right              33 Source/core/html/parser/HTMLEntitySearch.cpp static const HTMLEntityTableEntry* halfway(const HTMLEntityTableEntry* left, const HTMLEntityTableEntry* right)
right              35 Source/core/html/parser/HTMLEntitySearch.cpp     return &left[(right - left) / 2];
right              60 Source/core/html/parser/HTMLEntitySearch.cpp     const HTMLEntityTableEntry* right = m_last;
right              61 Source/core/html/parser/HTMLEntitySearch.cpp     if (left == right)
right              67 Source/core/html/parser/HTMLEntitySearch.cpp         return right;
right              68 Source/core/html/parser/HTMLEntitySearch.cpp     while (left + 1 < right) {
right              69 Source/core/html/parser/HTMLEntitySearch.cpp         const HTMLEntityTableEntry* probe = halfway(left, right);
right              75 Source/core/html/parser/HTMLEntitySearch.cpp             right = probe;
right              78 Source/core/html/parser/HTMLEntitySearch.cpp     ASSERT(left + 1 == right);
right              79 Source/core/html/parser/HTMLEntitySearch.cpp     return right;
right              85 Source/core/html/parser/HTMLEntitySearch.cpp     const HTMLEntityTableEntry* right = m_last;
right              86 Source/core/html/parser/HTMLEntitySearch.cpp     if (left == right)
right              87 Source/core/html/parser/HTMLEntitySearch.cpp         return right;
right              88 Source/core/html/parser/HTMLEntitySearch.cpp     CompareResult result = compare(right, nextCharacter);
right              90 Source/core/html/parser/HTMLEntitySearch.cpp         return right;
right              93 Source/core/html/parser/HTMLEntitySearch.cpp     while (left + 1 < right) {
right              94 Source/core/html/parser/HTMLEntitySearch.cpp         const HTMLEntityTableEntry* probe = halfway(left, right);
right              97 Source/core/html/parser/HTMLEntitySearch.cpp             right = probe;
right             103 Source/core/html/parser/HTMLEntitySearch.cpp     ASSERT(left + 1 == right);
right              97 Source/core/html/track/vtt/VTTCue.cpp     DEFINE_STATIC_LOCAL(const String, right, ("right"));
right              98 Source/core/html/track/vtt/VTTCue.cpp     return right;
right             965 Source/core/inspector/InspectorDOMAgent.cpp         tagNameQuery = tagNameQuery.right(tagNameQuery.length() - 1);
right             969 Source/core/inspector/InspectorDOMAgent.cpp         attributeQuery = attributeQuery.right(attributeQuery.length() - 1);
right             199 Source/core/page/scrolling/ScrollingCoordinator.cpp             bool fixedToRight = !fixedPositionObject->style()->right().isAuto();
right             159 Source/core/rendering/AbstractInlineTextBox.cpp     if (m_inlineTextBox->nextTextBox() && m_inlineTextBox->nextTextBox()->start() > m_inlineTextBox->end() && result.length() && !result.right(1).containsOnlyWhitespace())
right              33 Source/core/rendering/GapRects.h         const LayoutRect& right() const { return m_right; }
right              38 Source/core/rendering/GapRects.h         void unite(const GapRects& o) { uniteLeft(o.left()); uniteCenter(o.center()); uniteRight(o.right()); }
right              50 Source/core/rendering/GapRects.h             return m_left == other.left() && m_center == other.center() && m_right == other.right();
right             204 Source/core/rendering/InlineBox.h     float right() const { return left() + width(); }
right             862 Source/core/rendering/InlineFlowBox.cpp     int rightGlyphEdge = glyphOverflow ? glyphOverflow->right : 0;
right            1262 Source/core/rendering/InlineFlowBox.cpp             clipRect.setWidth(clipRect.width() + outsets.right());
right            1265 Source/core/rendering/InlineFlowBox.cpp         clipRect.setWidth(paintRect.width() + outsets.left() + outsets.right());
right            4353 Source/core/rendering/RenderBlock.cpp void RenderBlock::adjustForBorderFit(LayoutUnit x, LayoutUnit& left, LayoutUnit& right) const
right            4363 Source/core/rendering/RenderBlock.cpp                     right = max(right, x + static_cast<LayoutUnit>(ceilf(box->lastChild()->logicalRight())));
right            4369 Source/core/rendering/RenderBlock.cpp                         toRenderBlock(obj)->adjustForBorderFit(x + obj->x(), left, right);
right            4373 Source/core/rendering/RenderBlock.cpp                         right = max(right, x + obj->x() + obj->width());
right            4388 Source/core/rendering/RenderBlock.cpp     LayoutUnit right = LayoutUnit::min();
right            4390 Source/core/rendering/RenderBlock.cpp     adjustForBorderFit(0, left, right);
right            4396 Source/core/rendering/RenderBlock.cpp     right = max(left, min(rightEdge, right));
right            4398 Source/core/rendering/RenderBlock.cpp     LayoutUnit newContentWidth = right - left;
right             443 Source/core/rendering/RenderBlock.h     virtual void adjustForBorderFit(LayoutUnit x, LayoutUnit& left, LayoutUnit& right) const; // Helper function for borderFitAdjust
right            2134 Source/core/rendering/RenderBlockFlow.cpp     LayoutUnit right = offsetFromFloats;
right            2137 Source/core/rendering/RenderBlockFlow.cpp         right -= textIndentOffset();
right            2139 Source/core/rendering/RenderBlockFlow.cpp     return right;
right            2567 Source/core/rendering/RenderBlockFlow.cpp void RenderBlockFlow::adjustForBorderFit(LayoutUnit x, LayoutUnit& left, LayoutUnit& right) const
right            2569 Source/core/rendering/RenderBlockFlow.cpp     RenderBlock::adjustForBorderFit(x, left, right);
right            2580 Source/core/rendering/RenderBlockFlow.cpp                 right = max(right, floatRight);
right             300 Source/core/rendering/RenderBlockFlow.h     virtual void adjustForBorderFit(LayoutUnit x, LayoutUnit& left, LayoutUnit& right) const OVERRIDE; // Helper function for borderFitAdjust
right             500 Source/core/rendering/RenderBlockLineLayout.cpp     if ((glyphOverflow.top || glyphOverflow.bottom || glyphOverflow.left || glyphOverflow.right)) {
right            4032 Source/core/rendering/RenderBox.cpp         LayoutUnit right = contentWidth() + borderAndPaddingWidth();
right            4035 Source/core/rendering/RenderBox.cpp         if (point.x() < 0 || point.x() > right || point.y() < 0 || point.y() > bottom) {
right            4036 Source/core/rendering/RenderBox.cpp             if (point.x() <= right / 2)
right            4062 Source/core/rendering/RenderBox.cpp         LayoutUnit right = left + renderer->contentWidth();
right            4064 Source/core/rendering/RenderBox.cpp         if (point.x() <= right && point.x() >= left && point.y() <= top && point.y() >= bottom) {
right            4073 Source/core/rendering/RenderBox.cpp         if (point.x() > right) {
right            4075 Source/core/rendering/RenderBox.cpp                 cmp = LayoutPoint(right, top);
right            4077 Source/core/rendering/RenderBox.cpp                 cmp = LayoutPoint(right, bottom);
right            4079 Source/core/rendering/RenderBox.cpp                 cmp = LayoutPoint(right, point.y());
right            4167 Source/core/rendering/RenderBox.cpp         overflowMinX = min(overflowMinX, borderBox.x() - ((!isFlipped || isHorizontal) ? borderOutsets.left() : borderOutsets.right()));
right            4168 Source/core/rendering/RenderBox.cpp         overflowMaxX = max(overflowMaxX, borderBox.maxX() + ((!isFlipped || isHorizontal) ? borderOutsets.right() : borderOutsets.left()));
right            4368 Source/core/rendering/RenderBox.cpp         return direction == HorizontalLine ? m_marginBox.top() + height() + m_marginBox.bottom() : m_marginBox.right() + width() + m_marginBox.left();
right            4376 Source/core/rendering/RenderBox.cpp         int result = direction == HorizontalLine ? m_marginBox.top() + height() + m_marginBox.bottom() : m_marginBox.right() + width() + m_marginBox.left();
right            4488 Source/core/rendering/RenderBox.cpp     LayoutUnit right = borderRight();
right            4490 Source/core/rendering/RenderBox.cpp     LayoutRect rect(left, top, width() - left - right, height() - top - bottom);
right             286 Source/core/rendering/RenderBox.h     virtual LayoutUnit marginRight() const OVERRIDE { return m_marginBox.right(); }
right             200 Source/core/rendering/RenderBoxModelObject.cpp         if (!style()->right().isAuto() && !containingBlock->style()->isLeftToRightDirection())
right             201 Source/core/rendering/RenderBoxModelObject.cpp             offset.setWidth(-valueForLength(style()->right(), containingBlock->availableWidth()));
right             204 Source/core/rendering/RenderBoxModelObject.cpp     } else if (!style()->right().isAuto()) {
right             205 Source/core/rendering/RenderBoxModelObject.cpp         offset.expand(-valueForLength(style()->right(), containingBlock->availableWidth()), 0);
right             315 Source/core/rendering/RenderBoxModelObject.cpp     if (!style()->right().isAuto()) {
right             316 Source/core/rendering/RenderBoxModelObject.cpp         constraints.setRightOffset(floatValueForLength(style()->right(), constrainingRect.width()));
right             993 Source/core/rendering/RenderBoxModelObject.cpp         LayoutUnit right = 0;
right             998 Source/core/rendering/RenderBoxModelObject.cpp             right = borderRight();
right            1003 Source/core/rendering/RenderBoxModelObject.cpp                 right += paddingRight();
right            1013 Source/core/rendering/RenderBoxModelObject.cpp             positioningAreaSize = pixelSnappedIntSize(toRenderBox(this)->size() - LayoutSize(left + right, top + bottom), toRenderBox(this)->location());
right            1017 Source/core/rendering/RenderBoxModelObject.cpp             positioningAreaSize = pixelSnappedIntSize(paintRect.size() - LayoutSize(left + right, top + bottom), paintRect.location());
right            1161 Source/core/rendering/RenderBoxModelObject.cpp     int rightSlice = min<int>(imageWidth, valueForLength(ninePieceImage.imageSlices().right(), imageWidth)) * imageScaleFactor;
right            1169 Source/core/rendering/RenderBoxModelObject.cpp     int rightWidth = computeBorderImageSide(ninePieceImage.borderSlices().right(), style->borderRightWidth(), rightSlice, borderImageRect.width());
right            1599 Source/core/rendering/RenderObject.cpp         LayoutUnit minInsetRightShadowExtent = min<LayoutUnit>(-insetShadowExtent.right(), min<LayoutUnit>(newBounds.width(), oldBounds.width()));
right            1607 Source/core/rendering/RenderObject.cpp         LayoutUnit right = min<LayoutUnit>(newBounds.maxX(), oldBounds.maxX());
right            1608 Source/core/rendering/RenderObject.cpp         if (rightRect.x() < right) {
right            1609 Source/core/rendering/RenderObject.cpp             rightRect.setWidth(min(rightRect.width(), right - rightRect.x()));
right              54 Source/core/rendering/RenderScrollbarPart.h     virtual LayoutUnit marginRight() const OVERRIDE { ASSERT(isIntegerValue(m_marginBox.right())); return m_marginBox.right(); }
right             333 Source/core/rendering/RenderTableCell.cpp     int right = max(borderHalfRight(true), outlineSize);
right             336 Source/core/rendering/RenderTableCell.cpp     if ((left && !rtl) || (right && rtl)) {
right             342 Source/core/rendering/RenderTableCell.cpp     if ((left && rtl) || (right && !rtl)) {
right             351 Source/core/rendering/RenderTableCell.cpp             right = max(right, above->borderHalfRight(true));
right             357 Source/core/rendering/RenderTableCell.cpp             right = max(right, below->borderHalfRight(true));
right             361 Source/core/rendering/RenderTableCell.cpp     LayoutRect r(-location.x(), -location.y(), location.x() + max(width() + right, visualOverflowRect().maxX()), location.y() + max(height() + bottom, visualOverflowRect().maxY()));
right             316 Source/core/rendering/RenderText.cpp         if (textBox->nextTextBox() && textBox->nextTextBox()->start() > textBox->end() && text.length() && !text.right(1).containsOnlyWhitespace())
right             888 Source/core/rendering/RenderText.cpp     if (fallbackFonts.isEmpty() && !glyphOverflow.left && !glyphOverflow.right && !glyphOverflow.top && !glyphOverflow.bottom)
right            1123 Source/core/rendering/RenderText.cpp                 glyphOverflow.right = 0;
right            1513 Source/core/rendering/RenderText.cpp                     if (fallbackFonts->isEmpty() && !glyphOverflow->left && !glyphOverflow->right && !glyphOverflow->top && !glyphOverflow->bottom)
right             137 Source/core/rendering/RenderTheme.cpp         if (borderBox.right().value() != static_cast<int>(style->borderRightWidth())) {
right             138 Source/core/rendering/RenderTheme.cpp             if (borderBox.right().value())
right             139 Source/core/rendering/RenderTheme.cpp                 style->setBorderRightWidth(borderBox.right().value());
right             344 Source/core/rendering/RenderThemeChromiumDefault.cpp     const int right = rect.x() + rect.width();
right             372 Source/core/rendering/RenderThemeChromiumDefault.cpp         extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 4 + spacingRight: right - 13 - spacingRight;
right             375 Source/core/rendering/RenderThemeChromiumDefault.cpp         extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 7 : right - 13;
right             389 Source/core/rendering/RenderThemeChromiumDefault.cpp     const int right = rect.x() + rect.width();
right             406 Source/core/rendering/RenderThemeChromiumDefault.cpp         extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 4 + spacingRight: right - 13 - spacingRight;
right             409 Source/core/rendering/RenderThemeChromiumDefault.cpp         extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 7 : right - 13;
right             157 Source/core/rendering/RenderVTTCue.cpp     LayoutUnit right = left + firstLineBox->width();
right             174 Source/core/rendering/RenderVTTCue.cpp     if (m_cue->getWritingDirection() != VTTCue::Horizontal && ((step < 0 && left < 0) || (step > 0 && right > parentWidth)))
right             149 Source/core/rendering/shapes/Shape.cpp         float right = floatValueForLength(inset.right(), boxWidth);
right             151 Source/core/rendering/shapes/Shape.cpp         FloatRect rect(left, top, std::max<float>(boxWidth - left - right, 0), std::max<float>(boxHeight - top - bottom, 0));
right             253 Source/core/rendering/style/BasicShapes.h     const Length& right() const { return m_right; }
right             263 Source/core/rendering/style/BasicShapes.h     void setRight(Length right) { m_right = right; }
right             116 Source/core/rendering/style/BorderData.h     const BorderValue& right() const { return m_right; }
right              60 Source/core/rendering/style/BorderImageLengthBox.h     BorderImageLengthBox(const BorderImageLength& top, const BorderImageLength& right,
right              63 Source/core/rendering/style/BorderImageLengthBox.h         , m_right(right)
right              70 Source/core/rendering/style/BorderImageLengthBox.h     const BorderImageLength& right() const { return m_right; }
right             346 Source/core/rendering/style/RenderStyle.cpp         || a.right().type() != b.right().type()
right             354 Source/core/rendering/style/RenderStyle.cpp     if (!a.left().isIntrinsicOrAuto() && !a.right().isIntrinsicOrAuto())
right             362 Source/core/rendering/style/RenderStyle.cpp             || (!a.right().isIntrinsicOrAuto() && a.right() != b.right())))
right             677 Source/core/rendering/style/RenderStyle.cpp void RenderStyle::setClip(Length top, Length right, Length bottom, Length left)
right             681 Source/core/rendering/style/RenderStyle.cpp     data->clip.m_right = right;
right            1284 Source/core/rendering/style/RenderStyle.cpp void RenderStyle::getShadowExtent(const ShadowList* shadowList, LayoutUnit &top, LayoutUnit &right, LayoutUnit &bottom, LayoutUnit &left) const
right            1287 Source/core/rendering/style/RenderStyle.cpp     right = 0;
right            1299 Source/core/rendering/style/RenderStyle.cpp         right = max<LayoutUnit>(right, shadow.x() + blurAndSpread);
right            1308 Source/core/rendering/style/RenderStyle.cpp     LayoutUnit right = 0;
right            1319 Source/core/rendering/style/RenderStyle.cpp         right = min<LayoutUnit>(right, shadow.x() - blurAndSpread);
right            1324 Source/core/rendering/style/RenderStyle.cpp     return LayoutBoxExtent(top, right, bottom, left);
right            1327 Source/core/rendering/style/RenderStyle.cpp void RenderStyle::getShadowHorizontalExtent(const ShadowList* shadowList, LayoutUnit &left, LayoutUnit &right) const
right            1330 Source/core/rendering/style/RenderStyle.cpp     right = 0;
right            1340 Source/core/rendering/style/RenderStyle.cpp         right = max<LayoutUnit>(right, shadow.x() + blurAndSpread);
right            1598 Source/core/rendering/style/RenderStyle.cpp                            NinePieceImage::computeOutset(image.outset().right(), borderRightWidth()),
right             455 Source/core/rendering/style/RenderStyle.h     const Length& right() const { return surround->offset.right(); }
right             467 Source/core/rendering/style/RenderStyle.h     bool hasAutoLeftAndRight() const { return left().isAuto() && right().isAuto(); }
right             494 Source/core/rendering/style/RenderStyle.h     const BorderValue& borderRight() const { return surround->border.right(); }
right             519 Source/core/rendering/style/RenderStyle.h     EBorderStyle borderRightStyle() const { return surround->border.right().style(); }
right             520 Source/core/rendering/style/RenderStyle.h     bool borderRightIsTransparent() const { return surround->border.right().isTransparent(); }
right             555 Source/core/rendering/style/RenderStyle.h     const Length& clipRight() const { return visual->clip.right(); }
right             701 Source/core/rendering/style/RenderStyle.h     const Length& marginRight() const { return surround->margin.right(); }
right             715 Source/core/rendering/style/RenderStyle.h     const Length& paddingRight() const { return surround->padding.right(); }
right             745 Source/core/rendering/style/RenderStyle.h     void getTextShadowExtent(LayoutUnit& top, LayoutUnit& right, LayoutUnit& bottom, LayoutUnit& left) const { getShadowExtent(textShadow(), top, right, bottom, left); }
right             746 Source/core/rendering/style/RenderStyle.h     void getTextShadowHorizontalExtent(LayoutUnit& left, LayoutUnit& right) const { getShadowHorizontalExtent(textShadow(), left, right); }
right             805 Source/core/rendering/style/RenderStyle.h     void getBoxShadowExtent(LayoutUnit& top, LayoutUnit& right, LayoutUnit& bottom, LayoutUnit& left) const { getShadowExtent(boxShadow(), top, right, bottom, left); }
right             807 Source/core/rendering/style/RenderStyle.h     void getBoxShadowHorizontalExtent(LayoutUnit& left, LayoutUnit& right) const { getShadowHorizontalExtent(boxShadow(), left, right); }
right            1084 Source/core/rendering/style/RenderStyle.h     void setClip(Length top, Length right, Length bottom, Length left);
right            1714 Source/core/rendering/style/RenderStyle.h     void getShadowExtent(const ShadowList*, LayoutUnit& top, LayoutUnit& right, LayoutUnit& bottom, LayoutUnit& left) const;
right            1716 Source/core/rendering/style/RenderStyle.h     void getShadowHorizontalExtent(const ShadowList*, LayoutUnit& left, LayoutUnit& right) const;
right            1740 Source/core/rendering/style/RenderStyle.h     StyleColor borderRightColor() const { return surround->border.right().color(); }
right             811 Source/core/svg/animation/SVGSMILElement.cpp inline bool compareTimes(const SMILTimeWithOrigin& left, const SMILTimeWithOrigin& right)
right             813 Source/core/svg/animation/SVGSMILElement.cpp     return left.time() < right.time();
right              15 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/ValidatorContext.java                 public int compare(MessageRecord left, MessageRecord right) {
right              16 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/ValidatorContext.java                     return left.position - right.position;
right              41 Source/platform/CalculationValue.cpp     float right = m_rightSide->evaluate(maxValue);
right              44 Source/platform/CalculationValue.cpp         return left + right;
right              46 Source/platform/CalculationValue.cpp         return left - right;
right              48 Source/platform/CalculationValue.cpp         return left * right;
right              50 Source/platform/CalculationValue.cpp         if (!right)
right              52 Source/platform/CalculationValue.cpp         return left / right;
right              73 Source/platform/LengthBox.h     const Length& right() const { return m_right; }
right             181 Source/platform/PODIntervalTree.h             searchForOverlapsFrom<AdapterType>(node->right(), adapter);
right             194 Source/platform/PODIntervalTree.h         IntervalNode* right = node->right();
right             195 Source/platform/PODIntervalTree.h         if (right) {
right             196 Source/platform/PODIntervalTree.h             if (*curMax < right->data().maxHigh())
right             197 Source/platform/PODIntervalTree.h                 curMax = &right->data().maxHigh();
right             214 Source/platform/PODIntervalTree.h         IntervalNode* right = node->right();
right             219 Source/platform/PODIntervalTree.h         if (right) {
right             220 Source/platform/PODIntervalTree.h             if (!checkInvariantsFromNode(right, &rightMaxValue))
right             223 Source/platform/PODIntervalTree.h         if (!left && !right) {
right             230 Source/platform/PODIntervalTree.h         if (!left || !right) {
right             286 Source/platform/PODRedBlackTree.h         Node* right() const { return m_right; }
right             339 Source/platform/PODRedBlackTree.h                 current = current->right();
right             353 Source/platform/PODRedBlackTree.h             return treeSearchFullComparisons(current->right(), data);
right             360 Source/platform/PODRedBlackTree.h             result = treeSearchFullComparisons(current->right(), data);
right             373 Source/platform/PODRedBlackTree.h                 x = x->right();
right             390 Source/platform/PODRedBlackTree.h         if (x->right())
right             391 Source/platform/PODRedBlackTree.h             return treeMinimum(x->right());
right             393 Source/platform/PODRedBlackTree.h         while (y && x == y->right()) {
right             428 Source/platform/PODRedBlackTree.h         Node* y = x->right();
right             464 Source/platform/PODRedBlackTree.h         y->setLeft(x->right());
right             465 Source/platform/PODRedBlackTree.h         if (x->right())
right             466 Source/platform/PODRedBlackTree.h             x->right()->setParent(y);
right             503 Source/platform/PODRedBlackTree.h                 Node* y = x->parent()->parent()->right();
right             515 Source/platform/PODRedBlackTree.h                     if (x == x->parent()->right()) {
right             574 Source/platform/PODRedBlackTree.h                 Node* w = xParent->right();
right             581 Source/platform/PODRedBlackTree.h                     w = xParent->right();
right             584 Source/platform/PODRedBlackTree.h                     && (!w->right() || w->right()->color() == Black)) {
right             590 Source/platform/PODRedBlackTree.h                     if (!w->right() || w->right()->color() == Black) {
right             595 Source/platform/PODRedBlackTree.h                         w = xParent->right();
right             600 Source/platform/PODRedBlackTree.h                     if (w->right())
right             601 Source/platform/PODRedBlackTree.h                         w->right()->setColor(Black);
right             623 Source/platform/PODRedBlackTree.h                 if ((!w->right() || w->right()->color() == Black)
right             632 Source/platform/PODRedBlackTree.h                         w->right()->setColor(Black);
right             660 Source/platform/PODRedBlackTree.h         if (!z->left() || !z->right())
right             670 Source/platform/PODRedBlackTree.h             x = y->right();
right             712 Source/platform/PODRedBlackTree.h         if (node->right())
right             713 Source/platform/PODRedBlackTree.h             visitInorderImpl(node->right(), visitor);
right             723 Source/platform/PODRedBlackTree.h         if (node->right())
right             724 Source/platform/PODRedBlackTree.h             markFree(node->right());
right             769 Source/platform/PODRedBlackTree.h             if (!((!node->right() || node->right()->color() == Black)))
right             777 Source/platform/PODRedBlackTree.h         bool rightValid = checkInvariantsFromNode(node->right(), &rightCount);
right             810 Source/platform/PODRedBlackTree.h             dumpFromNode(node->right(), indentation + 2);
right              92 Source/platform/URLPatternMatcher.cpp     m_path = pattern.right(pattern.length() - pathStartPos);
right              45 Source/platform/exported/WebFloatQuad.cpp     int right = static_cast<int>(ceilf(max(max(max(p[0].x, p[1].x), p[2].x), p[3].x)));
right              48 Source/platform/exported/WebFloatQuad.cpp     return WebRect(left, top, right - left, bottom - top);
right             759 Source/platform/fonts/Font.cpp         glyphOverflow->right = ceilf(it.lastGlyphOverflow());
right              63 Source/platform/fonts/Font.h         , right(0)
right              71 Source/platform/fonts/Font.h     int right;
right             225 Source/platform/fonts/harfbuzz/FontHarfBuzz.cpp         glyphOverflow->right = std::max<int>(0, ceilf(shaper.glyphBoundingBox().right() - shaper.totalWidth()));
right             143 Source/platform/fonts/mac/FontComplexTextMac.cpp         glyphOverflow->right = max<int>(0, ceilf(controller.maxGlyphBoundingBoxX() - controller.totalWidth()));
right              47 Source/platform/geometry/FloatBoxExtent.h     FloatBoxExtent(float top, float right, float bottom, float left)
right              49 Source/platform/geometry/FloatBoxExtent.h         , m_right(right)
right              58 Source/platform/geometry/FloatBoxExtent.h     float right() const { return m_right; }
right              59 Source/platform/geometry/FloatBoxExtent.h     void setRight(float right) { m_right = right; }
right              67 Source/platform/geometry/FloatBoxExtent.h     bool isZero() const { return !left() && !right() && !top() && !bottom(); }
right              75 Source/platform/geometry/FloatBoxExtent.h         rect.expand(left() + right(), top() + bottom());
right              81 Source/platform/geometry/FloatBoxExtent.h         m_right = std::max(m_right, other.right());
right             104 Source/platform/geometry/FloatBoxExtent.h         && a.right() == b.right()
right             117 Source/platform/geometry/FloatBoxExtent.h     a.setRight(a.right() + b.right());
right              89 Source/platform/geometry/FloatQuad.cpp     float right  = max4(m_p1.x(), m_p2.x(), m_p3.x(), m_p4.x());
right              92 Source/platform/geometry/FloatQuad.cpp     return FloatRect(left, top, right - left, bottom - top);
right              90 Source/platform/geometry/FloatRect.cpp     float right = std::min(maxX(), other.maxX());
right              94 Source/platform/geometry/FloatRect.cpp     if (left >= right || top >= bottom) {
right              97 Source/platform/geometry/FloatRect.cpp         right = 0;
right             101 Source/platform/geometry/FloatRect.cpp     setLocationAndSizeFromEdges(left, top, right, bottom);
right             173 Source/platform/geometry/FloatRect.cpp     float right = std::max(p0.x(), p1.x());
right             176 Source/platform/geometry/FloatRect.cpp     setLocationAndSizeFromEdges(left, top, right, bottom);
right             212 Source/platform/geometry/FloatRect.cpp     float right = max3(p0.x(), p1.x(), p2.x());
right             215 Source/platform/geometry/FloatRect.cpp     setLocationAndSizeFromEdges(left, top, right, bottom);
right             222 Source/platform/geometry/FloatRect.cpp     float right = max4(p0.x(), p1.x(), p2.x(), p3.x());
right             225 Source/platform/geometry/FloatRect.cpp     setLocationAndSizeFromEdges(left, top, right, bottom);
right             181 Source/platform/geometry/FloatRect.h     void setLocationAndSizeFromEdges(float left, float top, float right, float bottom)
right             184 Source/platform/geometry/FloatRect.h         m_size.setWidth(right - left);
right              67 Source/platform/geometry/IntRect.cpp     int right = std::min(maxX(), other.maxX());
right              71 Source/platform/geometry/IntRect.cpp     if (left >= right || top >= bottom) {
right              74 Source/platform/geometry/IntRect.cpp         right = 0;
right              80 Source/platform/geometry/IntRect.cpp     m_size.setWidth(right - left);
right              96 Source/platform/geometry/IntRect.cpp     int right = std::max(maxX(), other.maxX());
right             101 Source/platform/geometry/IntRect.cpp     m_size.setWidth(right - left);
right             117 Source/platform/geometry/IntRect.cpp     int right = std::max(maxX(), other.maxX());
right             122 Source/platform/geometry/IntRect.cpp     m_size.setWidth(right - left);
right              47 Source/platform/geometry/IntRectExtent.h     IntRectExtent(int top, int right, int bottom, int left)
right              49 Source/platform/geometry/IntRectExtent.h         , m_right(right)
right              58 Source/platform/geometry/IntRectExtent.h     int right() const { return m_right; }
right              59 Source/platform/geometry/IntRectExtent.h     void setRight(int right) { m_right = right; }
right              67 Source/platform/geometry/IntRectExtent.h     bool isZero() const { return !left() && !right() && !top() && !bottom(); }
right              75 Source/platform/geometry/IntRectExtent.h         rect.expand(left() + right(), top() + bottom());
right              88 Source/platform/geometry/IntRectExtent.h         && a.right() == b.right()
right             101 Source/platform/geometry/IntRectExtent.h     a.setRight(a.right() + b.right());
right              44 Source/platform/geometry/LayoutBoxExtent.h     LayoutBoxExtent(LayoutUnit top, LayoutUnit right, LayoutUnit bottom, LayoutUnit left)
right              45 Source/platform/geometry/LayoutBoxExtent.h         : m_top(top), m_right(right), m_bottom(bottom), m_left(left) { }
right              48 Source/platform/geometry/LayoutBoxExtent.h     inline LayoutUnit right() const { return m_right; }
right              98 Source/platform/geometry/LayoutRect.h         m_size.expand(box.left() + box.right(), box.top() + box.bottom());
right             105 Source/platform/geometry/LayoutRect.h         m_size.shrink(box.left() + box.right(), box.top() + box.bottom());
right             218 Source/platform/geometry/LayoutRect.h inline IntRect pixelSnappedIntRectFromEdges(LayoutUnit left, LayoutUnit top, LayoutUnit right, LayoutUnit bottom)
right             220 Source/platform/geometry/LayoutRect.h     return IntRect(left.round(), top.round(), snapSizeToPixel(right - left, left), snapSizeToPixel(bottom - top, top));
right              54 Source/platform/graphics/PathTraversalState.cpp     void split(QuadraticBezier& left, QuadraticBezier& right) const
right              57 Source/platform/graphics/PathTraversalState.cpp         right.control = midPoint(control, end);
right              59 Source/platform/graphics/PathTraversalState.cpp         FloatPoint leftControlToRightControl = midPoint(left.control, right.control);
right              61 Source/platform/graphics/PathTraversalState.cpp         right.start = leftControlToRightControl;
right              64 Source/platform/graphics/PathTraversalState.cpp         right.end = end;
right              87 Source/platform/graphics/PathTraversalState.cpp     void split(CubicBezier& left, CubicBezier& right) const
right              95 Source/platform/graphics/PathTraversalState.cpp         right.control2 = midPoint(control2, end);
right              96 Source/platform/graphics/PathTraversalState.cpp         right.control1 = midPoint(right.control2, startToControl1);
right              97 Source/platform/graphics/PathTraversalState.cpp         right.end = end;
right              99 Source/platform/graphics/PathTraversalState.cpp         FloatPoint leftControl2ToRightControl1 = midPoint(left.control2, right.control1);
right             101 Source/platform/graphics/PathTraversalState.cpp         right.start = leftControl2ToRightControl1;
right              76 Source/platform/graphics/filters/FELighting.cpp     int right = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
right              80 Source/platform/graphics/filters/FELighting.cpp     normalVector.setX(-(center << 1) + (right << 1) - bottom + bottomRight);
right              81 Source/platform/graphics/filters/FELighting.cpp     normalVector.setY(-(center << 1) - right + (bottom << 1) + bottomRight);
right              88 Source/platform/graphics/filters/FELighting.cpp     int right = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
right              93 Source/platform/graphics/filters/FELighting.cpp     normalVector.setX(-(left << 1) + (right << 1) - bottomLeft + bottomRight);
right              94 Source/platform/graphics/filters/FELighting.cpp     normalVector.setY(-left - (center << 1) - right + bottomLeft + (bottom << 1) + bottomRight);
right             111 Source/platform/graphics/filters/FELighting.cpp     int right = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
right             118 Source/platform/graphics/filters/FELighting.cpp     normalVector.setX(-top + topRight - (center << 1) + (right << 1) - bottom + bottomRight);
right             125 Source/platform/graphics/filters/FELighting.cpp     int right = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
right             134 Source/platform/graphics/filters/FELighting.cpp     normalVector.setX(-topLeft + topRight - (left << 1) + (right << 1) - bottomLeft + bottomRight);
right             155 Source/platform/graphics/filters/FELighting.cpp     int right = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
right             159 Source/platform/graphics/filters/FELighting.cpp     normalVector.setX(-top + topRight - (center << 1) + (right << 1));
right             160 Source/platform/graphics/filters/FELighting.cpp     normalVector.setY(-(top << 1) - topRight + (center << 1) + right);
right             167 Source/platform/graphics/filters/FELighting.cpp     int right = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
right             172 Source/platform/graphics/filters/FELighting.cpp     normalVector.setX(-topLeft + topRight - (left << 1) + (right << 1));
right             173 Source/platform/graphics/filters/FELighting.cpp     normalVector.setY(-topLeft - (top << 1) - topRight + left + (center << 1) + right);
right              43 Source/platform/graphics/filters/FilterOperationsTest.cpp     EXPECT_EQ(57, outsets.right());
right              55 Source/platform/graphics/filters/FilterOperationsTest.cpp     EXPECT_EQ(60, outsets.right());
right              55 Source/platform/graphics/skia/OpaqueRegionSkia.cpp     int right = SkScalarFloorToInt(m_opaqueRect.fRight);
right              57 Source/platform/graphics/skia/OpaqueRegionSkia.cpp     return IntRect(left, top, right-left, bottom-top);
right             634 Source/platform/transforms/TransformationMatrix.cpp     float right;
right             636 Source/platform/transforms/TransformationMatrix.cpp         right = (LayoutUnit::max() / 2).toFloat();
right             638 Source/platform/transforms/TransformationMatrix.cpp         right = clampEdgeValue(ceilf(mappedQuadBounds.maxX()));
right             646 Source/platform/transforms/TransformationMatrix.cpp     return LayoutRect(LayoutUnit::clamp(left), LayoutUnit::clamp(top),  LayoutUnit::clamp(right - left), LayoutUnit::clamp(bottom - top));
right              70 Source/platform/weborigin/DatabaseIdentifier.cpp     int port = databaseIdentifier.right(databaseIdentifier.length() - separator2 - 1).toInt(&portOkay);
right             173 Source/platform/weborigin/KURL.cpp     return string().left(511) + "..." + string().right(510);
right              76 Source/wtf/ArrayBuffer.h     static inline int clampValue(int x, int left, int right);
right              83 Source/wtf/ArrayBuffer.h int ArrayBuffer::clampValue(int x, int left, int right)
right              85 Source/wtf/ArrayBuffer.h     ASSERT(left <= right);
right              88 Source/wtf/ArrayBuffer.h     if (right < x)
right              89 Source/wtf/ArrayBuffer.h         x = right;
right             320 Source/wtf/text/WTFString.h     String right(unsigned len) const { return substring(length() - len, len); }