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

1 2 3

  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
sfinae-1.cpp 10 template<typename T> struct is_class { struct
16 int array0[is_class<X>::value? 1 : -1];
17 int array1[is_class<int>::value? -1 : 1];
18 int array2[is_class<char[3]>::value? -1 : 1];
  /external/libcxx/test/std/experimental/optional/optional.inplace/
in_place_t.pass.cpp 37 static_assert((std::is_class<in_place_t>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.inplace/
in_place_t.pass.cpp 37 static_assert((std::is_class<in_place_t>::value), "");
  /external/clang/test/Lexer/
has_feature_type_traits.cpp 53 #if __has_feature(is_class)
54 int is_class();
56 // CHECK: int is_class();
  /external/libcxx/test/std/experimental/optional/optional.nullopt/
nullopt_t.pass.cpp 36 static_assert((std::is_class<nullopt_t>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.nullopt/
nullopt_t.pass.cpp 36 static_assert((std::is_class<nullopt_t>::value), "");
  /external/llvm/include/llvm/Support/
type_traits.h 46 static const bool value = !std::is_class<T>::value;
67 !std::is_class<UnderlyingT>::value && // Filter conversion operators.
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/
lvalue_ref.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
rvalue_ref.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
array.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
class.pass.cpp 33 static_assert( std::is_class<T>::value, "");
enum.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
floating_point.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
function.pass.cpp 44 static_assert(!std::is_class<T>::value, "");
integral.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
member_function_pointer_no_variadics.pass.cpp 34 static_assert(!std::is_class<T>::value, "");
member_object_pointer.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
nullptr.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
pointer.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
union.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
lvalue_ref.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
rvalue_ref.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
  /external/clang/test/SemaCXX/
qualified-id-lookup.cpp 116 template <typename T> struct is_class { struct in namespace:test1
122 return is_class<T>::value;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
is_sequence.hpp 35 # include <boost/type_traits/is_class.hpp>
69 boost::is_class<T>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
is_abstract.hpp 55 #include <boost/type_traits/is_class.hpp>
133 typedef is_abstract_select< ::boost::is_class<T>::value> selector;

Completed in 1710 milliseconds

1 2 3