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

  /external/webkit/Source/JavaScriptCore/wtf/
TypeTraits.h 187 template<typename T> struct HasTrivialDestructor : public std::tr1::has_trivial_destructor<T> { };
192 // and HasTrivialDestructor definitions. The definitions here include most built-in
206 // VC8 (VS2005) and later have built-in compiler support for HasTrivialConstructor / HasTrivialDestructor,
209 template <typename T> struct HasTrivialDestructor : public IntegralConstant<bool, __has_trivial_destructor(T)>{ };
212 template <typename T> struct HasTrivialDestructor : public false_type{ };
216 template <typename T> struct HasTrivialDestructor<T*> : public true_type{ };
300 template <> struct HasTrivialDestructor<float> : public true_type{ };
301 template <> struct HasTrivialDestructor<const float> : public true_type{ };
302 template <> struct HasTrivialDestructor<volatile float> : public true_type{ };
303 template <> struct HasTrivialDestructor<const volatile float> : public true_type{ }
    [all...]
  /external/clang/include/clang/AST/
DeclCXX.h 453 /// HasTrivialDestructor - True when this class has a trivial destructor.
461 bool HasTrivialDestructor : 1;
    [all...]

Completed in 465 milliseconds