Searched refs:floatValue (Results 1 - 4 of 4) sorted by relevance

/haiku/src/libs/icon/flat_icon/
H A DFlatIconFormat.cpp94 float floatValue; member in union:__anon6
97 _value = i2f.floatValue;
112 float floatValue; member in union:__anon7
115 f2i.floatValue = _value;
/haiku/src/bin/addattr/
H A DaddAttr.cpp50 double floatValue = 0.0; local
72 floatValue = strtod(value, NULL);
96 return writeAttrValue<float>(fd, name, type, (float)floatValue);
98 return writeAttrValue<double>(fd, name, type, (double)floatValue);
/haiku/src/kits/interface/
H A DStatusBar.cpp67 float floatValue; local
68 if (archive->FindFloat("_high", &floatValue) == B_OK) {
69 fBarHeight = floatValue;
79 if (archive->FindFloat("_val", &floatValue) == B_OK)
80 fCurrent = floatValue;
81 if (archive->FindFloat("_max", &floatValue) == B_OK)
82 fMax = floatValue;
H A DChannelSlider.cpp870 float floatValue = 0;
875 floatValue = range - (point.y - fMinPoint);
877 floatValue = range + (point.x - fMinPoint);
879 int32 value = (int32)(floatValue / range * limitRange) +

Completed in 49 milliseconds