Searched refs:max (Results 276 - 300 of 424) sorted by path

<<11121314151617

/haiku/src/apps/charactermap/
H A DUnicodeBlocks.cpp391 uint32 max = kNumUnicodeBlocks; local
392 uint32 guess = (max + min) / 2;
394 while ((max >= min) && (guess < kNumUnicodeBlocks)) {
404 max = guess - 1;
407 guess = (max + min) / 2;
/haiku/src/apps/codycam/
H A DSettings.cpp151 int32 min, int32 max)
156 fMax(max),
149 ScalarValueSetting(const char* name, int32 defaultValue, const char* valueExpectedErrorString, const char* wrongValueErrorString, int32 min, int32 max) argument
H A DSettings.h70 int32 max = INT32_MAX);
/haiku/src/apps/cortex/TransportView/
H A DTransportView.cpp1216 float max = 0.0; local
1222 if(w > max)
1223 max = w;
1226 return max;
1243 // * max label width
1265 // * max field width
1304 float row_1_height = max(prefInfoHeight, _transport_button_height);
/haiku/src/apps/cortex/ValControl/
H A DNumericValControl.cpp182 printf(" max value: %f\n", fParam->MaxValue());
187 //! Value constraints (by default, the min/max allowed by the
541 double max = pow(10, fWholeDigits) - pow(10, -fFractionalDigits); local
542 double min = (negativeVisible) ? -max : 0.0;
544 setConstraints(min, max);
/haiku/src/apps/debuganalyzer/gui/main_window/
H A DSchedulingPage.cpp321 minLine = std::max(minLine, (int32)0);
456 lastLine = std::max(lastLine, line);
695 float dataWidth = std::max(width, MinSize().width);
718 float width = std::max(float(timeSpan / fNSecsPerPixel), 100.0f);
958 nanotime_t startTime = std::max(event.time, fStartTime);
991 nanotime_t startTime = std::max(event.time, fStartTime);
1167 clusterEnd = std::max(clusterEnd, requestEnd);
1220 clusterEnd = std::max(clusterEnd, operationEnd);
1639 float dataHeight = std::max(height, fSchedulingView->MinSize().height);
1674 std::max(threadsViewSiz
[all...]
/haiku/src/apps/debugger/user_interface/cli/
H A DCommandLineUserInterface.cpp434 = std::max(longestCommandName, entry->Name().Length());
/haiku/src/apps/deskbar/
H A DBarMenuBar.cpp126 float width = std::max(63.f, ceilf(63 * be_bold_font->Size() / 12.f));
127 float height = std::max(22.f, ceilf(22 * be_bold_font->Size() / 12.f));
346 float iconHeight = std::max(kTeamIconBitmapHeight,
H A DBarView.cpp473 height = std::max(fTabHeight,
478 height = std::max(TeamMenuItemHeight(),
656 windowHeight = std::max(screenFrame.bottom, windowHeight);
681 windowHeight = std::max(TeamMenuItemHeight(),
1287 return std::max(iconOnlyHeight, labelHeight);
H A DBarWindow.cpp708 maxHeight = std::max(fBarView->TabHeight(), kGutter
713 const int32 max local
721 maxHeight = max + iconPadding / 2;
H A DStatusView.cpp149 fMaxReplicantHeight = std::max(gMinReplicantHeight,
156 // max(129, height * 3), and restrict the minimum window width for it)
245 width = std::max(gMinimumTrayWidth, width);
255 height = std::max(fMinTrayHeight, height);
271 width = std::max(gMinimumTrayWidth, width);
276 height = std::max(fMinTrayHeight, fBarView->TabHeight());
H A DSwitcher.cpp803 int32 max = CountWindows(fCurrentIndex); local
809 if (next >= max) {
819 next = max - 1;
852 int32 max = fGroupList.CountItems();
855 if (fCurrentIndex >= max)
860 fCurrentIndex = max - 1;
H A DTeamMenu.cpp106 minItemWidth = std::max(floorf(gMinimumWindowWidth / 2),
126 ? std::max(labelWidth, iconOnlyWidth)
129 maxItemWidth = std::max(maxItemWidth, itemWidth);
/haiku/src/apps/diskprobe/
H A DFindWindow.cpp552 ResizeTo(std::max(Bounds().Width() / 2, 300.f),
/haiku/src/apps/expander/
H A DExpanderWindow.cpp113 size.width = std::max(size.width, fSourceButton->PreferredSize().width);
114 size.width = std::max(size.width, fExpandButton->PreferredSize().width);
404 float max, pos; local
405 fScrollView->ScrollBar(B_VERTICAL)->GetRange(NULL, &max);
407 bool atEnd = (pos == max);
421 fScrollView->ScrollBar(B_VERTICAL)->GetRange(NULL, &max);
422 fScrollView->ScrollBar(B_VERTICAL)->SetValue(max);
769 bottom = std::max(fPreviousHeight, minHeight);
/haiku/src/apps/haikudepot/build/scripts/
H A Dustache.py374 column = 1 + start - max(0, template.rfind(b'\n', 0, start))
/haiku/src/apps/haikudepot/textview/
H A DTextDocumentView.cpp266 TextDocumentView::GetHeightForWidth(float width, float* min, float* max, argument
276 if (max != NULL)
277 *max = height;
484 maxRange = std::max(maxRange, 0L);
498 maxRange = std::max(maxRange, 0L);
H A DTextDocumentView.h50 float* max, float* preferred);
H A DTextEditor.cpp182 std::max(fSelection.Caret(), fSelection.Anchor()),
367 return std::max(fSelection.Caret(), fSelection.Anchor());
/haiku/src/apps/haikudepot/ui/
H A DFeaturedPackagesView.cpp489 sFont->SetSize(std::max(9.0f, floorf(sFont->Size() * 0.92f)));
H A DFilterView.cpp48 minSearchWidth = std::max(minSearchSize.width, minSearchWidth);
H A DPackageInfoView.cpp255 font.SetSize(std::max(9.0f, floorf(font.Size() * 0.92f)));
280 font.SetSize(std::max(9.0f, floorf(font.Size() * 0.85f)));
659 smallFont.SetSize(std::max(9.0f, ceilf(smallFont.Size() * 0.85f)));
920 smallFont.SetSize(std::max(9.0f, floorf(smallFont.Size() * 0.85f)));
/haiku/src/apps/icon-o-matic/
H A DMainWindow.cpp1073 splitWidth = std::max(splitWidth, minSize.width);
/haiku/src/apps/mail/
H A DAddressTextControl.cpp276 BSize max(MinSize());
277 max.width = B_SIZE_UNLIMITED;
278 return BLayoutUtils::ComposeSize(ExplicitMaxSize(), max);
/haiku/src/apps/mandelbrot/
H A DMandelbrot.cpp186 std::max(fSelectStart.x, fSelectEnd.x),
187 std::max(fSelectStart.y, fSelectEnd.y)),

Completed in 368 milliseconds

<<11121314151617