Searched refs:percentValue (Results 1 - 3 of 3) sorted by relevance

/haiku/src/kits/interface/
H A DColumnTypes.cpp561 double percentValue = fieldValue / 100.0; local
563 if (percentValue > 1.0)
564 percentValue = 1.0;
565 else if (percentValue < 0.0)
566 percentValue = 0.0;
572 if (percentValue > 0.0) {
574 double value = graphRect.Width() * percentValue;
584 fNumberFormat.FormatPercent(percentString, percentValue);
/haiku/src/apps/mediaconverter/
H A DMediaConverterWindow.cpp497 double percentValue = value / 100.0; local
499 if (fNumberFormat.FormatPercent(data, percentValue) != B_OK)
504 fVideoQuality = (int)percentValue;
514 double percentValue = value / 100.0; local
516 if (fNumberFormat.FormatPercent(data, percentValue) != B_OK)
521 fAudioQuality = (int)percentValue;
940 double percentValue = fVideoQuality / 100.0; local
942 if (fNumberFormat.FormatPercent(data, percentValue) != B_OK)
946 fVideoQuality = (int)percentValue;
954 double percentValue local
[all...]
H A DMediaConverterApp.cpp591 double percentValue = (double)currPercent; local
593 if (fNumberFormat.FormatPercent(data, percentValue / 100) != B_OK) {
648 double percentValue = (double)currPercent; local
650 if (fNumberFormat.FormatPercent(data, percentValue / 100) != B_OK) {

Completed in 28 milliseconds