Lines Matching refs:From
21 template <class From, class To> void ExhaustiveCheckFromTo() { in ExhaustiveCheckFromTo()
23 From i = std::numeric_limits<From>::min(); in ExhaustiveCheckFromTo()
35 if (i == std::numeric_limits<From>::min()) in ExhaustiveCheckFromTo()
40 template <class From> void ExhaustiveCheckFrom() { in ExhaustiveCheckFrom()
41 ExhaustiveCheckFromTo<From, short>(); in ExhaustiveCheckFrom()
42 ExhaustiveCheckFromTo<From, unsigned short>(); in ExhaustiveCheckFrom()
43 ExhaustiveCheckFromTo<From, int>(); in ExhaustiveCheckFrom()
44 ExhaustiveCheckFromTo<From, unsigned int>(); in ExhaustiveCheckFrom()
45 ExhaustiveCheckFromTo<From, long long>(); in ExhaustiveCheckFrom()
46 ExhaustiveCheckFromTo<From, unsigned long long>(); in ExhaustiveCheckFrom()
47 ExhaustiveCheckFromTo<From, size_t>(); in ExhaustiveCheckFrom()