Home
last modified time | relevance | path

Searched refs:SubstParam (Results 1 – 4 of 4) sorted by relevance

/dports/benchmarks/tsung/tsung-1.7.0/src/tsung/
H A Dts_http.erl181 add_dynparams(SubstParam, {DynVars, Session}, OldReq=#http_request{url=OldUrl}, HostData={_PrevHos…
182 Req = subst(SubstParam, OldReq, DynVars),
246 subst(SubstParam, Req=#http_request{url=URL, body=Body, headers = Headers, oauth_url=OUrl,
252 body = case SubstParam of
/dports/lang/rust/rustc-1.58.1-src/src/librustdoc/
H A Dcore.rs62 crate substs: FxHashMap<DefId, clean::SubstParam>,
105 crate fn enter_alias<F, R>(&mut self, substs: FxHashMap<DefId, clean::SubstParam>, f: F) -> R in enter_alias() argument
/dports/lang/rust/rustc-1.58.1-src/src/librustdoc/clean/
H A Dmod.rs1226 substs.insert(lt_def_id.to_def_id(), SubstParam::Lifetime(cleaned)); in maybe_expand_private_type_alias()
1244 substs.insert(ty_param_def_id.to_def_id(), SubstParam::Type(ty.clean(cx))); in maybe_expand_private_type_alias()
1246 substs.insert(ty_param_def_id.to_def_id(), SubstParam::Type(default.clean(cx))); in maybe_expand_private_type_alias()
1265 .insert(const_param_def_id.to_def_id(), SubstParam::Constant(ct.clean(cx))); in maybe_expand_private_type_alias()
H A Dtypes.rs2287 crate enum SubstParam { enum
2293 impl SubstParam { impl