HomeSort by relevance Sort by last modified time
    Searched refs:is_enum (Results 1 - 16 of 16) sorted by null

  /external/clang/test/Lexer/
has_feature_type_traits.cpp 68 #if __has_feature(is_enum)
69 int is_enum();
71 // CHECK: int is_enum();
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/meta/meta.unary/meta.unary.cat/
lvalue_ref.pass.cpp 28 static_assert(!std::is_enum<T>::value, "");
rvalue_ref.pass.cpp 28 static_assert(!std::is_enum<T>::value, "");
void.pass.cpp 28 static_assert(!std::is_enum<T>::value, "");
array.pass.cpp 28 static_assert(!std::is_enum<T>::value, "");
class.pass.cpp 28 static_assert(!std::is_enum<T>::value, "");
enum.pass.cpp 28 static_assert( std::is_enum<T>::value, "");
floating_point.pass.cpp 28 static_assert(!std::is_enum<T>::value, "");
function.pass.cpp 28 static_assert(!std::is_enum<T>::value, "");
integral.pass.cpp 28 static_assert(!std::is_enum<T>::value, "");
member_function_pointer.pass.cpp 28 static_assert(!std::is_enum<T>::value, "");
member_object_pointer.pass.cpp 28 static_assert(!std::is_enum<T>::value, "");
pointer.pass.cpp 28 static_assert(!std::is_enum<T>::value, "");
union.pass.cpp 28 static_assert(!std::is_enum<T>::value, "");
  /external/clang/test/SemaCXX/
alias-template.cpp 152 template<typename T> struct is_enum { static constexpr bool value = __is_enum(T); };
157 template<typename T> EnableIf<is_enum<T>> f();
158 template<typename T> DisableIf<is_enum<T>> f();
167 template<typename T, typename U = EnableIf<is_enum<T>>> struct fail1 {}; // expected-note {{here}}
168 template<typename T> struct fail2 : DisableIf<is_enum<T>> {}; // expected-note {{here}}
type-traits.cpp 237 void is_enum() function
    [all...]

Completed in 70 milliseconds