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

1 2

  /external/chromium/base/
template_util_unittest.cc 57 EXPECT_TRUE(is_class<AStruct>::value);
58 EXPECT_TRUE(is_class<AClass>::value);
60 EXPECT_FALSE(is_class<AnEnum>::value);
61 EXPECT_FALSE(is_class<int>::value);
62 EXPECT_FALSE(is_class<char*>::value);
63 EXPECT_FALSE(is_class<int&>::value);
64 EXPECT_FALSE(is_class<char[3]>::value);
template_util.h 71 // is_class type_trait implementation.
95 struct is_class struct in namespace:base
  /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/chromium_org/base/
template_util_unittest.cc 70 // 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);
  /external/clang/test/Lexer/
has_feature_type_traits.cpp 53 #if __has_feature(is_class)
54 int is_class();
56 // CHECK: int is_class();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
lvalue_ref.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
rvalue_ref.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
void.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
array.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
class.pass.cpp 30 static_assert( std::is_class<T>::value, "");
enum.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
floating_point.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
function.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
integral.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
member_function_pointer.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
member_object_pointer.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
pointer.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
union.pass.cpp 30 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;
is_class.hpp 53 // is_class<> metafunction due to Paul Mensonides
131 is_class,T, boost::detail::is_class_impl<typename boost::remove_cv<T>::type>::value)
133 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_class,T,::boost::detail::is_class_impl<T>::value)
is_enum.hpp 26 # include <boost/type_traits/is_class.hpp>
48 ::boost::is_class<T>::value
  /external/llvm/include/llvm/Support/
type_traits.h 39 // the is_class template below. They cannot be located inside
40 // is_class because doing so causes at least GCC to think that
44 // important to make the is_class<T>::value idiom zero cost. it
52 struct is_class struct in namespace:llvm
54 // is_class<> metafunction due to Paul Mensonides (leavings@attbi.com). For
74 static const bool value = !is_class<T>::value;
171 value = (!is_class<UnderlyingT>::value && !is_pointer<UnderlyingT>::value &&
199 = is_class<Base>::value && is_class<Derived>::value &&
  /external/chromium_org/v8/src/
types.cc 35 if (is_class()) {
41 if (union_get(unioned, i)->is_class()) ++result;
85 return type->is_class();
125 if (this->is_class()) {
239 if (that->is_class()) {
240 return this->is_class() && *this->as_class() == *that->as_class();
304 if (this->is_class()) {
305 return that->is_class() && *this->as_class() == *that->as_class();
329 if (this->is_class() || this->is_constant()) {
403 if (this->is_class() || this->is_constant())
    [all...]

Completed in 537 milliseconds

1 2