/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
D | FloatRect.h | 84 void setHeight(float height) { m_size.setHeight(height); } in setHeight() function 116 setHeight(std::max(0.0f, height() - delta)); in shiftYEdgeTo() 121 setHeight(std::max(0.0f, height() + delta)); in shiftMaxYEdgeTo() 154 m_size.setHeight(m_size.height() + dy + dy); in inflateY() 186 m_size.setHeight(bottom - top); in setLocationAndSizeFromEdges() 210 a.setHeight(a.height() + b.height());
|
D | IntRect.h | 79 void setHeight(int height) { m_size.setHeight(height); } in setHeight() function 111 setHeight(std::max(0, height() - delta)); in shiftYEdgeTo() 116 setHeight(std::max(0, height() + delta)); in shiftMaxYEdgeTo() 145 m_size.setHeight(m_size.height() + dy + dy); in inflateY()
|
D | IntRect.cpp | 81 m_size.setHeight(bottom - top); in intersect() 102 m_size.setHeight(bottom - top); in unite() 123 m_size.setHeight(bottom - top); in uniteIfNonZero() 131 m_size.setHeight((int)(height() * s)); in scale()
|
D | FloatRoundedRect.cpp | 84 m_topLeft.setHeight(std::max<float>(0, m_topLeft.height() + topWidth)); in expand() 88 m_topRight.setHeight(std::max<float>(0, m_topRight.height() + topWidth)); in expand() 92 m_bottomLeft.setHeight(std::max<float>(0, m_bottomLeft.height() + bottomWidth)); in expand() 96 m_bottomRight.setHeight(std::max<float>(0, m_bottomRight.height() + bottomWidth)); in expand()
|
D | LayoutRect.h | 82 void setHeight(LayoutUnit height) { m_size.setHeight(height); } in setHeight() function 124 setHeight(std::max<LayoutUnit>(0, height() - delta)); in shiftYEdgeTo() 129 setHeight(std::max<LayoutUnit>(0, height() + delta)); in shiftMaxYEdgeTo() 158 m_size.setHeight(m_size.height() + dy + dy); in inflateY()
|
D | IntSize.h | 53 void setHeight(int height) { m_height = height; } in setHeight() function 134 a.setHeight(a.height() + b.height()); 141 a.setHeight(a.height() - b.height());
|
D | LayoutSize.h | 59 void setHeight(LayoutUnit height) { m_height = height; } in setHeight() function 136 a.setHeight(a.height() + b.height()); 143 a.setHeight(a.height() - b.height());
|
D | FloatSize.h | 63 void setHeight(float height) { m_height = height; } in setHeight() function 124 a.setHeight(a.height() + b.height()); 131 a.setHeight(a.height() - b.height());
|
D | RoundedRect.cpp | 68 m_topLeft.setHeight(max<int>(0, m_topLeft.height() + topWidth)); in expand() 72 m_topRight.setHeight(max<int>(0, m_topRight.height() + topWidth)); in expand() 76 m_bottomLeft.setHeight(max<int>(0, m_bottomLeft.height() + bottomWidth)); in expand() 80 m_bottomRight.setHeight(max<int>(0, m_bottomRight.height() + bottomWidth)); in expand()
|
/external/jmonkeyengine/engine/src/test/jme3test/post/ |
D | TestMultiRenderTarget.java | 138 display.setHeight(h); in reshape() 151 display1.setHeight(h/2); in reshape() 154 display2.setHeight(h/2); in reshape() 157 display3.setHeight(h/2); in reshape() 160 display4.setHeight(h/2); in reshape()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderOverflow.h | 54 …void setMaxYLayoutOverflow(LayoutUnit overflow) { m_layoutOverflow.setHeight(overflow - m_layoutOv… in setMaxYLayoutOverflow() 59 …void setMaxYVisualOverflow(LayoutUnit overflow) { m_visualOverflow.setHeight(overflow - m_layoutOv… in setMaxYVisualOverflow() 98 m_layoutOverflow.setHeight(maxY - minY); in addLayoutOverflow() 110 m_visualOverflow.setHeight(maxY - m_visualOverflow.y()); in addVisualOverflow()
|
D | RenderScrollbarPart.cpp | 76 setHeight(m_scrollbar->height()); in layoutHorizontalPart() 84 setHeight(m_scrollbar->height()); in layoutVerticalPart() 127 setHeight(max(minHeight, min(maxHeight, h))); in computeScrollbarHeight() 182 setHeight(rect.height()); in paintIntoRect()
|
D | RenderDeprecatedFlexibleBox.cpp | 280 setHeight(0); in layoutBlock() 365 setHeight(yPos); in layoutHorizontalBox() 405 setHeight(max(yPos + maxAscent + maxDescent, height())); in layoutHorizontalBox() 408 setHeight(max(height(), yPos + child->height() + child->marginHeight())); in layoutHorizontalBox() 412 …setHeight(height() + lineHeight(true, style()->isHorizontalWritingMode() ? HorizontalLine : Vertic… in layoutHorizontalBox() 414 setHeight(height() + toAdd); in layoutHorizontalBox() 629 setHeight(oldHeight); in layoutHorizontalBox() 660 setHeight(borderTop() + paddingTop()); in layoutVerticalBox() 691 setHeight(height() + child->marginTop()); in layoutVerticalBox() 722 setHeight(height() + child->height() + child->marginBottom()); in layoutVerticalBox() [all …]
|
D | RenderThemeChromiumDefault.cpp | 215 style->setHeight(Length(size.height() * zoomLevel, Fixed)); in adjustSliderThumbSize() 218 style->setHeight(Length(size.width() * zoomLevel, Fixed)); in adjustSliderThumbSize() 262 unzoomedRect.setHeight(unzoomedRect.height() / zoomLevel); in paintCheckbox() 281 size.setHeight(size.height() * zoomLevel); in setCheckboxSize() 304 size.setHeight(size.height() * zoomLevel); in setRadioSize() 437 unzoomedRect.setHeight(unzoomedRect.height() / zoomLevel); in paintSliderTrack() 461 unzoomedRect.setHeight(unzoomedRect.height() / zoomLevel); in paintSliderThumb()
|
/external/jmonkeyengine/engine/src/test/jme3test/gui/ |
D | TestZOrder.java | 50 p.setHeight(100); in simpleInitApp() 58 p2.setHeight(100); in simpleInitApp()
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/ |
D | Terrain.java | 84 public void setHeight(Vector2f xzCoordinate, float height); in setHeight() method 94 public void setHeight(List<Vector2f> xz, List<Float> height); in setHeight() method
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
D | AXSpinButton.cpp | 104 parentRect.setHeight(parentRect.height() / 2); in elementRect() 107 parentRect.setHeight(parentRect.height() / 2); in elementRect()
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowBitmap.java | 44 shadowBitmap.setHeight(height); in createBitmap() 66 shadowBitmap.setHeight(dstHeight); in createScaledBitmap() 144 public void setHeight(int height) { in setHeight() method in ShadowBitmap
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
D | Image.cpp | 114 norm.setHeight(-norm.height()); in adjustForNegativeSize() 138 intrinsicTileSize.setHeight(scaledTileSize.height()); in drawTiled() 155 visibleSrcRect.setHeight(destRect.height() / scale.height()); in drawTiled() 192 tileScaleFactor.setHeight(dstRect.height() / (srcRect.height() * vRepetitions)); in drawTiled()
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | animatable_view.mm | 43 // Overridden to call setHeight for each progress tick. 46 [view_ setHeight:((progress * (endHeight_ - startHeight_)) + startHeight_)]; 65 - (void)setHeight:(CGFloat)newHeight {
|
D | animatable_view_unittest.mm | 41 [resizeDelegate_ setHeight:-1]; 42 [view_ setHeight:50];
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
D | animatable_view.mm | 43 // Overridden to call setHeight for each progress tick. 46 [view_ setHeight:((progress * (endHeight_ - startHeight_)) + startHeight_)]; 65 - (void)setHeight:(CGFloat)newHeight {
|
D | animatable_view_unittest.mm | 41 [resizeDelegate_ setHeight:-1]; 42 [view_ setHeight:50];
|
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/ |
D | ScrollingConstraints.cpp | 41 offset.setHeight(viewportRect.y() - m_viewportRectAtLastLayout.y()); in layerPositionForViewportRect() 43 offset.setHeight(viewportRect.maxY() - m_viewportRectAtLastLayout.maxY()); in layerPositionForViewportRect()
|
/external/chromium_org/third_party/WebKit/Source/platform/mac/ |
D | ScrollElasticityController.mm | 126 m_stretchScrollForce.setHeight(reboundDeltaForElasticDelta(stretchAmount.height())); 199 m_momentumVelocity.setHeight(eventCoalescedDeltaY / (float)timeDelta); 223 m_overflowScrollDelta.setHeight(m_overflowScrollDelta.height() + deltaY); 226 m_overflowScrollDelta.setHeight(m_overflowScrollDelta.height() + deltaY); 285 m_stretchScrollForce.setHeight(m_stretchScrollForce.height() + deltaY); 346 m_origVelocity.setHeight(0); 358 m_stretchScrollForce.setHeight(reboundDeltaForElasticDelta(newStretch.height()));
|