Lines Matching defs:bool

317 // bool.
490 // bool*.
492 bool* p = reinterpret_cast<bool*>(0xABCD);
535 int (*p)(bool) = NULL; // NOLINT
546 const bool is_wide_string = sizeof(prefix[0]) > 1;
616 const bool a[1] = { false };
770 operator bool() const { return false; }
825 hash_multimap<int, bool> map1;
887 map<int, bool> map1;
895 multimap<bool, int> map1;
897 // pair<bool, int> here, and since the key part in a multimap has to
902 map1.insert(pair<const bool, int>(true, 0));
903 map1.insert(pair<const bool, int>(true, 1));
904 map1.insert(pair<const bool, int>(false, 2));
932 pair<const bool, int> p(true, 5);
1007 ::std::tr1::tuple<char, bool> t2('a', true);
1010 ::std::tr1::tuple<bool, int, int> t3(false, 2, 3);
1013 ::std::tr1::tuple<bool, int, int, int> t4(false, 2, 3, 4);
1016 ::std::tr1::tuple<bool, int, int, int, bool> t5(false, 2, 3, 4, true);
1019 ::std::tr1::tuple<bool, int, int, int, bool, int> t6(false, 2, 3, 4, true, 6);
1022 ::std::tr1::tuple<bool, int, int, int, bool, int, int> t7(
1026 ::std::tr1::tuple<bool, int, int, int, bool, int, int, bool> t8(
1030 ::std::tr1::tuple<bool, int, int, int, bool, int, int, bool, int> t9(
1037 ::std::tr1::tuple<bool, char, short, testing::internal::Int32, // NOLINT
1048 ::std::tr1::tuple< ::std::tr1::tuple<int, bool>, char> nested(
1066 ::std::tuple<char, bool> t2('a', true);
1069 ::std::tuple<bool, int, int> t3(false, 2, 3);
1072 ::std::tuple<bool, int, int, int> t4(false, 2, 3, 4);
1075 ::std::tuple<bool, int, int, int, bool> t5(false, 2, 3, 4, true);
1078 ::std::tuple<bool, int, int, int, bool, int> t6(false, 2, 3, 4, true, 6);
1081 ::std::tuple<bool, int, int, int, bool, int, int> t7(
1085 ::std::tuple<bool, int, int, int, bool, int, int, bool> t8(
1089 ::std::tuple<bool, int, int, int, bool, int, int, bool, int> t9(
1096 ::std::tuple<bool, char, short, testing::internal::Int32, // NOLINT
1107 ::std::tuple< ::std::tuple<int, bool>, char> nested(