headers/os/interface/Font.h
317
mutable font_height fHeight;
headers/os/interface/ListItem.h
77
float fHeight;
headers/os/interface/ListItem.h
97
return fTop + ceilf(fHeight) - 1.0;
headers/private/interface/ColumnListView.h
151
float fHeight;
src/add-ons/network_settings/dialup/PPPoEAddon.cpp
207
*height = fHeight;
src/add-ons/network_settings/dialup/PPPoEAddon.cpp
222
BRect rect(0, 0, width, fHeight);
src/add-ons/network_settings/dialup/PPPoEAddon.cpp
62
fHeight = 20 // interface name control
src/add-ons/network_settings/dialup/PPPoEAddon.h
65
float fHeight;
src/add-ons/print/drivers/pcl6/Rasterizer.cpp
44
fHeight = fBounds.bottom - fBounds.top + 1;
src/add-ons/print/drivers/pcl6/Rasterizer.h
58
return fHeight;
src/add-ons/print/drivers/pcl6/Rasterizer.h
91
int fHeight;
src/add-ons/screen_savers/flurry/Flurry.cpp
121
glViewport(0, 0, int(fWidth), int(fHeight));
src/add-ons/screen_savers/flurry/Flurry.cpp
124
gluOrtho2D(0.0, fWidth, 0.0, fHeight);
src/add-ons/screen_savers/flurry/Flurry.cpp
165
glRectd(0.0, 0.0, fWidth, fHeight);
src/add-ons/screen_savers/flurry/Flurry.cpp
217
fHeight = newHeight;
src/add-ons/screen_savers/flurry/Flurry.cpp
220
fFlurryInfo->sys_glHeight = fHeight;
src/add-ons/screen_savers/flurry/Flurry.cpp
222
glViewport(0, 0, int(fWidth), int(fHeight));
src/add-ons/screen_savers/flurry/Flurry.cpp
225
gluOrtho2D(0.0, fWidth, 0.0, fHeight);
src/add-ons/screen_savers/flurry/Flurry.cpp
252
fFlurryInfo->sys_glHeight = fHeight;
src/add-ons/screen_savers/flurry/Flurry.cpp
72
fHeight = bounds.Height();
src/add-ons/screen_savers/flurry/Flurry.h
36
float fHeight;
src/add-ons/translators/gif/GIFLoad.cpp
142
fHeight = header[8] + (header[9] << 8);
src/add-ons/translators/gif/GIFLoad.cpp
277
if (fWidth != localWidth || fHeight != localHeight) {
src/add-ons/translators/gif/GIFLoad.cpp
284
fHeight = localHeight;
src/add-ons/translators/gif/GIFLoad.cpp
296
BRect rect(left, top, left + fWidth - 1, top + fHeight - 1);
src/add-ons/translators/gif/GIFLoad.cpp
305
header.dataSize = B_HOST_TO_BENDIAN_INT32(fWidth * 4 * fHeight);
src/add-ons/translators/gif/GIFLoad.cpp
55
fWidth, fHeight);
src/add-ons/translators/gif/GIFLoad.cpp
626
while (fRow >= fHeight) {
src/add-ons/translators/gif/GIFLoad.h
82
int fHeight;
src/add-ons/translators/psd/PSDLoader.cpp
201
int32 channelBytes = rowBytes * fHeight;
src/add-ons/translators/psd/PSDLoader.cpp
220
fStreamPos += fHeight * fChannels * 2;
src/add-ons/translators/psd/PSDLoader.cpp
222
fStreamPos += fHeight * fChannels * 4;
src/add-ons/translators/psd/PSDLoader.cpp
267
bitsHeader.bounds.bottom = fHeight - 1;
src/add-ons/translators/psd/PSDLoader.cpp
278
bitsHeader.dataSize = bitsHeader.rowBytes * fHeight;
src/add-ons/translators/psd/PSDLoader.cpp
293
int32 rowBytes = (fWidth / 8 ) * fHeight;
src/add-ons/translators/psd/PSDLoader.cpp
314
for (int h = 0; h < fHeight; h++) {
src/add-ons/translators/psd/PSDLoader.cpp
337
for (int h = 0; h < fHeight; h++) {
src/add-ons/translators/psd/PSDLoader.cpp
358
for (int h = 0; h < fHeight; h++) {
src/add-ons/translators/psd/PSDLoader.cpp
378
for (int h = 0; h < fHeight; h++) {
src/add-ons/translators/psd/PSDLoader.cpp
402
for (int h = 0; h < fHeight; h++) {
src/add-ons/translators/psd/PSDLoader.cpp
41
fHeight = _GetInt32FromStream(fStream);
src/add-ons/translators/psd/PSDLoader.h
106
int32 fHeight;
src/add-ons/translators/psd/PSDWriter.cpp
106
psdHeader << fHeight << fWidth; // Image size
src/add-ons/translators/psd/PSDWriter.cpp
137
psdLayersSection << (uint32)fHeight;
src/add-ons/translators/psd/PSDWriter.cpp
280
int32 channelSize = fWidth * fHeight;
src/add-ons/translators/psd/PSDWriter.cpp
296
for (int32 h = 0; h < fHeight; h++) {
src/add-ons/translators/psd/PSDWriter.cpp
55
fHeight = bounds.IntegerHeight() + 1;
src/add-ons/translators/psd/PSDWriter.h
66
int32 fHeight;
src/add-ons/translators/sgi/SGIImage.cpp
108
fHeight = _ReadShort();
src/add-ons/translators/sgi/SGIImage.cpp
119
fOffsetTable[0] = (int32*)calloc(fHeight * fChannelCount, sizeof(int32));
src/add-ons/translators/sgi/SGIImage.cpp
121
fOffsetTable[i] = fOffsetTable[0] + i * fHeight;
src/add-ons/translators/sgi/SGIImage.cpp
124
for (uint16 j = 0; j < fHeight; j++)
src/add-ons/translators/sgi/SGIImage.cpp
128
fLengthTable[0] = (int32*)calloc(fHeight * fChannelCount, sizeof(int32));
src/add-ons/translators/sgi/SGIImage.cpp
131
fLengthTable[i] = fLengthTable[0] + i * fHeight;
src/add-ons/translators/sgi/SGIImage.cpp
134
for (uint16 j = 0; j < fHeight; j++)
src/add-ons/translators/sgi/SGIImage.cpp
171
_WriteShort(fHeight = height);
src/add-ons/translators/sgi/SGIImage.cpp
216
fStream->Seek(2 * fHeight * fChannelCount * sizeof(int32), SEEK_CUR);
src/add-ons/translators/sgi/SGIImage.cpp
223
fOffsetTable[0] = (int32*)calloc(fHeight * fChannelCount, sizeof(int32));
src/add-ons/translators/sgi/SGIImage.cpp
226
fOffsetTable[i] = fOffsetTable[0] + i * fHeight;
src/add-ons/translators/sgi/SGIImage.cpp
230
fLengthTable[0] = (int32*)calloc(fHeight * fChannelCount, sizeof(int32));
src/add-ons/translators/sgi/SGIImage.cpp
233
fLengthTable[i] = fLengthTable[0] + i * fHeight;
src/add-ons/translators/sgi/SGIImage.cpp
260
int32 size = fHeight * fChannelCount * sizeof(int32);
src/add-ons/translators/sgi/SGIImage.cpp
313
y < 0 || y >= fHeight ||
src/add-ons/translators/sgi/SGIImage.cpp
325
off_t offset = 512 + (y + z * fHeight) * fWidth * fBytesPerChannel;
src/add-ons/translators/sgi/SGIImage.cpp
370
y < 0 || y >= fHeight ||
src/add-ons/translators/sgi/SGIImage.cpp
383
offset = 512 + (y + z * fHeight) * fWidth * fBytesPerChannel;
src/add-ons/translators/sgi/SGIImage.cpp
56
fHeight(0),
src/add-ons/translators/sgi/SGIImage.h
114
{ return fHeight; }
src/add-ons/translators/sgi/SGIImage.h
143
uint16 fHeight; // in number of pixels
src/apps/charactermap/CharacterView.cpp
305
*height = fHeight;
src/apps/charactermap/CharacterView.cpp
341
float fHeight;
src/apps/cortex/ValControl/ValControl.cpp
693
float fHeight = e.frame.Height();
src/apps/cortex/ValControl/ValControl.cpp
695
|| curFrame.Height() != fHeight)
src/apps/cortex/ValControl/ValControl.cpp
696
e.pView->ResizeTo(fWidth + 5.0, fHeight);
src/apps/deskbar/BarMenuTitle.cpp
55
fHeight(height),
src/apps/deskbar/BarMenuTitle.cpp
77
fHeight = height;
src/apps/deskbar/BarMenuTitle.cpp
85
*height = fHeight;
src/apps/deskbar/BarMenuTitle.h
66
float fHeight;
src/apps/deskbar/StatusView.cpp
1200
loc.y + floorf((fMaxReplicantHeight - fTime->fHeight) / 2));
src/apps/deskbar/TimeView.cpp
196
fHeight = fontHeight.ascent + fontHeight.descent - 2;
src/apps/deskbar/TimeView.cpp
206
*height = fHeight;
src/apps/deskbar/TimeView.cpp
77
fHeight(height),
src/apps/deskbar/TimeView.h
141
float fHeight;
src/apps/deskcalc/CalcView.cpp
1015
float height = fHeight;
src/apps/deskcalc/CalcView.cpp
1051
if (width != fWidth || height != fHeight)
src/apps/deskcalc/CalcView.cpp
1079
if (width != fWidth || height != fHeight)
src/apps/deskcalc/CalcView.cpp
1422
BRect r(0.0, 0.0, fWidth, fHeight);
src/apps/deskcalc/CalcView.cpp
1424
r.bottom = floorf(fHeight * kDisplayScaleY) + 1;
src/apps/deskcalc/CalcView.cpp
1436
r.bottom = fHeight;
src/apps/deskcalc/CalcView.cpp
1437
r.top = floorf(fHeight * kDisplayScaleY);
src/apps/deskcalc/CalcView.cpp
204
fHeight(1),
src/apps/deskcalc/CalcView.cpp
238
fHeight(1),
src/apps/deskcalc/CalcView.cpp
625
float sizeDisp = fHeight * kDisplayScaleY;
src/apps/deskcalc/CalcView.cpp
627
float sizeRow = (fHeight - sizeDisp) / (float)fRows;
src/apps/deskcalc/CalcView.cpp
739
fHeight = height;
src/apps/deskcalc/CalcView.cpp
754
? fHeight : fHeight * kDisplayScaleY;
src/apps/deskcalc/CalcView.cpp
865
float sizeDisp = fHeight * kDisplayScaleY;
src/apps/deskcalc/CalcView.cpp
866
BRect keypadRect(0.0, sizeDisp, fWidth, fHeight);
src/apps/deskcalc/CalcView.h
131
float fHeight;
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
110
result = into->AddUInt32(kKeyHeight, fHeight);
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
31
if (from->FindUInt32(kKeyHeight, &fHeight) != B_OK)
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
67
return fHeight;
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
74
return !fCode.IsEmpty() && fWidth > 0 && fHeight > 0;
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
81
return fCode == other.fCode && fHeight == other.fHeight && fWidth == other.fWidth;
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
89
result.SetToFormat("%s_%" B_PRIu32 "x%" B_PRIu32, fCode.String(), fWidth, fHeight);
src/apps/haikudepot/model/ScreenshotCoordinate.h
40
uint32 fHeight;
src/apps/haikudepot/packagemodel/ScreenshotInfo.cpp
16
fHeight(),
src/apps/haikudepot/packagemodel/ScreenshotInfo.cpp
27
fHeight(height),
src/apps/haikudepot/packagemodel/ScreenshotInfo.cpp
37
fHeight(other.fHeight),
src/apps/haikudepot/packagemodel/ScreenshotInfo.cpp
48
fHeight = other.fHeight;
src/apps/haikudepot/packagemodel/ScreenshotInfo.cpp
59
&& fHeight == other.fHeight
src/apps/haikudepot/packagemodel/ScreenshotInfo.h
31
{ return fHeight; }
src/apps/haikudepot/packagemodel/ScreenshotInfo.h
38
int32 fHeight;
src/apps/haikudepot/ui/FeaturedPackagesView.cpp
100
((fHeight - totalTitleAndMetadataHeight) / 2.0) + titleFontHeight.ascent
src/apps/haikudepot/ui/FeaturedPackagesView.cpp
123
(fHeight - ratingStarsMetrics.Size().Height()) / 2),
src/apps/haikudepot/ui/FeaturedPackagesView.cpp
134
width - padding, fHeight - (padding * 2.0));
src/apps/haikudepot/ui/FeaturedPackagesView.cpp
146
return fHeight;
src/apps/haikudepot/ui/FeaturedPackagesView.cpp
180
float fHeight;
src/apps/haikudepot/ui/FeaturedPackagesView.cpp
80
fHeight = fmaxf(totalTitleAndMetadataHeight, iconSize.Height()) + 2.0 * padding;
src/apps/haikudepot/ui/FeaturedPackagesView.cpp
83
float iconInset = (fHeight - iconSize.Width()) / 2.0;
src/apps/haikudepot/ui/FeaturedPackagesView.cpp
98
(fHeight - totalTitleAndMetadataHeight) / 2.0,
src/apps/icon-o-matic/generic/gui/SwatchView.h
55
float fHeight;
src/apps/icon-o-matic/generic/property/specific_properties/IconProperty.cpp
28
fHeight(height),
src/apps/icon-o-matic/generic/property/specific_properties/IconProperty.cpp
39
fHeight(other.fHeight),
src/apps/icon-o-matic/generic/property/specific_properties/IconProperty.h
52
uint32 Height() const { return fHeight; }
src/apps/icon-o-matic/generic/property/specific_properties/IconProperty.h
59
uint32 fHeight;
src/apps/icon-o-matic/import_export/svg/DocumentBuilder.cpp
35
fHeight(0),
src/apps/icon-o-matic/import_export/svg/DocumentBuilder.cpp
55
fHeight = height;
src/apps/icon-o-matic/import_export/svg/DocumentBuilder.cpp
76
bounds.Set(0.0, 0.0, (int32)fWidth - 1, (int32)fHeight - 1);
src/apps/icon-o-matic/import_export/svg/DocumentBuilder.h
52
uint32 fHeight;
src/apps/mandelbrot/FractalEngine.cpp
118
fHeight = msg->GetUInt16("height", 240);
src/apps/mandelbrot/FractalEngine.cpp
120
fRenderBufferLen = fWidth * fHeight * 3;
src/apps/mandelbrot/FractalEngine.cpp
123
fWidth, fHeight, fRenderBuffer);
src/apps/mandelbrot/FractalEngine.cpp
170
if (size.IntegerWidth() != fWidth || size.IntegerHeight() != fHeight) {
src/apps/mandelbrot/FractalEngine.cpp
249
uint16 height = engine->fHeight;
src/apps/mandelbrot/FractalEngine.cpp
294
double imaginary = (y * -(fSize) + fLocationY) - (fHeight / 2 * -(fSize));
src/apps/mandelbrot/FractalEngine.cpp
32
fWidth(0), fHeight(0),
src/apps/mandelbrot/FractalEngine.h
44
uint16 fHeight;
src/apps/showimage/Filter.cpp
1000
rect.Set(0, 0, fWidth, fHeight);
src/apps/showimage/Filter.cpp
1099
int32 height = (fHeight + 1) / n;
src/apps/showimage/Filter.cpp
1102
to = fHeight;
src/apps/showimage/Filter.cpp
1114
destX = fHeight - y;
src/apps/showimage/Filter.cpp
1133
destY = fHeight - y;
src/apps/showimage/Filter.cpp
972
fHeight(0),
src/apps/showimage/Filter.cpp
995
fHeight = GetSrcImage()->Bounds().IntegerHeight();
src/apps/showimage/Filter.cpp
998
rect.Set(0, 0, fHeight, fWidth);
src/apps/showimage/Filter.h
217
int32 fHeight;
src/apps/showimage/PrintOptionsWindow.cpp
164
fHeight = AddTextControl("height", B_TRANSLATE("Height: "),
src/apps/showimage/PrintOptionsWindow.cpp
189
.Add(fHeight)
src/apps/showimage/PrintOptionsWindow.cpp
265
SetValue(fHeight, fCurrentOptions.Height());
src/apps/showimage/PrintOptionsWindow.cpp
269
if (GetValue(fHeight, &value) && fCurrentOptions.Height() != value) {
src/apps/showimage/PrintOptionsWindow.cpp
69
fHeight = (fBounds.Height() + 1) * w / (fBounds.Width() + 1);
src/apps/showimage/PrintOptionsWindow.cpp
77
fHeight = h;
src/apps/showimage/PrintOptionsWindow.h
46
float Height() const { return fHeight; }
src/apps/showimage/PrintOptionsWindow.h
55
float fWidth, fHeight; // 1/72 Inches
src/apps/showimage/PrintOptionsWindow.h
85
BTextControl* fHeight;
src/apps/soundrecorder/ScopeView.cpp
130
float middle = fHeight / 2;
src/apps/soundrecorder/ScopeView.cpp
39
fHeight = Bounds().Height();
src/apps/soundrecorder/ScopeView.h
54
float fHeight;
src/apps/sudoku/SudokuView.cpp
1009
y * fHeight - 1 + y / fBlockSize * kStrongLineSize + 1);
src/apps/sudoku/SudokuView.cpp
1017
BPoint rightBottom = leftTop + BPoint(fWidth - 2, fHeight - 2);
src/apps/sudoku/SudokuView.cpp
1124
block = fHeight * fBlockSize + kStrongLineSize;
src/apps/sudoku/SudokuView.cpp
1126
uint32 offsetY = (uint32)floor((where.y - y * block) / fHeight);
src/apps/sudoku/SudokuView.cpp
567
fHeight = (Bounds().Height() + 2 - kStrongLineSize * (fBlockSize - 1))
src/apps/sudoku/SudokuView.cpp
569
_FitFont(fFieldFont, fWidth - 2, fHeight - 2);
src/apps/sudoku/SudokuView.cpp
574
+ (fHeight - ceilf(fontHeight.descent)) / 2;
src/apps/sudoku/SudokuView.cpp
579
fHintHeight = (fHeight - 2) / fBlockSize;
src/apps/sudoku/SudokuView.cpp
829
float height = fHeight - 1;
src/apps/sudoku/SudokuView.cpp
838
height += fHeight;
src/apps/sudoku/SudokuView.h
139
float fHeight;
src/apps/switcher/WindowsView.cpp
177
fHeight = height;
src/apps/switcher/WindowsView.cpp
192
return BSize(fWidth, fHeight);
src/apps/switcher/WindowsView.cpp
197
return BSize(B_SIZE_UNLIMITED, fHeight);
src/apps/switcher/WindowsView.cpp
202
return BSize(fWidth, fHeight);
src/apps/switcher/WindowsView.cpp
215
int32 fHeight;
src/apps/terminal/BasicTerminalBuffer.cpp
1072
y = restrict_value(y, 0, fHeight - 1);
src/apps/terminal/BasicTerminalBuffer.cpp
110
fHeight(0),
src/apps/terminal/BasicTerminalBuffer.cpp
1200
if (width == fWidth && height == fHeight)
src/apps/terminal/BasicTerminalBuffer.cpp
1215
int32 endLine = min_c(fHeight, height);
src/apps/terminal/BasicTerminalBuffer.cpp
1218
if (height < fHeight) {
src/apps/terminal/BasicTerminalBuffer.cpp
1249
_FreeLines(fScreen, fHeight);
src/apps/terminal/BasicTerminalBuffer.cpp
1259
fHeight = height;
src/apps/terminal/BasicTerminalBuffer.cpp
1262
fScrollBottom = fHeight - 1;
src/apps/terminal/BasicTerminalBuffer.cpp
1313
int32 totalLines = historySize + fHeight;
src/apps/terminal/BasicTerminalBuffer.cpp
133
_FreeLines(fScreen, fHeight);
src/apps/terminal/BasicTerminalBuffer.cpp
1438
_FreeLines(fScreen, fHeight);
src/apps/terminal/BasicTerminalBuffer.cpp
1459
fHeight = height;
src/apps/terminal/BasicTerminalBuffer.cpp
1463
fScrollBottom = fHeight - 1;
src/apps/terminal/BasicTerminalBuffer.cpp
147
fHeight = height;
src/apps/terminal/BasicTerminalBuffer.cpp
150
fScrollBottom = fHeight - 1;
src/apps/terminal/BasicTerminalBuffer.cpp
1511
} else if (bottom == fHeight - 1) {
src/apps/terminal/BasicTerminalBuffer.cpp
1514
fScreenOffset = (fScreenOffset + numLines) % fHeight;
src/apps/terminal/BasicTerminalBuffer.cpp
1523
for (int32 i = fHeight - 1; i > bottom; i--) {
src/apps/terminal/BasicTerminalBuffer.cpp
1529
fScreenOffset = (fScreenOffset + numLines) % fHeight;
src/apps/terminal/BasicTerminalBuffer.cpp
1559
if (bottom < fHeight - 1)
src/apps/terminal/BasicTerminalBuffer.cpp
1560
_Invalidate(bottom + 1, fHeight - 1);
src/apps/terminal/BasicTerminalBuffer.cpp
180
for (int32 i = 0; i < fHeight; i++)
src/apps/terminal/BasicTerminalBuffer.cpp
1808
int countLines = dumpHistory ? fHistory->Size() : fHeight;
src/apps/terminal/BasicTerminalBuffer.cpp
204
if (width == fWidth && height == fHeight)
src/apps/terminal/BasicTerminalBuffer.cpp
226
_ClearLines(0, fHeight - 1);
src/apps/terminal/BasicTerminalBuffer.cpp
235
_Invalidate(0, fHeight - 1);
src/apps/terminal/BasicTerminalBuffer.cpp
248
int32 last = fHeight - 1;
src/apps/terminal/BasicTerminalBuffer.cpp
57
return (index + fScreenOffset) % fHeight;
src/apps/terminal/BasicTerminalBuffer.cpp
678
for (int32 y = 0; y < fHeight; y++) {
src/apps/terminal/BasicTerminalBuffer.cpp
687
_Invalidate(0, fHeight - 1);
src/apps/terminal/BasicTerminalBuffer.cpp
71
if (index >= fHeight)
src/apps/terminal/BasicTerminalBuffer.cpp
715
if (fCursor.y < fHeight - 1)
src/apps/terminal/BasicTerminalBuffer.cpp
77
return _LineAt(index + fHeight);
src/apps/terminal/BasicTerminalBuffer.cpp
890
if (fCursor.y < fHeight - 1)
src/apps/terminal/BasicTerminalBuffer.cpp
891
_ClearLines(fCursor.y + 1, fHeight - 1);
src/apps/terminal/BasicTerminalBuffer.cpp
902
_Scroll(0, fHeight - 1, fHeight);
src/apps/terminal/BasicTerminalBuffer.cpp
997
fScrollTop = restrict_value(top, 0, fHeight - 1);
src/apps/terminal/BasicTerminalBuffer.cpp
998
fScrollBottom = restrict_value(bottom, fScrollTop, fHeight - 1);
src/apps/terminal/BasicTerminalBuffer.h
228
int32 fHeight;
src/apps/terminal/BasicTerminalBuffer.h
71
int32 Height() const { return fHeight; }
src/apps/terminal/TerminalBuffer.cpp
256
int32 oldHeight = fHeight;
src/apps/terminal/TerminalBuffer.cpp
272
fHeight = oldHeight;
src/apps/terminal/TerminalBuffer.cpp
279
fHeight = height;
src/kits/interface/ColumnListView.cpp
561
fHeight(std::max(kMinRowHeight,
src/kits/interface/ColumnListView.cpp
575
fHeight(height),
src/kits/interface/ColumnListView.cpp
642
return fHeight;
src/kits/interface/Font.cpp
1184
if (fHeight.ascent == kUninitializedAscent) {
src/kits/interface/Font.cpp
1200
link.Read<font_height>(&fHeight);
src/kits/interface/Font.cpp
1203
*_height = fHeight;
src/kits/interface/Font.cpp
1394
fHeight = font.fHeight;
src/kits/interface/Font.cpp
1441
fHeight.ascent, fHeight.descent, fHeight.leading, fEncoding);
src/kits/interface/Font.cpp
1493
fHeight.ascent = kUninitializedAscent;
src/kits/interface/Font.cpp
1528
fHeight.ascent = kUninitializedAscent;
src/kits/interface/Font.cpp
1556
fHeight.ascent = kUninitializedAscent;
src/kits/interface/Font.cpp
374
font->fHeight.ascent = kUninitializedAscent;
src/kits/interface/Font.cpp
520
fHeight.ascent = 7.0;
src/kits/interface/Font.cpp
521
fHeight.descent = 2.0;
src/kits/interface/Font.cpp
522
fHeight.leading = 13.0;
src/kits/interface/Font.cpp
566
fHeight.ascent = kUninitializedAscent;
src/kits/interface/Font.cpp
602
fHeight.ascent = kUninitializedAscent;
src/kits/interface/Font.cpp
631
fHeight.ascent = kUninitializedAscent;
src/kits/interface/Font.cpp
642
fHeight.ascent = kUninitializedAscent;
src/kits/interface/Font.cpp
650
fHeight.ascent = kUninitializedAscent;
src/kits/interface/Font.cpp
658
fHeight.ascent = kUninitializedAscent;
src/kits/interface/ListItem.cpp
136
fHeight = height;
src/kits/interface/ListItem.cpp
23
fHeight(0),
src/kits/interface/ListItem.cpp
39
fHeight(0),
src/kits/interface/ListItem.cpp
87
return fHeight;
src/libs/glut/glutGameMode.cpp
185
if (fWidth == -1 && fHeight == -1 && fPixelDepth == -1
src/libs/glut/glutGameMode.cpp
218
if (fHeight > 0 && fModesList[i].virtual_height != fHeight)
src/libs/glut/glutGameMode.cpp
27
fHeight(-1),
src/libs/glut/glutGameMode.cpp
73
fWidth = fHeight = fPixelDepth = fRefreshRate = -1;
src/libs/glut/glutGameMode.cpp
76
&fWidth, &fHeight, &fPixelDepth, &fRefreshRate) == expectedArgs) {
src/libs/glut/glutGameMode.h
33
int Height() const { return fHeight; }
src/libs/glut/glutGameMode.h
47
int fHeight;
src/preferences/screen/MonitorView.cpp
128
if (fWidth == width && fHeight == height)
src/preferences/screen/MonitorView.cpp
132
fHeight = height;
src/preferences/screen/MonitorView.cpp
200
float factorY = (float)fHeight / fMaxHeight;
src/preferences/screen/MonitorView.cpp
232
fDPI = (int32)round((fWidth / x + fHeight / y) / 2);
src/preferences/screen/MonitorView.cpp
33
fHeight(height),
src/preferences/screen/MonitorView.h
41
int32 fHeight;
src/servers/app/ServerBitmap.cpp
141
bytesPerRow, fBytesPerRow, colorSpace, fSpace, fWidth, fHeight);
src/servers/app/ServerBitmap.cpp
210
"bpr %" B_PRId32 ", buffer %p\n", this, fWidth, fHeight, (int32)fSpace,
src/servers/app/ServerBitmap.cpp
70
fHeight(rect.IntegerHeight() + 1),
src/servers/app/ServerBitmap.cpp
93
fHeight = bitmap->fHeight;
src/servers/app/ServerBitmap.cpp
99
fHeight = 0;
src/servers/app/ServerBitmap.h
103
int32 fHeight;
src/servers/app/ServerBitmap.h
130
int64 length = fBytesPerRow * fHeight;
src/servers/app/ServerBitmap.h
144
fHeight = from->fHeight;
src/servers/app/ServerBitmap.h
45
{ return BRect(0, 0, fWidth - 1, fHeight - 1); }
src/servers/app/ServerBitmap.h
49
{ return fHeight; }
src/servers/app/ServerCursor.cpp
116
fHeight = 0;
src/servers/app/drawing/MallocBuffer.cpp
19
if (fWidth > 0 && fHeight > 0) {
src/servers/app/drawing/MallocBuffer.cpp
20
fBuffer = malloc((fWidth * 4) * fHeight);
src/servers/app/drawing/MallocBuffer.cpp
77
return fHeight;
src/servers/app/drawing/MallocBuffer.h
28
uint32 fHeight;
src/servers/app/drawing/interface/virtual/DWindowBuffer.cpp
111
fHeight = height;
src/servers/app/drawing/interface/virtual/DWindowBuffer.cpp
12
fHeight(0),
src/servers/app/drawing/interface/virtual/DWindowBuffer.cpp
66
return fHeight;
src/servers/app/drawing/interface/virtual/DWindowBuffer.cpp
88
fHeight = info->window_bounds.bottom - info->window_bounds.top + 1;
src/servers/app/drawing/interface/virtual/DWindowBuffer.cpp
94
fHeight = 0;
src/servers/app/drawing/interface/virtual/DWindowBuffer.h
36
uint32 fHeight;
src/servers/app/font/FontStyle.cpp
128
height.ascent = fHeight.ascent * size;
src/servers/app/font/FontStyle.cpp
129
height.descent = fHeight.descent * size;
src/servers/app/font/FontStyle.cpp
130
height.leading = fHeight.leading * size;
src/servers/app/font/FontStyle.cpp
50
fHeight.ascent = (double)face->ascender / face->units_per_EM;
src/servers/app/font/FontStyle.cpp
51
fHeight.descent = (double)-face->descender / face->units_per_EM;
src/servers/app/font/FontStyle.cpp
56
fHeight.leading = (double)(face->height - face->ascender
src/servers/app/font/FontStyle.cpp
68
fHeight.ascent = (double)metrics.ascender / size;
src/servers/app/font/FontStyle.cpp
69
fHeight.descent = (double)-metrics.descender / size;
src/servers/app/font/FontStyle.cpp
70
fHeight.leading = (double)(metrics.height - metrics.ascender
src/servers/app/font/FontStyle.h
162
font_height fHeight;
src/servers/notification/NotificationView.cpp
505
fHeight = y + buttonSize;
src/servers/notification/NotificationView.cpp
509
fHeight = std::max(fHeight, fIconSize + buttonSize);
src/servers/notification/NotificationView.cpp
512
static_cast<BGroupLayout*>(GetLayout())->SetInsets(kIconStripeWidth + 8, fHeight, 8, 8);
src/servers/notification/NotificationView.cpp
544
float height = fHeight;
src/servers/notification/NotificationView.h
75
float fHeight;
src/tests/servers/app/newerClipping/drawing/DirectWindowBuffer.cpp
63
return fHeight;
src/tests/servers/app/newerClipping/drawing/DirectWindowBuffer.cpp
85
fHeight = info->window_bounds.bottom - info->window_bounds.top + 1;
src/tests/servers/app/newerClipping/drawing/DirectWindowBuffer.cpp
89
fHeight = 0;
src/tests/servers/app/newerClipping/drawing/DirectWindowBuffer.cpp
9
fHeight(0),
src/tests/servers/app/newerClipping/drawing/DirectWindowBuffer.h
28
uint32 fHeight;