HomeSort by relevance Sort by last modified time
    Searched defs:is_class (Results 1 - 6 of 6) sorted by null

  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
sfinae-1.cpp 9 template<typename T> struct is_class { struct
15 int array0[is_class<X>::value? 1 : -1];
16 int array1[is_class<int>::value? -1 : 1];
17 int array2[is_class<char[3]>::value? -1 : 1];
  /external/chromium/base/
template_util.h 71 // is_class type_trait implementation.
95 struct is_class struct in namespace:base
  /external/astl/include/
type_traits.h 155 // TODO: newer version of gcc have these is_class built in.
163 struct is_class: public integral_constant<bool, sizeof(test_pod_type<_T>(0)) == sizeof(sfinae_types::one)> { }; struct in namespace:std
  /external/llvm/include/llvm/Support/
type_traits.h 34 // the is_class template below. They cannot be located inside
35 // is_class because doing so causes at least GCC to think that
39 // important to make the is_class<T>::value idiom zero cost. it
47 struct is_class struct in namespace:llvm
49 // is_class<> metafunction due to Paul Mensonides (leavings@attbi.com). For
63 static const bool value = !is_class<T>::value;
155 value = (!is_class<UnderlyingT>::value && !is_pointer<UnderlyingT>::value &&
184 = is_class<Base>::value && is_class<Derived>::value &&
  /external/clang/test/SemaCXX/
qualified-id-lookup.cpp 115 template <typename T> struct is_class { struct in namespace:test1
121 return is_class<T>::value;
type-traits.cpp 200 void is_class() function
    [all...]

Completed in 63 milliseconds