HomeSort by relevance Sort by last modified time
    Searched full:is_member_function_pointer (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/chromium_org/base/
template_util_unittest.cc 80 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...]
template_util.h 34 struct is_member_function_pointer : false_type {}; struct in namespace:base
37 struct is_member_function_pointer<R(Z::*)()> : true_type {}; struct in namespace:base
39 struct is_member_function_pointer<R(Z::*)() const> : true_type {}; struct in namespace:base
42 struct is_member_function_pointer<R(Z::*)(A)> : true_type {}; struct in namespace:base
44 struct is_member_function_pointer<R(Z::*)(A) const> : true_type {}; struct in namespace:base
47 struct is_member_function_pointer<R(Z::*)(A, B)> : true_type {}; struct in namespace:base
49 struct is_member_function_pointer<R(Z::*)(A, B) const> : true_type {}; struct in namespace:base
52 struct is_member_function_pointer<R(Z::*)(A, B, C)> : true_type {}; struct in namespace:base
54 struct is_member_function_pointer<R(Z::*)(A, B, C) const> : true_type {}; struct in namespace:base
58 struct is_member_function_pointer<R(Z::*)(A, B, C, D)> : true_type {} struct in namespace:base
61 struct is_member_function_pointer<R(Z::*)(A, B, C, D) const> : true_type {}; struct in namespace:base
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
is_member_function_pointer.hpp 41 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_member_function_pointer,T,__is_member_function_pointer( T ))
45 is_member_function_pointer
119 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_member_function_pointer,void,false)
121 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_member_function_pointer,void const,false)
122 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_member_function_pointer,void volatile,false)
123 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_member_function_pointer,void const volatile,false)
128 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_member_function_pointer,T,::boost::detail::is_member_function_pointer_impl<T>::value)
is_member_pointer.hpp 28 # include <boost/type_traits/is_member_function_pointer.hpp>
50 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_member_pointer,T,::boost::is_member_function_pointer<T>::value)
config.hpp 68 // work in is_member_function_pointer
  /external/clang/test/SemaTemplate/
temp_class_spec.cpp 234 struct is_member_function_pointer { struct
239 struct is_member_function_pointer<T (Class::*)()> { struct
244 struct is_member_function_pointer<T (Class::*)() const> { struct
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)> { struct
264 struct is_member_function_pointer<T (Class::*)(A1) const> { struct
269 struct is_member_function_pointer<T (Class::*)(A1) volatile> { struct
274 struct is_member_function_pointer<T (Class::*)(A1) const volatile> { struct
279 is_member_function_pointer<int X::*>::value? -1 : 1]
    [all...]
  /external/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
lvalue_ref.pass.cpp 30 static_assert(!std::is_member_function_pointer<T>::value, "");
rvalue_ref.pass.cpp 30 static_assert(!std::is_member_function_pointer<T>::value, "");
array.pass.cpp 30 static_assert(!std::is_member_function_pointer<T>::value, "");
class.pass.cpp 30 static_assert(!std::is_member_function_pointer<T>::value, "");
enum.pass.cpp 30 static_assert(!std::is_member_function_pointer<T>::value, "");
floating_point.pass.cpp 30 static_assert(!std::is_member_function_pointer<T>::value, "");
function.pass.cpp 30 static_assert(!std::is_member_function_pointer<T>::value, "");
integral.pass.cpp 30 static_assert(!std::is_member_function_pointer<T>::value, "");
member_object_pointer.pass.cpp 30 static_assert(!std::is_member_function_pointer<T>::value, "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
lvalue_ref.pass.cpp 30 static_assert(!std::is_member_function_pointer<T>::value, "");
rvalue_ref.pass.cpp 30 static_assert(!std::is_member_function_pointer<T>::value, "");
  /external/stlport/stlport/
type_traits 329 struct is_member_function_pointer :
333 // _SPEC_FULL2(is_member_function_pointer,_Tp1 _Tp2::*,is_function<_Tp1>::value);
336 struct is_member_function_pointer<_Tp1 _Tp2::*> :
341 struct is_member_function_pointer<_Tp1 _Tp2::* const> :
346 struct is_member_function_pointer<_Tp1 _Tp2::* volatile> :
351 struct is_member_function_pointer<_Tp1 _Tp2::* const volatile> :
357 public integral_constant<bool, (is_member_object_pointer<_Tp>::value || is_member_function_pointer<_Tp>::value)>
  /ndk/sources/cxx-stl/stlport/stlport/
type_traits 327 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 public integral_constant<bool, (is_member_object_pointer<_Tp>::value || is_member_function_pointer<_Tp>::value)>
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
type_traits 327 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 public integral_constant<bool, (is_member_object_pointer<_Tp>::value || is_member_function_pointer<_Tp>::value)>
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/
type_traits 327 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 public integral_constant<bool, (is_member_object_pointer<_Tp>::value || is_member_function_pointer<_Tp>::value)>
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/
type_traits 327 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 public integral_constant<bool, (is_member_object_pointer<_Tp>::value || is_member_function_pointer<_Tp>::value)>
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/
type_traits 327 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 public integral_constant<bool, (is_member_object_pointer<_Tp>::value || is_member_function_pointer<_Tp>::value)>
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/
type_traits 327 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 public integral_constant<bool, (is_member_object_pointer<_Tp>::value || is_member_function_pointer<_Tp>::value)>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
indirect_traits.hpp 13 # include <boost/type_traits/is_member_function_pointer.hpp>
84 : is_member_function_pointer<typename remove_cv<T>::type>
419 : mpl::if_<is_member_function_pointer<T>, inner_yes_type, inner_no_type>

Completed in 436 milliseconds

1 2 3