Home
last modified time | relevance | path

Searched defs:ArgumentType (Results 1 – 3 of 3) sorted by relevance

/third_party/rust/rust/compiler/rustc_ast_lowering/src/
Dformat.rs179 enum ArgumentType { enum
195 ty: ArgumentType, in make_argument()
241 argmap: &mut FxIndexMap<(usize, ArgumentType), Option<Span>>, in make_count() argument
294 argmap: &mut FxIndexMap<(usize, ArgumentType), Option<Span>>, in make_format_spec() argument
/third_party/mindspore/mindspore-src/source/tests/st/syntax/simple_expression/
Dtest_super.py91 class ArgumentType(nn.Cell): class
/third_party/typescript/tests/cases/conformance/types/conditional/
DinferTypes1.ts52 type ArgumentType<T extends (x: any) => any> = T extends (a: infer A) => any ? A : any; alias