Home
last modified time | relevance | path

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

/haiku/src/apps/icon-o-matic/generic/support/
H A Dsupport.cpp99 append_float(BString& string, float n, int32 maxDigits) in append_float() argument
112 rounded = (int32)(n * pow(10, maxDigits)); in append_float()
113 char tmp[maxDigits + 1]; in append_float()
114 sprintf(tmp, "%0*" B_PRId32, (int)maxDigits, rounded); in append_float()
115 tmp[maxDigits] = 0; in append_float()
H A Dsupport.h132 void append_float(BString& string, float n, int32 maxDigits = 4);
/haiku/headers/libs/print/libprint/
H A DJobSetupDlg.h140 void AllowOnlyDigits(BTextView* textView, int maxDigits);
/haiku/src/libs/print/libprint/
H A DJobSetupDlg.cpp180 JobSetupView::AllowOnlyDigits(BTextView* textView, int maxDigits) in AllowOnlyDigits() argument
189 textView->SetMaxBytes(maxDigits); in AllowOnlyDigits()