Home
last modified time | relevance | path

Searched refs:newRight (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
DLineWidth.cpp87 float newRight = m_block.logicalLeftForFloat(newFloat).toFloat(); in shrinkAvailableWidthForNewFloatIfNeeded() local
90 newRight += shapeDeltas.leftMarginBoxDelta(); in shrinkAvailableWidthForNewFloatIfNeeded()
92 newRight = m_right; in shrinkAvailableWidthForNewFloatIfNeeded()
95 newRight -= floorToInt(m_block.textIndentOffset()); in shrinkAvailableWidthForNewFloatIfNeeded()
96 m_right = std::min<float>(m_right, newRight); in shrinkAvailableWidthForNewFloatIfNeeded()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRootInlineBox.cpp411 LayoutUnit newRight = block().logicalRightOffsetForLine(selectionTop, false); in selectionTop() local
412 if (prevLeft > newLeft || prevRight < newRight) in selectionTop()
462 LayoutUnit newRight = block().logicalRightOffsetForLine(selectionBottom, false); in selectionBottom() local
463 if (nextLeft > newLeft || nextRight < newRight) in selectionBottom()
/external/llvm/include/llvm/ADT/
DImmutableSet.h479 TreeTy* createNode(TreeTy* newLeft, TreeTy* oldTree, TreeTy* newRight) { in createNode() argument
480 return createNode(newLeft, getValue(oldTree), newRight); in createNode()
583 TreeTy* newRight = removeMinBinding(R,OldNode); in combineTrees() local
584 return balanceTree(L, getValue(OldNode), newRight); in combineTrees()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocumentMarkerController.cpp348 DocumentMarker newRight = marker; in removeMarkers() local
349 newRight.setStartOffset(endOffset); in removeMarkers()
351 list->insert(insertIndex, RenderedDocumentMarker::create(newRight)); in removeMarkers()