Lines Matching refs:vp

37      typename std::allocator_traits<Alloc>::pointer        vp;
40 static_assert(std::is_same<bool, decltype( vp == vp)>::value, "");
41 static_assert(std::is_same<bool, decltype( vp != vp)>::value, "");
42 static_assert(std::is_same<bool, decltype( vp > vp)>::value, "");
43 static_assert(std::is_same<bool, decltype( vp >= vp)>::value, "");
44 static_assert(std::is_same<bool, decltype( vp < vp)>::value, "");
45 static_assert(std::is_same<bool, decltype( vp <= vp)>::value, "");
47 static_assert(std::is_same<bool, decltype( vp == cvp)>::value, "");
48 static_assert(std::is_same<bool, decltype(cvp == vp)>::value, "");
49 static_assert(std::is_same<bool, decltype( vp != cvp)>::value, "");
50 static_assert(std::is_same<bool, decltype(cvp != vp)>::value, "");
51 static_assert(std::is_same<bool, decltype( vp > cvp)>::value, "");
52 static_assert(std::is_same<bool, decltype(cvp > vp)>::value, "");
53 static_assert(std::is_same<bool, decltype( vp >= cvp)>::value, "");
54 static_assert(std::is_same<bool, decltype(cvp >= vp)>::value, "");
55 static_assert(std::is_same<bool, decltype( vp < cvp)>::value, "");
56 static_assert(std::is_same<bool, decltype(cvp < vp)>::value, "");
57 static_assert(std::is_same<bool, decltype( vp <= cvp)>::value, "");
58 static_assert(std::is_same<bool, decltype(cvp <= vp)>::value, "");
71 typename std::allocator_traits<Alloc>::void_pointer vp;
74 static_assert(std::is_same<bool, decltype( vp == vp)>::value, "");
75 static_assert(std::is_same<bool, decltype( vp != vp)>::value, "");
76 static_assert(std::is_same<bool, decltype( vp > vp)>::value, "");
77 static_assert(std::is_same<bool, decltype( vp >= vp)>::value, "");
78 static_assert(std::is_same<bool, decltype( vp < vp)>::value, "");
79 static_assert(std::is_same<bool, decltype( vp <= vp)>::value, "");
81 static_assert(std::is_same<bool, decltype( vp == cvp)>::value, "");
82 static_assert(std::is_same<bool, decltype(cvp == vp)>::value, "");
83 static_assert(std::is_same<bool, decltype( vp != cvp)>::value, "");
84 static_assert(std::is_same<bool, decltype(cvp != vp)>::value, "");
85 static_assert(std::is_same<bool, decltype( vp > cvp)>::value, "");
86 static_assert(std::is_same<bool, decltype(cvp > vp)>::value, "");
87 static_assert(std::is_same<bool, decltype( vp >= cvp)>::value, "");
88 static_assert(std::is_same<bool, decltype(cvp >= 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, "");