/third_party/abseil-cpp/absl/random/ |
D | mocking_bit_gen.h | 130 template <typename ResultT, typename... Args> 131 static auto GetMockFnType(ResultT, std::tuple<Args...>) 132 -> ::testing::MockFunction<ResultT(Args...)>; 139 template <typename ResultT, typename MockFnType, typename Tuple> 142 template <typename ResultT, typename MockFnType, typename... Args> 143 struct MockFnCaller<ResultT, MockFnType, std::tuple<Args...>> { 145 inline ResultT operator()(Args... args) { 160 template <typename ResultT, typename ArgTupleT> 162 -> decltype(GetMockFnType(std::declval<ResultT>(), 165 GetMockFnType(std::declval<ResultT>(), std::declval<ArgTupleT>())); [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
D | mocking_bit_gen.h | 119 template <typename ResultT, typename... Args> 120 static auto GetMockFnType(ResultT, std::tuple<Args...>) 121 -> ::testing::MockFunction<ResultT(Args...)>; 128 template <typename MockFnType, typename ResultT, typename Tuple> 132 template <typename MockFnType, typename ResultT, typename... Args> 133 struct MockFnCaller<MockFnType, ResultT, std::tuple<Args...>> { 135 inline ResultT operator()(Args... args) { 153 template <typename MockFnType, typename ResultT, typename ArgTupleT> 160 *static_cast<ResultT*>(result) = 161 absl::apply(MockFnCaller<MockFnType, ResultT, ArgTupleT>{&mock_fn_}, [all …]
|
/third_party/boost/boost/spirit/home/classic/dynamic/impl/ |
D | select.ipp | 34 template <typename ResultT, typename BehaviourT> 38 template <typename ResultT> 39 struct select_match_gen<ResultT, select_default_no_fail> { 42 static ResultT 50 template <typename ResultT> 51 struct select_match_gen<ResultT, select_default_fail> { 54 static ResultT 62 template <int N, typename ResultT, typename TupleT, typename BehaviourT> 68 static ResultT 83 return parse_tuple_element<N-1, ResultT, TupleT, BehaviourT>:: [all …]
|
D | switch.ipp | 129 template <typename ResultT, bool IsDefault> 133 static ResultT 141 template <typename ResultT> 142 struct get_default_parser<ResultT, true> { 145 static ResultT 184 template <typename ResultT, bool IsDefault> 188 static ResultT 192 template <typename ResultT> 193 struct get_default_parser_simple<ResultT, false> {
|
/third_party/boost/boost/spirit/home/classic/core/non_terminal/ |
D | parser_context.hpp | 60 template <typename ResultT, typename ParserT, typename ScannerT> 61 ResultT& 62 post_parse(ResultT& hit, ParserT const&, ScannerT const&) in post_parse() 117 template <typename ResultT, typename ParserT, typename ScannerT> 118 ResultT& 119 post_parse(ResultT& hit, ParserT const& p, ScannerT const& scan) in post_parse()
|
/third_party/boost/boost/spirit/home/classic/debug/ |
D | debug_node.hpp | 150 template <typename ResultT> 151 inline ResultT & 152 print_closure_info(ResultT &hit, int level, std::string const& name) in print_closure_info() 217 template <typename ResultT, typename ParserT, typename ScannerT> 218 ResultT& post_parse(ResultT& hit, ParserT const& p, ScannerT &scan) in post_parse() 291 template <typename ResultT, typename ParserT, typename ScannerT> 292 ResultT& 293 post_parse(ResultT& hit, ParserT const& p, ScannerT &scan) in post_parse()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | PassManagerInternal.h | 116 template <typename IRUnitT, typename ResultT> class ResultHasInvalidateMethod { 147 enum { Value = sizeof(check<ResultT>(rank<2>())) == sizeof(EnabledType) }; 156 template <typename IRUnitT, typename PassT, typename ResultT, 159 ResultHasInvalidateMethod<IRUnitT, ResultT>::Value> 164 template <typename IRUnitT, typename PassT, typename ResultT, 166 struct AnalysisResultModel<IRUnitT, PassT, ResultT, PreservedAnalysesT, 169 explicit AnalysisResultModel(ResultT Result) : Result(std::move(Result)) {} 198 ResultT Result; 203 template <typename IRUnitT, typename PassT, typename ResultT, 205 struct AnalysisResultModel<IRUnitT, PassT, ResultT, PreservedAnalysesT, [all …]
|
D | PassManager.h | 688 template <typename ResultT = ResultConceptT> 704 auto &Result = static_cast<ResultT &>(*RI->second->second); in invalidateImpl()
|
/third_party/boost/boost/algorithm/string/ |
D | join.hpp | 51 typedef typename range_value<SequenceSequenceT>::type ResultT; in join() typedef 59 ResultT Result; in join() 102 typedef typename range_value<SequenceSequenceT>::type ResultT; in join_if() typedef 110 ResultT Result; in join_if()
|
D | regex.hpp | 514 typedef typename range_value<SequenceSequenceT>::type ResultT; in join_if() typedef 522 ResultT Result; in join_if() 582 typedef typename range_value<SequenceSequenceT>::type ResultT; in join_if_regex() typedef 590 ResultT Result; in join_if_regex()
|
/third_party/boost/boost/spirit/home/classic/attribute/ |
D | closure_context.hpp | 43 template <typename ResultT, typename ParserT, typename ScannerT> 44 ResultT& 45 post_parse(ResultT& hit, ParserT const& p, ScannerT const& scan) in post_parse()
|
D | closure.hpp | 82 template <typename ResultT, typename ParserT, typename ScannerT> 83 ResultT& post_parse(ResultT& hit, ParserT const&, ScannerT const&) in post_parse() 122 template <typename ResultT, typename ParserT, typename ScannerT> 123 ResultT& post_parse(ResultT& hit, ParserT const&, ScannerT const&) in post_parse()
|
/third_party/boost/tools/quickbook/src/ |
D | scoped.hpp | 24 template <typename ResultT, typename ScannerT> 25 bool result(ResultT r, ScannerT const&) in result()
|
D | main_grammar.cpp | 203 template <typename ResultT, typename ScannerT> 204 bool result(ResultT r, ScannerT const& scan) in result()
|
/third_party/abseil-cpp/absl/random/internal/ |
D | distribution_caller.h | 66 using ResultT = typename DistrT::result_type; 68 using KeyT = ResultT(DistrT, ArgTupleT); 71 ResultT result;
|
D | mock_helpers.h | 49 template <typename ResultT, typename DiscriminatorT, typename ArgTupleT> 50 struct KeySignature<ResultT(DiscriminatorT, ArgTupleT)> { 51 using result_type = ResultT;
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
D | distribution_caller.h | 66 using ResultT = typename DistrT::result_type; 68 using KeyT = ResultT(DistrT, ArgTupleT); 71 ResultT result;
|
D | mock_helpers.h | 49 template <typename ResultT, typename DiscriminatorT, typename ArgTupleT> 50 struct KeySignature<ResultT(DiscriminatorT, ArgTupleT)> { 51 using result_type = ResultT;
|
/third_party/boost/boost/log/detail/ |
D | light_function_pp.hpp | 9 typename ResultT 12 class light_function< ResultT (BOOST_PP_ENUM_PARAMS(BOOST_PP_ITERATION(), ArgT)) > 18 typedef ResultT result_type;
|
D | light_function.hpp | 86 template< typename ResultT, typename... ArgsT > 87 class light_function< ResultT (ArgsT...) > 93 typedef ResultT result_type;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/RPC/ |
D | RPCUtils.h | 457 template <typename ResultT, typename... ArgTs> 458 class AsyncHandlerTraits<Error(std::function<Error(Expected<ResultT>)>, ArgTs...)> { 461 using ResultType = Expected<ResultT>;
|
/third_party/boost/boost/spirit/home/classic/phoenix/ |
D | tuple_helpers.hpp | 31 template <typename ResultT> 34 typedef tuple<ResultT> type;
|