Home
last modified time | relevance | path

Searched refs:ParamT (Results 1 – 7 of 7) sorted by relevance

/llvm-project/libcxx/test/libcxx/fuzzing/
H A Drandom.pass.cpp41 using ParamT = typename Dist::param_type; typedef
43 static_assert(std::is_same<ResultT, typename ParamT::distribution_type::result_type>::value, "");
45 static ParamT Create(const std::uint8_t* data, std::size_t size, bool &OK) { in Create()
46 constexpr bool select_vector_result = std::is_constructible<ParamT, ResultT*, ResultT*, ResultT*>::value; in Create()
47 constexpr bool select_vector_double = std::is_constructible<ParamT, double*, double*>::value; in Create()
53 static ParamT DispatchAndCreate(std::integral_constant<int, 0>, const std::uint8_t *data, std::size_t size, bool &OK) { in DispatchAndCreate()
57 return ParamT{}; in DispatchAndCreate()
64 ParamT p(Beg, Mid, Mid); in DispatchAndCreate()
69 static ParamT DispatchAndCreate(std::integral_constant<int, 1>, const std::uint8_t *data, std::size_t size, bool &OK) { in DispatchAndCreate()
76 ParamT in DispatchAndCreate()
95 using ParamT = typename Dist::param_type; global() typedef
111 using ParamT = typename Dist::param_type; global() typedef
127 using ParamT = typename Dist::param_type; global() typedef
143 using ParamT = Dist::param_type; global() typedef
159 using ParamT = typename Distribution::param_type; helper() typedef
[all...]
/llvm-project/mlir/include/mlir/TableGen/
H A DClass.h174 template <typename ParamT> in addTemplateParam()
175 void addTemplateParam(ParamT param) { in addTemplateParam()
389 template <typename ParamT>
390 void addTemplateParam(ParamT param);
488 template <typename ParamT> in addTemplateParam()
489 void Method::addTemplateParam(ParamT param) { in addTemplateParam()
511 template <typename ParamT> in addTemplateParam()
512 void addTemplateParam(ParamT param) { in addTemplateParam()
552 template <typename ParamT> in addTemplateParam()
553 void addTemplateParam(ParamT para in addTemplateParam()
[all...]
/llvm-project/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.decltype/
H A Dp1.cpp7 template<decltype(auto) v, typename ParamT, typename ExprT> void f() { in f()
9 using U = ParamT; in f()
/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersMacros.h273 template <typename NodeType, typename ParamT> \
300 template <typename NodeType, typename ParamT> \
302 matcher_##DefineMatcher##OverloadId##Matcher<NodeType, ParamT>::matches( \
513 template <typename NodeType, typename ParamT> \
554 template <typename NodeType, typename ParamT> \
556 matcher_##DefineMatcher##OverloadId##Matcher<NodeType, ParamT>::matches( \
H A DASTMatchers.h5902 return internal::ValueEqualsMatcher<NodeType, ParamT>(Value) in AST_POLYMORPHIC_MATCHER_P()
5911 return internal::ValueEqualsMatcher<NodeType, ParamT>(Value)
5921 return internal::ValueEqualsMatcher<NodeType, ParamT>(Value)
/llvm-project/mlir/include/mlir/IR/
H A DAttrTypeSubElements.h400 template <typename ParamT>
401 static inline decltype(auto) replace(ParamT &&param,
404 return std::forward<ParamT>(param);
/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCastValueChecker.cpp482 QualType ParamT = Call.parameters()[0]->getType(); in evalCall() local
484 if (!(ParamT->isPointerType() && ResultT->isPointerType()) && in evalCall()
485 !(ParamT->isReferenceType() && ResultT->isReferenceType())) { in evalCall()