Lines Matching refs:aHeight

73334   constexpr BaseSize(T aWidth, T aHeight) : width(aWidth), height(aHeight) {}
73336 void SizeTo(T aWidth, T aHeight) { width = aWidth; height = aHeight; }
74712 constexpr IntSizeTyped(ToInt aWidth, ToInt aHeight) : Super(aWidth.value, aHeight.value) {}
74714 static IntSizeTyped<units> Round(float aWidth, float aHeight) {
74715 return IntSizeTyped(int32_t(floorf(aWidth + 0.5)), int32_t(floorf(aHeight + 0.5)));
74718 static IntSizeTyped<units> Truncate(float aWidth, float aHeight) {
74719 return IntSizeTyped(int32_t(aWidth), int32_t(aHeight));
74722 static IntSizeTyped<units> Ceil(float aWidth, float aHeight) {
74723 return IntSizeTyped(int32_t(ceil(aWidth)), int32_t(ceil(aHeight)));
74726 static IntSizeTyped<units> Floor(float aWidth, float aHeight) {
74727 return IntSizeTyped(int32_t(floorf(aWidth)), int32_t(floorf(aHeight)));
74758 constexpr SizeTyped(F aWidth, F aHeight) : Super(aWidth, aHeight) {}
74815 nsSize(nscoord aWidth, nscoord aHeight) : Super(aWidth, aHeight) {}
75131 BaseRect(T aX, T aY, T aWidth, T aHeight) :
75132 x(aX), y(aY), width(aWidth), height(aHeight)
75278 void SetRect(T aX, T aY, T aWidth, T aHeight)
75280 x = aX; y = aY; width = aWidth; height = aHeight;
75290 void SizeTo(T aWidth, T aHeight) { width = aWidth; height = aHeight; }
77120 IntRectTyped(ToInt aX, ToInt aY, ToInt aWidth, ToInt aHeight) :
77121 Super(aX.value, aY.value, aWidth.value, aHeight.value) {}
108329 gfxSize(gfxFloat aWidth, gfxFloat aHeight) : Super(aWidth, aHeight) {}
108650 nsRect(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight) :
108651 Super(aX, aY, aWidth, aHeight)
112933 virtual nsresult Initialize(nscoord aWidth, nscoord aHeight) = 0;
112939 virtual nsresult ResizeReflow(nscoord aWidth, nscoord aHeight, nscoord aOldWidth = 0, nscoord aOldHeight = 0) = 0;
112944 virtual nsresult ResizeReflowIgnoreOverride(nscoord aWidth, nscoord aHeight, nscoord aOldWidth, nscoord aOldHeight) = 0;
113972 void SetScrollPositionClampingScrollPortSize(nscoord aWidth, nscoord aHeight);
115242 int32_t aWidth, int32_t aHeight);
115761 gfxRect(gfxFloat aX, gfxFloat aY, gfxFloat aWidth, gfxFloat aHeight) :
115762 Super(aX, aY, aWidth, aHeight) {}
125979 virtual nsresult GetInnerHeight(int32_t* aHeight) = 0;
162276 virtual nsresult GetHeight(float *aHeight) = 0;
162362 double aWidth = 0, double aHeight = 0)
162367 , mHeight(aHeight)
162372 virtual nsresult GetLeft(float *aLeft) override; virtual nsresult GetTop(float *aTop) override; virtual nsresult GetRight(float *aRight) override; virtual nsresult GetBottom(float *aBottom) override; virtual nsresult GetWidth(float *aWidth) override; virtual nsresult GetHeight(float *aHeight) override;
162378 double aWidth, double aHeight, ErrorResult& aRV);
162382 void SetRect(float aX, float aY, float aWidth, float aHeight) {
162383 mX = aX; mY = aY; mWidth = aWidth; mHeight = aHeight;
162416 void SetHeight(double aHeight)
162418 mHeight = aHeight;