Searched refs:Integer (Results 1 – 3 of 3) sorted by relevance
65 BOOST_concept(Integer, (T))67 BOOST_CONCEPT_USAGE(Integer) in BOOST_CONCEPT_USAGE() argument75 template <> struct Integer<char> {}; struct76 template <> struct Integer<signed char> {}; struct77 template <> struct Integer<unsigned char> {}; struct78 template <> struct Integer<short> {}; struct79 template <> struct Integer<unsigned short> {}; struct80 template <> struct Integer<int> {}; struct81 template <> struct Integer<unsigned int> {}; struct82 template <> struct Integer<long> {}; struct[all …]
995 template <typename Integer>996 bool ParseNaturalNumber(const ::std::string& str, Integer* number) { in ParseNaturalNumber()1026 GTEST_CHECK_(sizeof(Integer) <= sizeof(parsed)); in ParseNaturalNumber()1028 const Integer result = static_cast<Integer>(parsed); in ParseNaturalNumber()
351 TEST(PrintBuiltInTypeTest, Integer) { in TEST() argument