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

1 2

  /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<void(*)()>::value,
92 COMPILE_ASSERT(!is_member_function_pointer<int(*)(int)>::value,
94 COMPILE_ASSERT(!is_member_function_pointer<int(*)(int, int)>::value,
97 COMPILE_ASSERT(is_member_function_pointer<void (AStruct::*)()>::value,
99 COMPILE_ASSERT(is_member_function_pointer<void (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::*)(A...)> : true_type {}; struct in namespace:base
39 struct is_member_function_pointer<R(Z::*)(A...) const> : true_type {}; struct in namespace:base
  /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)
  /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_function_pointer.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, "");
nullptr.pass.cpp 30 static_assert(!std::is_member_function_pointer<T>::value, "");
pointer.pass.cpp 30 static_assert(!std::is_member_function_pointer<T>::value, "");
union.pass.cpp 30 static_assert(!std::is_member_function_pointer<T>::value, "");
void.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, "");
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, "");

Completed in 240 milliseconds

1 2