Home
last modified time | relevance | path

Searched refs:is_member_function_pointer (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/base/
Dtemplate_util_unittest.cc80 COMPILE_ASSERT(!is_member_function_pointer<int>::value,
82 COMPILE_ASSERT(!is_member_function_pointer<int*>::value,
84 COMPILE_ASSERT(!is_member_function_pointer<void*>::value,
86 COMPILE_ASSERT(!is_member_function_pointer<AStruct>::value,
88 COMPILE_ASSERT(!is_member_function_pointer<AStruct*>::value,
90 COMPILE_ASSERT(!is_member_function_pointer<int(*)(int)>::value,
92 COMPILE_ASSERT(!is_member_function_pointer<int(*)(int, int)>::value,
95 COMPILE_ASSERT(is_member_function_pointer<void (AStruct::*)()>::value,
97 COMPILE_ASSERT(is_member_function_pointer<void (AStruct::*)(int)>::value,
99 COMPILE_ASSERT(is_member_function_pointer<int (AStruct::*)(int)>::value,
[all …]
Dtemplate_util.h34 struct is_member_function_pointer : false_type {};
37 struct is_member_function_pointer<R(Z::*)()> : true_type {};
39 struct is_member_function_pointer<R(Z::*)() const> : true_type {};
42 struct is_member_function_pointer<R(Z::*)(A)> : true_type {};
44 struct is_member_function_pointer<R(Z::*)(A) const> : true_type {};
47 struct is_member_function_pointer<R(Z::*)(A, B)> : true_type {};
49 struct is_member_function_pointer<R(Z::*)(A, B) const> : true_type {};
52 struct is_member_function_pointer<R(Z::*)(A, B, C)> : true_type {};
54 struct is_member_function_pointer<R(Z::*)(A, B, C) const> : true_type {};
58 struct is_member_function_pointer<R(Z::*)(A, B, C, D)> : true_type {};
[all …]
/external/clang/test/SemaTemplate/
Dtemp_class_spec.cpp234 struct is_member_function_pointer { struct
239 struct is_member_function_pointer<T (Class::*)()> { argument
244 struct is_member_function_pointer<T (Class::*)() const> { argument
249 struct is_member_function_pointer<T (Class::*)() volatile> { struct
254 struct is_member_function_pointer<T (Class::*)() const volatile> { struct
259 struct is_member_function_pointer<T (Class::*)(A1)> { argument
264 struct is_member_function_pointer<T (Class::*)(A1) const> { argument
269 struct is_member_function_pointer<T (Class::*)(A1) volatile> { argument
274 struct is_member_function_pointer<T (Class::*)(A1) const volatile> { argument
279 is_member_function_pointer<int X::*>::value? -1 : 1]; argument
[all …]
/external/stlport/stlport/
Dtype_traits327 struct is_member_function_pointer :
331 // _SPEC_FULL2(is_member_function_pointer,_Tp1 _Tp2::*,is_function<_Tp1>::value);
334 struct is_member_function_pointer<_Tp1 _Tp2::*> :
339 struct is_member_function_pointer<_Tp1 _Tp2::* const> :
344 struct is_member_function_pointer<_Tp1 _Tp2::* volatile> :
349 struct is_member_function_pointer<_Tp1 _Tp2::* const volatile> :
355 …tegral_constant<bool, (is_member_object_pointer<_Tp>::value || is_member_function_pointer<_Tp>::va…
/external/chromium_org/gin/
Dobject_template_builder.h47 base::is_member_function_pointer<T>::value>::type> {
/external/clang/test/SemaCXX/
Dtype-traits.cpp770 void is_member_function_pointer() in is_member_function_pointer() function