Searched refs:maxDigits (Results 1 – 4 of 4) sorted by relevance
/haiku/src/apps/icon-o-matic/generic/support/ |
H A D | support.cpp | 99 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 D | support.h | 132 void append_float(BString& string, float n, int32 maxDigits = 4);
|
/haiku/headers/libs/print/libprint/ |
H A D | JobSetupDlg.h | 140 void AllowOnlyDigits(BTextView* textView, int maxDigits);
|
/haiku/src/libs/print/libprint/ |
H A D | JobSetupDlg.cpp | 180 JobSetupView::AllowOnlyDigits(BTextView* textView, int maxDigits) in AllowOnlyDigits() argument 189 textView->SetMaxBytes(maxDigits); in AllowOnlyDigits()
|