/third_party/boost/libs/hof/doc/html/_sources/include/boost/hof/ |
D | match.hpp.txt | 25 /// template<class... Fs> 26 /// constexpr match_adaptor<Fs...> match(Fs...fs); 31 /// Fs must be: 84 template<class...Fs> struct match_adaptor; 86 template<class F, class...Fs> 87 struct match_adaptor<F, Fs...> : detail::callable_base<F>, match_adaptor<Fs...> 89 typedef match_adaptor<Fs...> base; 93 : failure_for<detail::callable_base<F>, Fs...>
|
D | flow.hpp.txt | 26 /// template<class... Fs> 27 /// constexpr flow_adaptor<Fs...> flow(Fs... fs); 37 /// Fs must be: 111 template<class F, class... Fs> 112 struct flow_adaptor : detail::flow_kernel<F, BOOST_HOF_JOIN(flow_adaptor, Fs...)> 115 typedef BOOST_HOF_JOIN(flow_adaptor, Fs...) tail;
|
D | compose.hpp.txt | 26 /// template<class... Fs> 27 /// constexpr compose_adaptor<Fs...> compose(Fs... fs); 37 /// Fs must be: 112 template<class F, class... Fs> 114 …ose_kernel<detail::callable_base<F>, BOOST_HOF_JOIN(compose_adaptor, detail::callable_base<Fs>...)> 117 typedef BOOST_HOF_JOIN(compose_adaptor, detail::callable_base<Fs>...) tail;
|
D | first_of.hpp.txt | 30 /// template<class... Fs> 31 /// constexpr first_of_adaptor<Fs...> first_of(Fs... fs); 36 /// Fs must be: 186 template<class F, class... Fs> 188 : detail::conditional_kernel<F, BOOST_HOF_JOIN(first_of_adaptor, Fs...) > 191 typedef BOOST_HOF_JOIN(first_of_adaptor, Fs...) kernel_base; 212 : failure_for<F, Fs...>
|
D | reveal.hpp.txt | 135 /// template<class... Fs> 319 template<class... Fs> 322 typedef BOOST_HOF_JOIN(failures, Fs...) children; 352 template<class Transform, class... Fs> 354 : with_failures<detail::transform_failures<get_failure<Fs>, Transform>...> 357 template<class... Fs> 359 : with_failures<get_failure<Fs>...>
|
/third_party/boost/boost/hof/detail/ |
D | make.hpp | 22 template<class... Fs, class Result=BOOST_HOF_JOIN(Adaptor, Fs...)> 23 constexpr Result operator()(Fs... fs) const BOOST_HOF_NOEXCEPT_CONSTRUCTIBLE(Result, Fs&&...) in operator ()() 25 return Result(static_cast<Fs&&>(fs)...); in operator ()()
|
/third_party/boost/boost/hof/ |
D | match.hpp | 84 template<class...Fs> struct match_adaptor; 86 template<class F, class...Fs> 87 struct match_adaptor<F, Fs...> : detail::callable_base<F>, match_adaptor<Fs...> 89 typedef match_adaptor<Fs...> base; 93 : failure_for<detail::callable_base<F>, Fs...>
|
D | reveal.hpp | 319 template<class... Fs> 322 typedef BOOST_HOF_JOIN(failures, Fs...) children; 352 template<class Transform, class... Fs> 354 : with_failures<detail::transform_failures<get_failure<Fs>, Transform>...> 357 template<class... Fs> 359 : with_failures<get_failure<Fs>...>
|
D | first_of.hpp | 186 template<class F, class... Fs> 188 : detail::conditional_kernel<F, BOOST_HOF_JOIN(first_of_adaptor, Fs...) > 191 typedef BOOST_HOF_JOIN(first_of_adaptor, Fs...) kernel_base; 212 : failure_for<F, Fs...>
|
D | compose.hpp | 112 template<class F, class... Fs> 114 …ose_kernel<detail::callable_base<F>, BOOST_HOF_JOIN(compose_adaptor, detail::callable_base<Fs>...)> 117 typedef BOOST_HOF_JOIN(compose_adaptor, detail::callable_base<Fs>...) tail;
|
D | flow.hpp | 111 template<class F, class... Fs> 112 struct flow_adaptor : detail::flow_kernel<F, BOOST_HOF_JOIN(flow_adaptor, Fs...)> 115 typedef BOOST_HOF_JOIN(flow_adaptor, Fs...) tail;
|
/third_party/typescript/tests/baselines/reference/ |
D | jsDeclarationsEnumTag.js | 17 export const Fs = { constant 54 exports.ff = exports.consume = exports.Fs = exports.Second = exports.Target = void 0; 70 exports.Fs = { 111 export function consume(t: Target, s: Second, f: Fs): void; 126 export type Fs = (arg0: number) => number; 127 export namespace Fs {
|
D | jsDeclarationsEnumTag.types | 39 export const Fs = { 40 >Fs : { ADD1: (n: any) => any; ID: (n: any) => any; SUB1: (n: any) => number; } 69 * @param {Fs} f 72 >consume : (t: Target, s: Second, f: Fs) => void 75 >f : Fs 90 >f : Fs
|
D | enumTag.types | 47 const Fs = { 48 >Fs : { ADD1: (n: any) => any; ID: (n: any) => any; SUB1: (n: any) => number; } 76 * @param {Fs} f 79 >consume : (t: Target, s: Second, f: Fs) => void 82 >f : Fs 97 >f : Fs
|
D | jsDeclarationsEnumTag.symbols | 31 export const Fs = { 32 >Fs : Symbol(Fs, Decl(index.js, 15, 12), Decl(index.js, 14, 4)) 53 * @param {Fs} f
|
D | enumTag.symbols | 37 const Fs = { 38 >Fs : Symbol(Fs, Decl(a.js, 17, 5), Decl(a.js, 16, 4)) 58 * @param {Fs} f
|
D | enumTag.errors.txt | 28 const Fs = { 36 * @param {Fs} f
|
/third_party/flutter/skia/src/shaders/gradients/ |
D | SkGradientShader.cpp | 217 static void add_stop_color(SkRasterPipeline_GradientCtx* ctx, size_t stop, SkPMColor4f Fs, SkPMColo… in add_stop_color() argument 218 (ctx->fs[0])[stop] = Fs.fR; in add_stop_color() 219 (ctx->fs[1])[stop] = Fs.fG; in add_stop_color() 220 (ctx->fs[2])[stop] = Fs.fB; in add_stop_color() 221 (ctx->fs[3])[stop] = Fs.fA; in add_stop_color() 237 SkPMColor4f Fs = { in init_stop_evenly() local 244 c_l.fR - Fs.fR*(stop/gapCount), in init_stop_evenly() 245 c_l.fG - Fs.fG*(stop/gapCount), in init_stop_evenly() 246 c_l.fB - Fs.fB*(stop/gapCount), in init_stop_evenly() 247 c_l.fA - Fs.fA*(stop/gapCount), in init_stop_evenly() [all …]
|
/third_party/skia/src/shaders/gradients/ |
D | SkGradientShader.cpp | 221 static void add_stop_color(SkRasterPipeline_GradientCtx* ctx, size_t stop, SkPMColor4f Fs, SkPMColo… in add_stop_color() argument 222 (ctx->fs[0])[stop] = Fs.fR; in add_stop_color() 223 (ctx->fs[1])[stop] = Fs.fG; in add_stop_color() 224 (ctx->fs[2])[stop] = Fs.fB; in add_stop_color() 225 (ctx->fs[3])[stop] = Fs.fA; in add_stop_color() 242 SkPMColor4f Fs = { in init_stop_evenly() local 249 c_l.fR - Fs.fR*(stop/gapCount), in init_stop_evenly() 250 c_l.fG - Fs.fG*(stop/gapCount), in init_stop_evenly() 251 c_l.fB - Fs.fB*(stop/gapCount), in init_stop_evenly() 252 c_l.fA - Fs.fA*(stop/gapCount), in init_stop_evenly() [all …]
|
/third_party/boost/boost/thread/futures/ |
D | wait_for_all.hpp | 62 template<typename F1, typename... Fs> 63 typename boost::enable_if<is_future_type<F1>,void>::type wait_for_all(F1& f1, Fs&... fs) in wait_for_all()
|
D | wait_for_any.hpp | 114 template <typename F1, typename ... Fs> 115 void add(F1& f1, Fs&... fs) in add()
|
/third_party/typescript/tests/cases/conformance/jsdoc/declarations/ |
D | jsDeclarationsEnumTag.ts | 22 export const Fs = { constant
|
/third_party/typescript/tests/cases/conformance/jsdoc/ |
D | enumTag.ts | 22 const Fs = { constant
|
/third_party/openssl/test/certs/ |
D | embeddedSCTs1-key.pem | 12 83c3DEmmMRvpeH4erpA8gTyzZN3+HvDwhpvLnjMcvBQEdnDUykVqbSBnxrCjO+Fs
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceAssemblerMIPS32.cpp | 298 const IValueT Fs = encodeFPRegister(OpFs, "Fs", InsnName); in emitCOP1Fcmp() local 302 Opcode |= Fs << 11; in emitCOP1Fcmp() 313 const IValueT Fs = encodeFPRegister(OpFs, "Fs", InsnName); in emitCOP1FmtFsFd() local 316 Opcode |= Fs << 11; in emitCOP1FmtFsFd() 328 const IValueT Fs = encodeFPRegister(OpFs, "Fs", InsnName); in emitCOP1FmtFtFsFd() local 332 Opcode |= Fs << 11; in emitCOP1FmtFtFsFd() 345 const IValueT Fs = encodeFPRegister(OpFs, "Fs", InsnName); in emitCOP1FmtRtFsFd() local 349 Opcode |= Fs << 11; in emitCOP1FmtRtFsFd() 360 const IValueT Fs = encodeFPRegister(OpFs, "Fs", InsnName); in emitCOP1MovRtFs() local 361 Opcode |= Fs << 11; in emitCOP1MovRtFs()
|