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

  /external/webkit/Source/JavaScriptCore/wtf/
TypeTraits.h 196 struct IntegralConstant {
199 typedef IntegralConstant<T, v> type;
202 typedef IntegralConstant<bool, true> true_type;
203 typedef IntegralConstant<bool, false> false_type;
208 template <typename T> struct HasTrivialConstructor : public IntegralConstant<bool, __has_trivial_constructor(T)>{ };
209 template <typename T> struct HasTrivialDestructor : public IntegralConstant<bool, __has_trivial_destructor(T)>{ };
  /external/clang/test/SemaTemplate/
instantiate-expr-2.cpp 123 template<typename T, unsigned long N> struct IntegralConstant { };
127 void f(T x, IntegralConstant<T, sizeof(x)>);
130 void test_X0(X0<int> x, IntegralConstant<int, sizeof(int)> ic) {

Completed in 113 milliseconds