Searched defs:TypeAndShape (Results 1 – 3 of 3) sorted by relevance
64 explicit TypeAndShape(DynamicType t) : type_{t} { AcquireLEN(); } in TypeAndShape() function65 TypeAndShape(DynamicType t, int rank) : type_{t}, shape_(rank) { in TypeAndShape() function68 TypeAndShape(DynamicType t, Shape &&s) : type_{t}, shape_{std::move(s)} { in TypeAndShape() function71 TypeAndShape(DynamicType t, std::optional<Shape> &&s) : type_{t} { in TypeAndShape() function
23 class TypeAndShape; variable
546 using TypeAndShape = Fortran::evaluate::characteristics::TypeAndShape; typedef in Fortran::lower::CallInterfaceImpl