Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/include/flang/Evaluate/
H A Dcharacteristics.h64 explicit TypeAndShape(DynamicType t) : type_{t} { AcquireLEN(); } in TypeAndShape() function
65 TypeAndShape(DynamicType t, int rank) : type_{t}, shape_(rank) { in TypeAndShape() function
68 TypeAndShape(DynamicType t, Shape &&s) : type_{t}, shape_{std::move(s)} { in TypeAndShape() function
71 TypeAndShape(DynamicType t, std::optional<Shape> &&s) : type_{t} { in TypeAndShape() function
H A Dfold.h23 class TypeAndShape; variable
/llvm-project-15.0.7/flang/lib/Lower/
H A DCallInterface.cpp546 using TypeAndShape = Fortran::evaluate::characteristics::TypeAndShape; typedef in Fortran::lower::CallInterfaceImpl