Home
last modified time | relevance | path

Searched refs:IntegralConstant (Results 1 – 2 of 2) sorted by relevance

/external/libmojo/mojo/public/cpp/bindings/lib/
Dtemplate_util.h14 struct IntegralConstant { struct
19 const T IntegralConstant<T, v>::value; argument
21 typedef IntegralConstant<bool, true> TrueType;
22 typedef IntegralConstant<bool, false> FalseType;
/external/clang/test/SemaTemplate/
Dinstantiate-expr-2.cpp123 template<typename T, unsigned long N> struct IntegralConstant { }; struct
127 void f(T x, IntegralConstant<T, sizeof(x)>);
130 void test_X0(X0<int> x, IntegralConstant<int, sizeof(int)> ic) { in test_X0()