Home
last modified time | relevance | path

Searched refs:ClassType (Results 1 – 25 of 4518) sorted by relevance

12345678910>>...181

/dports/devel/rttr/rttr-0.9.6-16-gb3a131c/src/rttr/detail/registration/
H A Dregister_base_class_from_accessor.h44 template<typename ClassType, typename AccClassType>
50 template<typename ClassType, typename AccClassType>
58 template<typename ClassType, typename AccClassType>
65 template<typename ClassType, typename AccClassType>
73 template<typename ClassType, typename AccClassType>
80 template<typename ClassType, typename AccClassType>
86 template<typename ClassType, typename AccClassType>
101 template<typename ClassType, typename F>
108 template<typename ClassType, typename F>
115 template<typename ClassType, typename F>
[all …]
/dports/news/nget/nget-0.27.1/
H A Detree.cc41 template <class ClassType>
44 pred<ClassType> *p1, *p2;
46 predAnd(pred<ClassType> *n1, pred<ClassType> *n2):p1(n1), p2(n2) { } in predAnd()
52 template <class ClassType>
55 pred<ClassType> *p1, *p2;
57 predOr(pred<ClassType> *n1, pred<ClassType> *n2):p1(n1), p2(n2) { } in predOr()
78 pred<ClassType> *new_comparison(RetType (ClassType::*member), RetType v){ in new_comparison()
82 pred<ClassType> *new_comparison(RetType (ClassType::*memberf)(void) const, RetType v){ in new_comparison()
111 pred<ClassType> *new_comparison_re(RetType (ClassType::*member), const char *pattern, int flags){ in new_comparison_re()
144 pred<ClassType> * p=NULL; in make_pred()
[all …]
/dports/devel/functionalplus/FunctionalPlus-0.2.18-p0/include/fplus/
H A Dfunction_traits.hpp159 template <typename ClassType, typename ReturnType, typename... Args>
160 struct function_traits<ReturnType(ClassType::*)(Args...)>
163 typedef ClassType& owner_type;
166 template <typename ClassType, typename ReturnType, typename... Args>
167 struct function_traits<ReturnType(ClassType::*)(Args...) const>
170 typedef const ClassType& owner_type;
173 template <typename ClassType, typename ReturnType, typename... Args>
174 struct function_traits<ReturnType(ClassType::*)(Args...) volatile>
177 typedef volatile ClassType& owner_type;
184 typedef const volatile ClassType& owner_type;
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/libstdc++-v3/testsuite/20_util/add_const/
H A Dvalue.cc36 static_assert(is_same<add_const<ClassType>::type, in test01()
37 const ClassType>::value, ""); in test01()
38 static_assert(is_same<add_const<volatile ClassType>::type, in test01()
39 const volatile ClassType>::value, ""); in test01()
40 static_assert(is_same<add_const<ClassType*>::type, in test01()
41 ClassType* const>::value, ""); in test01()
42 static_assert(is_same<add_const<ClassType&>::type, ClassType&>::value, ""); in test01()
43 static_assert(is_same<add_const<ClassType (ClassType)>::type, in test01()
44 ClassType (ClassType)>::value, ""); in test01()
45 static_assert(is_same<add_const<const ClassType>::type, in test01()
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/libstdc++-v3/testsuite/20_util/add_cv/
H A Dvalue.cc37 static_assert(is_same<add_cv<ClassType>::type, in test01()
38 const volatile ClassType>::value, ""); in test01()
39 static_assert(is_same<add_cv<volatile ClassType>::type, in test01()
40 const volatile ClassType>::value, ""); in test01()
41 static_assert(is_same<add_cv<ClassType*>::type, in test01()
42 ClassType* const volatile>::value, ""); in test01()
43 static_assert(is_same<add_cv<ClassType&>::type, ClassType&>::value, ""); in test01()
44 static_assert(is_same<add_cv<ClassType (ClassType)>::type, in test01()
45 ClassType (ClassType)>::value, ""); in test01()
46 static_assert(is_same<add_cv<const volatile ClassType>::type, in test01()
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/libstdc++-v3/testsuite/20_util/add_volatile/
H A Dvalue.cc37 static_assert(is_same<add_volatile<ClassType>::type, in test01()
38 volatile ClassType>::value, ""); in test01()
39 static_assert(is_same<add_volatile<const ClassType>::type, in test01()
40 const volatile ClassType>::value, ""); in test01()
41 static_assert(is_same<add_volatile<ClassType*>::type, in test01()
42 ClassType* volatile>::value, ""); in test01()
43 static_assert(is_same<add_volatile<ClassType&>::type, ClassType&>::value, ""); in test01()
44 static_assert(is_same<add_volatile<ClassType (ClassType)>::type, in test01()
45 ClassType (ClassType)>::value, ""); in test01()
46 static_assert(is_same<add_volatile<volatile ClassType>::type, in test01()
[all …]
/dports/lang/gcc8/gcc-8.5.0/libstdc++-v3/testsuite/20_util/add_volatile/
H A Dvalue.cc37 static_assert(is_same<add_volatile<ClassType>::type, in test01()
38 volatile ClassType>::value, ""); in test01()
39 static_assert(is_same<add_volatile<const ClassType>::type, in test01()
40 const volatile ClassType>::value, ""); in test01()
41 static_assert(is_same<add_volatile<ClassType*>::type, in test01()
42 ClassType* volatile>::value, ""); in test01()
43 static_assert(is_same<add_volatile<ClassType&>::type, ClassType&>::value, ""); in test01()
44 static_assert(is_same<add_volatile<ClassType (ClassType)>::type, in test01()
45 ClassType (ClassType)>::value, ""); in test01()
46 static_assert(is_same<add_volatile<volatile ClassType>::type, in test01()
[all …]
/dports/lang/gcc8/gcc-8.5.0/libstdc++-v3/testsuite/20_util/add_const/
H A Dvalue.cc36 static_assert(is_same<add_const<ClassType>::type, in test01()
37 const ClassType>::value, ""); in test01()
38 static_assert(is_same<add_const<volatile ClassType>::type, in test01()
39 const volatile ClassType>::value, ""); in test01()
40 static_assert(is_same<add_const<ClassType*>::type, in test01()
41 ClassType* const>::value, ""); in test01()
42 static_assert(is_same<add_const<ClassType&>::type, ClassType&>::value, ""); in test01()
43 static_assert(is_same<add_const<ClassType (ClassType)>::type, in test01()
44 ClassType (ClassType)>::value, ""); in test01()
45 static_assert(is_same<add_const<const ClassType>::type, in test01()
[all …]
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libstdc++-v3/testsuite/20_util/add_cv/
H A Dvalue.cc37 static_assert(is_same<add_cv<ClassType>::type, in test01()
38 const volatile ClassType>::value, ""); in test01()
39 static_assert(is_same<add_cv<volatile ClassType>::type, in test01()
40 const volatile ClassType>::value, ""); in test01()
41 static_assert(is_same<add_cv<ClassType*>::type, in test01()
42 ClassType* const volatile>::value, ""); in test01()
43 static_assert(is_same<add_cv<ClassType&>::type, ClassType&>::value, ""); in test01()
44 static_assert(is_same<add_cv<ClassType (ClassType)>::type, in test01()
45 ClassType (ClassType)>::value, ""); in test01()
46 static_assert(is_same<add_cv<const volatile ClassType>::type, in test01()
[all …]
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libstdc++-v3/testsuite/20_util/add_const/
H A Dvalue.cc36 static_assert(is_same<add_const<ClassType>::type, in test01()
37 const ClassType>::value, ""); in test01()
38 static_assert(is_same<add_const<volatile ClassType>::type, in test01()
39 const volatile ClassType>::value, ""); in test01()
40 static_assert(is_same<add_const<ClassType*>::type, in test01()
41 ClassType* const>::value, ""); in test01()
42 static_assert(is_same<add_const<ClassType&>::type, ClassType&>::value, ""); in test01()
43 static_assert(is_same<add_const<ClassType (ClassType)>::type, in test01()
44 ClassType (ClassType)>::value, ""); in test01()
45 static_assert(is_same<add_const<const ClassType>::type, in test01()
[all …]
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libstdc++-v3/testsuite/20_util/add_volatile/
H A Dvalue.cc37 static_assert(is_same<add_volatile<ClassType>::type, in test01()
38 volatile ClassType>::value, ""); in test01()
39 static_assert(is_same<add_volatile<const ClassType>::type, in test01()
40 const volatile ClassType>::value, ""); in test01()
41 static_assert(is_same<add_volatile<ClassType*>::type, in test01()
42 ClassType* volatile>::value, ""); in test01()
43 static_assert(is_same<add_volatile<ClassType&>::type, ClassType&>::value, ""); in test01()
44 static_assert(is_same<add_volatile<ClassType (ClassType)>::type, in test01()
45 ClassType (ClassType)>::value, ""); in test01()
46 static_assert(is_same<add_volatile<volatile ClassType>::type, in test01()
[all …]
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libstdc++-v3/testsuite/20_util/add_volatile/
H A Dvalue.cc37 static_assert(is_same<add_volatile<ClassType>::type, in test01()
38 volatile ClassType>::value, ""); in test01()
39 static_assert(is_same<add_volatile<const ClassType>::type, in test01()
40 const volatile ClassType>::value, ""); in test01()
41 static_assert(is_same<add_volatile<ClassType*>::type, in test01()
42 ClassType* volatile>::value, ""); in test01()
43 static_assert(is_same<add_volatile<ClassType&>::type, ClassType&>::value, ""); in test01()
44 static_assert(is_same<add_volatile<ClassType (ClassType)>::type, in test01()
45 ClassType (ClassType)>::value, ""); in test01()
46 static_assert(is_same<add_volatile<volatile ClassType>::type, in test01()
[all …]
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libstdc++-v3/testsuite/20_util/add_const/
H A Dvalue.cc36 static_assert(is_same<add_const<ClassType>::type, in test01()
37 const ClassType>::value, ""); in test01()
38 static_assert(is_same<add_const<volatile ClassType>::type, in test01()
39 const volatile ClassType>::value, ""); in test01()
40 static_assert(is_same<add_const<ClassType*>::type, in test01()
41 ClassType* const>::value, ""); in test01()
42 static_assert(is_same<add_const<ClassType&>::type, ClassType&>::value, ""); in test01()
43 static_assert(is_same<add_const<ClassType (ClassType)>::type, in test01()
44 ClassType (ClassType)>::value, ""); in test01()
45 static_assert(is_same<add_const<const ClassType>::type, in test01()
[all …]
/dports/lang/gcc11/gcc-11.2.0/libstdc++-v3/testsuite/20_util/add_volatile/
H A Dvalue.cc37 static_assert(is_same<add_volatile<ClassType>::type, in test01()
38 volatile ClassType>::value, ""); in test01()
39 static_assert(is_same<add_volatile<const ClassType>::type, in test01()
40 const volatile ClassType>::value, ""); in test01()
41 static_assert(is_same<add_volatile<ClassType*>::type, in test01()
42 ClassType* volatile>::value, ""); in test01()
43 static_assert(is_same<add_volatile<ClassType&>::type, ClassType&>::value, ""); in test01()
44 static_assert(is_same<add_volatile<ClassType (ClassType)>::type, in test01()
45 ClassType (ClassType)>::value, ""); in test01()
46 static_assert(is_same<add_volatile<volatile ClassType>::type, in test01()
[all …]
/dports/lang/gcc11/gcc-11.2.0/libstdc++-v3/testsuite/20_util/add_const/
H A Dvalue.cc36 static_assert(is_same<add_const<ClassType>::type, in test01()
37 const ClassType>::value, ""); in test01()
38 static_assert(is_same<add_const<volatile ClassType>::type, in test01()
39 const volatile ClassType>::value, ""); in test01()
40 static_assert(is_same<add_const<ClassType*>::type, in test01()
41 ClassType* const>::value, ""); in test01()
42 static_assert(is_same<add_const<ClassType&>::type, ClassType&>::value, ""); in test01()
43 static_assert(is_same<add_const<ClassType (ClassType)>::type, in test01()
44 ClassType (ClassType)>::value, ""); in test01()
45 static_assert(is_same<add_const<const ClassType>::type, in test01()
[all …]
/dports/lang/gcc11/gcc-11.2.0/libstdc++-v3/testsuite/20_util/add_cv/
H A Dvalue.cc37 static_assert(is_same<add_cv<ClassType>::type, in test01()
38 const volatile ClassType>::value, ""); in test01()
39 static_assert(is_same<add_cv<volatile ClassType>::type, in test01()
40 const volatile ClassType>::value, ""); in test01()
41 static_assert(is_same<add_cv<ClassType*>::type, in test01()
42 ClassType* const volatile>::value, ""); in test01()
43 static_assert(is_same<add_cv<ClassType&>::type, ClassType&>::value, ""); in test01()
44 static_assert(is_same<add_cv<ClassType (ClassType)>::type, in test01()
45 ClassType (ClassType)>::value, ""); in test01()
46 static_assert(is_same<add_cv<const volatile ClassType>::type, in test01()
[all …]
/dports/lang/gcc10/gcc-10.3.0/libstdc++-v3/testsuite/20_util/add_const/
H A Dvalue.cc36 static_assert(is_same<add_const<ClassType>::type, in test01()
37 const ClassType>::value, ""); in test01()
38 static_assert(is_same<add_const<volatile ClassType>::type, in test01()
39 const volatile ClassType>::value, ""); in test01()
40 static_assert(is_same<add_const<ClassType*>::type, in test01()
41 ClassType* const>::value, ""); in test01()
42 static_assert(is_same<add_const<ClassType&>::type, ClassType&>::value, ""); in test01()
43 static_assert(is_same<add_const<ClassType (ClassType)>::type, in test01()
44 ClassType (ClassType)>::value, ""); in test01()
45 static_assert(is_same<add_const<const ClassType>::type, in test01()
[all …]
/dports/lang/gcc10/gcc-10.3.0/libstdc++-v3/testsuite/20_util/add_volatile/
H A Dvalue.cc37 static_assert(is_same<add_volatile<ClassType>::type, in test01()
38 volatile ClassType>::value, ""); in test01()
39 static_assert(is_same<add_volatile<const ClassType>::type, in test01()
40 const volatile ClassType>::value, ""); in test01()
41 static_assert(is_same<add_volatile<ClassType*>::type, in test01()
42 ClassType* volatile>::value, ""); in test01()
43 static_assert(is_same<add_volatile<ClassType&>::type, ClassType&>::value, ""); in test01()
44 static_assert(is_same<add_volatile<ClassType (ClassType)>::type, in test01()
45 ClassType (ClassType)>::value, ""); in test01()
46 static_assert(is_same<add_volatile<volatile ClassType>::type, in test01()
[all …]
/dports/lang/gcc10/gcc-10.3.0/libstdc++-v3/testsuite/20_util/add_cv/
H A Dvalue.cc37 static_assert(is_same<add_cv<ClassType>::type, in test01()
38 const volatile ClassType>::value, ""); in test01()
39 static_assert(is_same<add_cv<volatile ClassType>::type, in test01()
40 const volatile ClassType>::value, ""); in test01()
41 static_assert(is_same<add_cv<ClassType*>::type, in test01()
42 ClassType* const volatile>::value, ""); in test01()
43 static_assert(is_same<add_cv<ClassType&>::type, ClassType&>::value, ""); in test01()
44 static_assert(is_same<add_cv<ClassType (ClassType)>::type, in test01()
45 ClassType (ClassType)>::value, ""); in test01()
46 static_assert(is_same<add_cv<const volatile ClassType>::type, in test01()
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/libstdc++-v3/testsuite/20_util/add_cv/
H A Dvalue.cc37 static_assert(is_same<add_cv<ClassType>::type, in test01()
38 const volatile ClassType>::value, ""); in test01()
39 static_assert(is_same<add_cv<volatile ClassType>::type, in test01()
40 const volatile ClassType>::value, ""); in test01()
41 static_assert(is_same<add_cv<ClassType*>::type, in test01()
42 ClassType* const volatile>::value, ""); in test01()
43 static_assert(is_same<add_cv<ClassType&>::type, ClassType&>::value, ""); in test01()
44 static_assert(is_same<add_cv<ClassType (ClassType)>::type, in test01()
45 ClassType (ClassType)>::value, ""); in test01()
46 static_assert(is_same<add_cv<const volatile ClassType>::type, in test01()
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/libstdc++-v3/testsuite/20_util/add_volatile/
H A Dvalue.cc37 static_assert(is_same<add_volatile<ClassType>::type, in test01()
38 volatile ClassType>::value, ""); in test01()
39 static_assert(is_same<add_volatile<const ClassType>::type, in test01()
40 const volatile ClassType>::value, ""); in test01()
41 static_assert(is_same<add_volatile<ClassType*>::type, in test01()
42 ClassType* volatile>::value, ""); in test01()
43 static_assert(is_same<add_volatile<ClassType&>::type, ClassType&>::value, ""); in test01()
44 static_assert(is_same<add_volatile<ClassType (ClassType)>::type, in test01()
45 ClassType (ClassType)>::value, ""); in test01()
46 static_assert(is_same<add_volatile<volatile ClassType>::type, in test01()
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/libstdc++-v3/testsuite/20_util/add_const/
H A Dvalue.cc36 static_assert(is_same<add_const<ClassType>::type, in test01()
37 const ClassType>::value, ""); in test01()
38 static_assert(is_same<add_const<volatile ClassType>::type, in test01()
39 const volatile ClassType>::value, ""); in test01()
40 static_assert(is_same<add_const<ClassType*>::type, in test01()
41 ClassType* const>::value, ""); in test01()
42 static_assert(is_same<add_const<ClassType&>::type, ClassType&>::value, ""); in test01()
43 static_assert(is_same<add_const<ClassType (ClassType)>::type, in test01()
44 ClassType (ClassType)>::value, ""); in test01()
45 static_assert(is_same<add_const<const ClassType>::type, in test01()
[all …]
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libstdc++-v3/testsuite/20_util/add_cv/
H A Dvalue.cc37 static_assert(is_same<add_cv<ClassType>::type, in test01()
38 const volatile ClassType>::value, ""); in test01()
39 static_assert(is_same<add_cv<volatile ClassType>::type, in test01()
40 const volatile ClassType>::value, ""); in test01()
41 static_assert(is_same<add_cv<ClassType*>::type, in test01()
42 ClassType* const volatile>::value, ""); in test01()
43 static_assert(is_same<add_cv<ClassType&>::type, ClassType&>::value, ""); in test01()
44 static_assert(is_same<add_cv<ClassType (ClassType)>::type, in test01()
45 ClassType (ClassType)>::value, ""); in test01()
46 static_assert(is_same<add_cv<const volatile ClassType>::type, in test01()
[all …]
/dports/devel/avr-gcc/gcc-10.2.0/libstdc++-v3/testsuite/20_util/add_volatile/
H A Dvalue.cc37 static_assert(is_same<add_volatile<ClassType>::type, in test01()
38 volatile ClassType>::value, ""); in test01()
39 static_assert(is_same<add_volatile<const ClassType>::type, in test01()
40 const volatile ClassType>::value, ""); in test01()
41 static_assert(is_same<add_volatile<ClassType*>::type, in test01()
42 ClassType* volatile>::value, ""); in test01()
43 static_assert(is_same<add_volatile<ClassType&>::type, ClassType&>::value, ""); in test01()
44 static_assert(is_same<add_volatile<ClassType (ClassType)>::type, in test01()
45 ClassType (ClassType)>::value, ""); in test01()
46 static_assert(is_same<add_volatile<volatile ClassType>::type, in test01()
[all …]
/dports/lang/gnat_util/gcc-6-20180516/libstdc++-v3/testsuite/20_util/add_const/
H A Dvalue.cc37 static_assert(is_same<add_const<ClassType>::type, in test01()
38 const ClassType>::value, ""); in test01()
39 static_assert(is_same<add_const<volatile ClassType>::type, in test01()
40 const volatile ClassType>::value, ""); in test01()
41 static_assert(is_same<add_const<ClassType*>::type, in test01()
42 ClassType* const>::value, ""); in test01()
43 static_assert(is_same<add_const<ClassType&>::type, ClassType&>::value, ""); in test01()
44 static_assert(is_same<add_const<ClassType (ClassType)>::type, in test01()
45 ClassType (ClassType)>::value, ""); in test01()
46 static_assert(is_same<add_const<const ClassType>::type, in test01()
[all …]

12345678910>>...181