Searched refs:is_class (Results 1 - 25 of 40) sorted by relevance

12

/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
H A Dsfinae-1.cpp10 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/utilities/optional/optional.inplace/
H A Din_place_t.pass.cpp37 static_assert((std::is_class<in_place_t>::value), "");
/external/chromium_org/base/
H A Dtemplate_util_unittest.cc70 // is_class<Type>
71 COMPILE_ASSERT(is_class<AStruct>::value, IsClass);
72 COMPILE_ASSERT(is_class<AClass>::value, IsClass);
73 COMPILE_ASSERT(!is_class<AnEnum>::value, IsClass);
74 COMPILE_ASSERT(!is_class<int>::value, IsClass);
75 COMPILE_ASSERT(!is_class<char*>::value, IsClass);
76 COMPILE_ASSERT(!is_class<int&>::value, IsClass);
77 COMPILE_ASSERT(!is_class<char[3]>::value, IsClass);
H A Dtemplate_util.h90 // is_class type_trait implementation.
114 struct is_class struct in namespace:base
/external/clang/test/Lexer/
H A Dhas_feature_type_traits.cpp53 #if __has_feature(is_class)
54 int is_class();
56 // CHECK: int is_class();
/external/libcxx/test/utilities/optional/optional.nullopt/
H A Dnullopt_t.pass.cpp36 static_assert((std::is_class<nullopt_t>::value), "");
/external/llvm/include/llvm/Support/
H A Dtype_traits.h38 static const bool value = !std::is_class<T>::value;
59 !std::is_class<UnderlyingT>::value && // Filter conversion operators.
/external/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
H A Dlvalue_ref.pass.cpp33 static_assert(!std::is_class<T>::value, "");
H A Drvalue_ref.pass.cpp33 static_assert(!std::is_class<T>::value, "");
H A Darray.pass.cpp33 static_assert(!std::is_class<T>::value, "");
H A Dclass.pass.cpp33 static_assert( std::is_class<T>::value, "");
H A Denum.pass.cpp33 static_assert(!std::is_class<T>::value, "");
H A Dfloating_point.pass.cpp33 static_assert(!std::is_class<T>::value, "");
H A Dfunction.pass.cpp33 static_assert(!std::is_class<T>::value, "");
H A Dintegral.pass.cpp33 static_assert(!std::is_class<T>::value, "");
H A Dmember_function_pointer.pass.cpp33 static_assert(!std::is_class<T>::value, "");
H A Dmember_object_pointer.pass.cpp33 static_assert(!std::is_class<T>::value, "");
H A Dnullptr.pass.cpp33 static_assert(!std::is_class<T>::value, "");
H A Dpointer.pass.cpp33 static_assert(!std::is_class<T>::value, "");
H A Dunion.pass.cpp33 static_assert(!std::is_class<T>::value, "");
H A Dvoid.pass.cpp33 static_assert(!std::is_class<T>::value, "");
/external/clang/test/SemaCXX/
H A Dqualified-id-lookup.cpp116 template <typename T> struct is_class { struct in namespace:test1
122 return is_class<T>::value;
/external/protobuf/src/google/protobuf/compiler/javamicro/
H A Djavamicro_helpers.h81 // inferrable from the given arguments, including is_class which indicates
83 string ToJavaName(const Params& params, const string& name, bool is_class,
/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h63 if (std::is_class<T>::value) {
133 if (std::is_class<T>::value) {
226 if (std::is_class<T>::value) {
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/util/
H A Dtemplate_util.h78 // is_class type_trait implementation.
102 struct is_class struct in namespace:i18n::addressinput

Completed in 2622 milliseconds

12