Home
last modified time | relevance | path

Searched defs:integral_constant (Results 1 – 4 of 4) sorted by relevance

/external/chromium/base/
Dtemplate_util.h18 struct integral_constant { struct
21 typedef integral_constant<T, v> type; argument
/external/astl/include/
Dtype_traits.h72 struct integral_constant struct
76 typedef integral_constant<_T, _value> type; argument
/external/llvm/include/llvm/Support/
Dsystem_error.h474 struct integral_constant { struct
477 typedef integral_constant<T,v> type; argument
481 typedef integral_constant<bool, true> true_type; argument
/external/llvm/test/FrontendC++/
D2010-03-22-empty-baseclass.cpp25 template <class T, T val> struct integral_constant : struct
27 template<> struct integral_constant<bool,true> : public mpl::true_ {}; struct
28 template<> struct integral_constant<bool,false> : public mpl::false_ {}; struct