Home
last modified time | relevance | path

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

/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dreadability-uppercase-literal-suffix.h2 struct integral_constant { struct
5 typedef integral_constant type; // using injected-class-name argument
9 using false_type = integral_constant<bool, false>; argument
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/Inputs/Headers/
Dsystem-header-simulation.h6 struct integral_constant { struct
9 typedef integral_constant type; argument
14 using bool_constant = integral_constant<bool, B>; argument
/external/pigweed/pw_minimal_cpp_stdlib/public/internal/
Dtype_traits.h39 struct integral_constant { struct
41 using type = integral_constant; argument
53 using bool_constant = integral_constant<bool, kValue>; argument
/external/llvm-project/clang/test/SemaTemplate/
Dinstantiate-incomplete-typo-suggested-error-limit.cpp21 template <class Tp, Tp v> struct integral_constant { struct
24 typedef integral_constant type; argument
30 template <class Tp, Tp v> constexpr const Tp integral_constant<Tp, v>::value; argument
Doverload-candidates.cpp89 template<typename T, T V> struct integral_constant { static const T value = V; }; argument
/external/protobuf/src/google/protobuf/stubs/
Dtemplate_util.h77 struct integral_constant { struct
80 typedef integral_constant<T, v> type; argument
/external/llvm-project/clang/test/Analysis/
Dlive-bindings-test.cpp13 struct integral_constant { struct
14 static constexpr T value = v;
15 typedef T value_type;
16 typedef integral_constant type;
17 constexpr operator value_type() const noexcept { return value; } in operator value_type()
/external/llvm-project/clang/test/SemaCXX/
Dstatic-assert.cpp75 struct integral_constant { struct
76 static const Tp value = v;
77 typedef Tp value_type;
78 typedef integral_constant type;
79 constexpr operator value_type() const noexcept { return value; } in operator value_type()
80 constexpr value_type operator()() const noexcept { return value; } in operator ()()
/external/llvm-project/clang/test/Modules/Inputs/PR27401/
Da.h4 struct integral_constant { struct
10 : integral_constant<bool, __is_constructible(_Tp)> {}; argument
/external/clang/test/Modules/Inputs/PR27401/
Da.h4 struct integral_constant { struct
10 : integral_constant<bool, __is_constructible(_Tp)> {}; argument
/external/llvm-project/clang/test/OpenMP/
Dconstexpr_capture.cpp4 template <int __v> struct integral_constant { struct
8 template <typename _Tp, int v = 0, bool _IsArray = integral_constant<v>::value> argument
/external/llvm-project/clang/test/Parser/
Dcxx2a-concept-declaration.cpp41 struct integral_constant { static constexpr T value = v; }; argument
/external/clang/test/Modules/Inputs/PR27754/
Dalgobase.h3 template<typename _Tp, _Tp> struct integral_constant {}; struct
/external/llvm-project/clang/test/Modules/Inputs/PR27754/
Dalgobase.h3 template<typename _Tp, _Tp> struct integral_constant {}; struct
/external/clang/test/SemaTemplate/
Doverload-candidates.cpp89 template<typename T, T V> struct integral_constant { static const T value = V; }; struct
/external/flatbuffers/include/flatbuffers/
Dstl_emulation.h146 using integral_constant = std::integral_constant<T, v>; variable