Home
last modified time | relevance | path

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

/llvm-project/flang/include/flang/Evaluate/
H A Dcharacteristics.h67 explicit TypeAndShape(DynamicType t) : type_{t}, shape_{Shape{}} { TypeAndShape() function
70 TypeAndShape(DynamicType t, int rank) : type_{t}, shape_{Shape(rank)} { TypeAndShape() function
73 TypeAndShape(DynamicType t, Shape &&s) : type_{t}, shape_{std::move(s)} { TypeAndShape() function
76 TypeAndShape(DynamicType t, std::optional<Shape> &&s) : type_{t} { TypeAndShape() function
[all...]
H A Dfold.h23 class TypeAndShape; variable
/llvm-project/flang/lib/Lower/
H A DCallInterface.cpp824 using TypeAndShape = Fortran::evaluate::characteristics::TypeAndShape; global() typedef in Fortran::lower::CallInterfaceImpl