Home
last modified time | relevance | path

Searched refs:non_pod (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/libs/spirit/classic/test/
Dscanner_value_type_tests.cpp55 struct non_pod { struct
56 non_pod() : value('1') {} in non_pod() function
58 bool operator==(non_pod const& o) const { return value == o.value; } in operator ==() argument
63 operator<<(std::ostream& out, non_pod const& x) in operator <<()
70 struct convertable_non_pod : non_pod {
138 test_type<nonpod_gram, non_pod>(); in main()
/third_party/boost/libs/hana/test/detail/variadic/
Ddrop_into.cpp16 struct non_pod { virtual ~non_pod() { } }; in ~non_pod() argument
76 vd::drop_into<1>(f)(ct_eq<0>{}, non_pod{}); in main()
77 vd::drop_into<1>(f)(non_pod{}, ct_eq<1>{}); in main()
Dat.cpp16 struct non_pod { virtual ~non_pod() { } }; in ~non_pod() argument
87 vd::at<0>(ct_eq<0>{}, non_pod{}); in main()
88 vd::at<1>(non_pod{}, ct_eq<1>{}); in main()
/third_party/boost/libs/hana/test/ext/std/integral_constant/
Dtag.cpp20 struct non_pod { virtual ~non_pod() { } }; in ~non_pod() argument
45 hana::tag_of_t<non_pod>,
/third_party/json/test/src/
Dunit-udt.cpp620 struct non_pod struct
623 non_pod() : s() {} in non_pod() argument
624 non_pod(const std::string& S) : s(S) {} in non_pod() argument
628 static void to_json(BasicJsonType& j, const non_pod& np) in to_json()
634 static void from_json(const BasicJsonType& j, non_pod& np) in from_json()
645 static bool operator==(const non_pod& lhs, const non_pod& rhs) noexcept in operator ==()
669 auto np = udt::non_pod{{"non-pod"}};
671 auto np2 = j2.get<udt::non_pod>();