Home | History | Annotate | Download | only in default.allocator

Lines Matching defs:vp

39      typename std::allocator_traits<Alloc>::pointer        vp;
42 ((void)vp); // Prevent unused warning
45 static_assert(std::is_same<bool, decltype( vp == vp)>::value, "");
46 static_assert(std::is_same<bool, decltype( vp != vp)>::value, "");
47 static_assert(std::is_same<bool, decltype( vp > vp)>::value, "");
48 static_assert(std::is_same<bool, decltype( vp >= vp)>::value, "");
49 static_assert(std::is_same<bool, decltype( vp < vp)>::value, "");
50 static_assert(std::is_same<bool, decltype( vp <= vp)>::value, "");
52 static_assert(std::is_same<bool, decltype( vp == cvp)>::value, "");
53 static_assert(std::is_same<bool, decltype(cvp == vp)>::value, "");
54 static_assert(std::is_same<bool, decltype( vp != cvp)>::value, "");
55 static_assert(std::is_same<bool, decltype(cvp != vp)>::value, "");
56 static_assert(std::is_same<bool, decltype( vp > cvp)>::value, "");
57 static_assert(std::is_same<bool, decltype(cvp > vp)>::value, "");
58 static_assert(std::is_same<bool, decltype( vp >= cvp)>::value, "");
59 static_assert(std::is_same<bool, decltype(cvp >= vp)>::value, "");
60 static_assert(std::is_same<bool, decltype( vp < cvp)>::value, "");
61 static_assert(std::is_same<bool, decltype(cvp < vp)>::value, "");
62 static_assert(std::is_same<bool, decltype( vp <= cvp)>::value, "");
63 static_assert(std::is_same<bool, decltype(cvp <= vp)>::value, "");
76 typename std::allocator_traits<Alloc>::void_pointer vp;
79 ((void)vp); // Prevent unused warning
82 static_assert(std::is_same<bool, decltype( vp == vp)>::value, "");
83 static_assert(std::is_same<bool, decltype( vp != vp)>::value, "");
84 static_assert(std::is_same<bool, decltype( vp > vp)>::value, "");
85 static_assert(std::is_same<bool, decltype( vp >= vp)>::value, "");
86 static_assert(std::is_same<bool, decltype( vp < vp)>::value, "");
87 static_assert(std::is_same<bool, decltype( vp <= vp)>::value, "");
89 static_assert(std::is_same<bool, decltype( vp == cvp)>::value, "");
90 static_assert(std::is_same<bool, decltype(cvp == vp)>::value, "");
91 static_assert(std::is_same<bool, decltype( vp != cvp)>::value, "");
92 static_assert(std::is_same<bool, decltype(cvp != vp)>::value, "");
93 static_assert(std::is_same<bool, decltype( vp > cvp)>::value, "");
94 static_assert(std::is_same<bool, decltype(cvp > vp)>::value, "");
95 static_assert(std::is_same<bool, decltype( vp >= cvp)>::value, "");
96 static_assert(std::is_same<bool, decltype(cvp >= vp)>::value, "");
97 static_assert(std::is_same<bool, decltype( vp < cvp)>::value, "");
98 static_assert(std::is_same<bool, decltype(cvp < vp)>::value, "");
99 static_assert(std::is_same<bool, decltype( vp <= cvp)>::value, "");
100 static_assert(std::is_same<bool, decltype(cvp <= vp)>::value, "");