Searched defs:is_floating_point (Results 1 – 4 of 4) sorted by relevance
16 template <class T> struct is_floating_point : public false_type{}; struct17 template <class T> struct is_floating_point<const T> : public is_floating_point<T>{}; struct18 template <class T> struct is_floating_point<volatile const T> : public is_floating_point<T>{}; struct19 template <class T> struct is_floating_point<volatile T> : public is_floating_point<T>{}; struct20 template<> struct is_floating_point<float> : public true_type{}; struct21 template<> struct is_floating_point<double> : public true_type{}; struct22 template<> struct is_floating_point<long double> : public true_type{}; struct25 template<> struct is_floating_point<__float128> : public true_type{}; struct
34 template<> struct is_floating_point<gil::float32_t> : std::true_type {}; struct35 template<> struct is_floating_point<gil::float64_t> : std::true_type {}; struct
433 struct is_floating_point struct
2232 …const bool is_floating_point = (data_type == ImGuiDataType_Float) || (data_type == ImGuiDataType_D… in DragBehaviorT() local2721 …const bool is_floating_point = (data_type == ImGuiDataType_Float) || (data_type == ImGuiDataType_D… in ScaleValueFromRatioT() local2803 …const bool is_floating_point = (data_type == ImGuiDataType_Float) || (data_type == ImGuiDataType_D… in SliderBehaviorT() local