/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)
|
/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...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/ |
lvalue_ref.pass.cpp | 27 static_assert(!std::is_member_function_pointer<T>::value, "");
|
rvalue_ref.pass.cpp | 27 static_assert(!std::is_member_function_pointer<T>::value, "");
|
void.pass.cpp | 27 static_assert(!std::is_member_function_pointer<T>::value, "");
|
array.pass.cpp | 27 static_assert(!std::is_member_function_pointer<T>::value, "");
|
class.pass.cpp | 27 static_assert(!std::is_member_function_pointer<T>::value, "");
|
enum.pass.cpp | 27 static_assert(!std::is_member_function_pointer<T>::value, "");
|
floating_point.pass.cpp | 27 static_assert(!std::is_member_function_pointer<T>::value, "");
|
function.pass.cpp | 27 static_assert(!std::is_member_function_pointer<T>::value, "");
|
integral.pass.cpp | 27 static_assert(!std::is_member_function_pointer<T>::value, "");
|
member_function_pointer.pass.cpp | 27 static_assert( std::is_member_function_pointer<T>::value, "");
|
member_object_pointer.pass.cpp | 27 static_assert(!std::is_member_function_pointer<T>::value, "");
|
pointer.pass.cpp | 27 static_assert(!std::is_member_function_pointer<T>::value, "");
|
union.pass.cpp | 27 static_assert(!std::is_member_function_pointer<T>::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>
|
/external/chromium_org/gin/ |
object_template_builder.h | 47 base::is_member_function_pointer<T>::value>::type> {
|
/external/clang/test/SemaCXX/ |
type-traits.cpp | 770 void is_member_function_pointer() function [all...] |